curl --location --request POST '/v2/future-orders' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {ACCESS_TOKEN}' \
--header 'Content-Type: application/json' \
--data-raw '{
"quantity": 1,
"package_id": "change-7days-1gb",
"due_date": "2025-04-09 10:00",
"description": "Just a future order ..",
"webhook_url": "http://somePartnerDomain.com/webhook-url-path-to-wait-for-the order-details"
}'
{
"data": {
"request_id": "9HrK4-KGgz8n71eGgdNS5cV7Y",
"due_date": "2025-03-28 10:00",
"latest_cancellation_date": "2025-03-27 10:00"
},
"meta": {
"message": "success"
}
}