Changing Order Status to an Order Delivered
-
You can use it to switch the order to the status of being delivered to the customer. You need to send
OrderId
as a parameter. You can access thePaymentType
information here. If the current status of the order is canceled or thePaymentType
parameter is not sent,The status of the order is not suitable for processing
error is received. -
The request should be sent with the
POST
method.
Parameters
Request Header Parameters
Parameter | Description | Type |
---|---|---|
x-api-key | API key of your account | string |
x-api-secret | API Secret key of your account | string |
x-api-consumer | Integrator restaurant/company name | string |
Required Parameters
Parameter | Description | Type |
---|---|---|
OrderId | Order Number | int |
PaymentType | Payment Type ID | int |
Example Request
curl -X POST https://ext.adisyo.com/api/External/v2/Deliver
Example Response
{
"Status": 100,
"Message": "İşlem Başarılı"
}