curl --request POST \
--url https://messenger-public-api.cogfy.com/messages/interactive/order_status \
--header 'Content-Type: application/json' \
--header 'api-key: <api-key>' \
--data '{
"from": "<string>",
"to": "<string>",
"interactive": {
"type": "order_status",
"header": {
"type": "image"
},
"body": {
"text": "<string>"
},
"footer": {
"text": "<string>"
},
"action": {
"name": "review_order",
"parameters": {
"reference_id": "<string>",
"order": {
"status": "pending",
"description": "<string>"
},
"payment": {
"status": "pending",
"timestamp": 123
}
}
}
}
}'