Skip to main content
POST
/
v1
/
nutrition-orders
Create nutrition order
curl --request POST \
  --url https://api.clinikapi.com/v1/nutrition-orders \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "patientId": "<string>",
  "encounterId": "<string>",
  "dateTime": "<string>",
  "ordererId": "<string>",
  "allergyIntoleranceIds": [
    "<string>"
  ],
  "foodPreferenceModifier": [
    "<string>"
  ],
  "excludeFoodModifier": [
    "<string>"
  ],
  "oralDiet": {
    "type": [
      "<string>"
    ],
    "instruction": "<string>",
    "nutrient": [
      {
        "modifier": "<string>",
        "amount": {
          "value": 123,
          "unit": "<string>"
        }
      }
    ]
  },
  "supplement": [
    {
      "type": "<string>",
      "productName": "<string>",
      "quantity": {
        "value": 123,
        "unit": "<string>"
      },
      "instruction": "<string>"
    }
  ],
  "enteralFormula": {
    "baseFormulaType": "<string>",
    "baseFormulaProductName": "<string>",
    "additiveType": "<string>",
    "routeOfAdministration": "<string>",
    "administrationInstruction": "<string>"
  },
  "note": "<string>"
}
'

Authorizations

x-api-key
string
header
required

Your ClinikAPI secret key (clk_live_* or clk_test_*)

Body

application/json
status
enum<string>
required
Available options:
draft,
active,
on-hold,
revoked,
completed
intent
enum<string>
required
Available options:
proposal,
plan,
directive,
order
patientId
string
required
Maximum string length: 128
encounterId
string
Maximum string length: 128
dateTime
string
Maximum string length: 30
ordererId
string
Maximum string length: 128
allergyIntoleranceIds
string[]
Maximum array length: 10
Maximum string length: 128
foodPreferenceModifier
string[]
Maximum array length: 10
Maximum string length: 200
excludeFoodModifier
string[]
Maximum array length: 10
Maximum string length: 200
oralDiet
object
supplement
object[]
Maximum array length: 10
enteralFormula
object
note
string
Maximum string length: 5000

Response

201

Nutrition order created