curl --request PUT \
--url https://api.komerza.com/stores/{storeId}/orders/{orderId}/deliver \
--header 'Authorization: Bearer <token>'{
"success": true,
"message": "<string>",
"code": "<string>",
"data": "<unknown>"
}Forces delivery of an existing order as if purchased normally.
No action is taken if the order is already delivered.
Requires the stores.orders.deliver permission.
curl --request PUT \
--url https://api.komerza.com/stores/{storeId}/orders/{orderId}/deliver \
--header 'Authorization: Bearer <token>'{
"success": true,
"message": "<string>",
"code": "<string>",
"data": "<unknown>"
}Your API key goes here
The ID of the store the order belongs to.
The ID of the order to deliver.
The operation was successfully completed.
Represents a default generic response for API endpoints.
Indicates whether the operation or response was successful.
A descriptive message providing additional context or information about the response.
The error code (if there was an error) to use when referencing the error
Represents the data associated with a response.
Was this page helpful?