curl --request POST \
--url https://api.z-api.io/instances/{instanceId}/token/{token}/send-order \
--header 'Client-Token: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"phone": "<string>",
"order": {
"currency": "<string>",
"products": [
{
"name": "<string>",
"value": 123,
"quantity": 123,
"productId": "<string>"
}
],
"discount": 123,
"tax": 123,
"shipping": 123
}
}
'