curl --request POST \
--url https://api.clinikapi.com/v1/medications \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"code": "<string>",
"form": "<string>",
"manufacturer": "<string>",
"amount": {
"numerator": {
"value": 123,
"unit": "<string>"
},
"denominator": {
"value": 123,
"unit": "<string>"
}
},
"ingredient": [
{
"item": "<string>",
"isActive": true,
"strength": {
"numerator": {
"value": 123,
"unit": "<string>"
},
"denominator": {
"value": 123,
"unit": "<string>"
}
}
}
],
"batch": {
"lotNumber": "<string>",
"expirationDate": "<string>"
}
}
'