Viewing Courier users

Viewing Courier users

  • Lists the courier type users defined for the restaurant. It is needed in status change apis for orders. In particular, we expect the courierId information as a parameter in the order dispatch API, in this case the ID information of the couriers will be needed. You will not need this information if you do not integrate the process of changing order statuses.

  • The request should be sent with the GET method.

Parameters

Request Header Parameters

ParameterDescriptionType
x-api-keyAPI key of your accountstring
x-api-secretAPI Secret key of your accountstring
x-api-consumerIntegrator restaurant/company namestring
Example Request
curl https://ext.adisyo.com/api/External/v2/Couriers
Example Response
{
   "Status":100,
   "Message":"İşlem Başarılı",
   "Couriers":[
      {
         "Id":456,
         "Name":"Örnek Kurye 1",
         "PhoneNumber":"5555555555"
      },
      {
         "Id":457,
         "Name":"Örnek Kurye 2",
         "PhoneNumber":"5555555556"
      }
   ]
}