Get supportRequest a Demo
  • Get Started
    • Welcome
  • Guides
    • Authentication
    • Patient Management
    • Order Management
    • Device Management
    • Webhook Management
  • Webhooks
  • API Reference
  • Resources
    • OpenAPI Spec
    • Mobile SDK
LogoLogo
Get supportRequest a Demo
API ReferenceProcurements

POST
/api/v3/procurement
POST
/api/v3/procurement
1curl -X POST https://app.impiloplatform.com/api/v3/procurement \
2 -H "Impilo-API-Key: <Impilo-API-Key>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "currentStatus": "requested",
6 "procurementEvents": [
7 {
8 "eventTimestamp": "2023-10-01T12:00:00Z",
9 "name": "requested"
10 }
11 ],
12 "procurementItems": [
13 {
14 "costPerItem": 15.99,
15 "item": {},
16 "quantityApproved": 8,
17 "quantityRequested": 10
18 }
19 ],
20 "procurementType": "shippingNotice"
21}'
Try it
201procurementsCreateProcurementRequestExample
142
Was this page helpful?
Previous

Create Shipping Notice

Next
Built with
Creates a new procurement with the provided details.
Create Procurement Request

Authentication

Impilo-API-Keystring
API Key authentication via header

Request

This endpoint expects an object.
currentStatusenumRequired
The current status of the procurement
procurementEventslist of objectsRequired
List of events attached to the procurement
procurementItemslist of objectsRequired
List of items on the procurement
procurementTypeenumRequired
The type of the procurement.
Allowed values:

Response

Created