Viewing Payment Types

Viewing Payment Types

  • Returns the list of payment types. It will be the same as the ones defined in our document. However, it may be needed for payment types that have been added and not yet reflected in the document.

  • 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/PaymentTypes
Example Response
{
   "Status":100,
   "Message":"İşlem Başarılı",
   "PaymentTypes":[
      {
         "Name":"Nakit",
         "Id":1,
         "IsOnline":false
      },
      {
         "Name":"Multinet",
         "Id":3,
         "IsOnline":false
      },{...},{...},{...},
   ]
}