Once a Delivery has been created in the Burq, you may start the process of delivering your items by making a POST call to the Initiate Delivery endpoint:

/v1/initiate_delivery

curl --location --request POST 'https://api.burqup.com/v1/initiate_delivery' \
--header 'x-api-key:  773e7b38-d83a-4663-9819-abcdeabcde01' \
--header 'Content-Type: application/json' \
--data-raw '{
    "deliveryInfoId": "40efpmxcks0e25eu"
}'

📘

Initiating Delivery During Delivery Creation

You do not need to call the "Initiate Delivery" operation if you called "Create Delivery Operation" with the "initiate" flag set to true.

When delivery initiation is successful, you will receive back the full Delivery object, which will include the Burq tracking url as well as various status information which will become relevant during the lifecycle of the Delivery.

Please see Creating Delivery Requests for the detailed response structure.