For the complete documentation index, see llms.txt. This page is also available as Markdown.

Для веб/мобильных разработчиков

Используя приведенные ниже методы, можно создать собственное мобильное приложение или веб-сайт бренда, существующего в Делевер. Для методов без авторизации требуется параметр заголовка Shipper, который будет предоставлен брендом.

Get All banners

get

API for getting all banners

Query parameters
pageintegerOptional

page

limitintegerOptional

limit

searchstringOptional

search

Header parameters
ShipperstringRequired

Shipper

Responses
200

OK

application/json
countintegerOptional
get/v1/banner
GET /v1/banner HTTP/1.1
Shipper: text
Accept: */*
{
  "banners": [
    {
      "active": true,
      "created_at": "text",
      "id": "text",
      "image": "text",
      "position": "text",
      "shipper_id": "text",
      "title": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "updated_at": "text",
      "url": "text"
    }
  ],
  "count": 1
}

Get banner

get

API for getting banner

Path parameters
banner_idstringRequired

banner_id

Responses
200

OK

application/json
activebooleanOptional
created_atstringOptional
idstringOptional
imagestringOptional
positionstringOptional
shipper_idstringOptional
updated_atstringOptional
urlstringOptional
get/v1/banner/{banner_id}
GET /v1/banner/{banner_id} HTTP/1.1
Accept: */*
{
  "active": true,
  "created_at": "text",
  "id": "text",
  "image": "text",
  "position": "text",
  "shipper_id": "text",
  "title": {
    "en": "text",
    "ru": "text",
    "uz": "text"
  },
  "updated_at": "text",
  "url": "text"
}

Get All Branches

get

API for getting branches

Authorizations
AuthorizationstringRequired
Query parameters
pageintegerOptional

page

limitintegerOptional

limit

searchstringOptional

search

Header parameters
ShipperstringOptional

Shipper

Responses
200

OK

application/json
countintegerOptional
get/v1/branches
GET /v1/branches HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
{
  "branches": [
    {
      "address": "text",
      "created_at": "text",
      "delivery_time": 1,
      "destination": "text",
      "future_delivery_order_time": 1,
      "future_self_pickup_order_time": 1,
      "id": "text",
      "images": [
        "text"
      ],
      "is_active": true,
      "location": {
        "lat": 40.123,
        "long": 60.123
      },
      "name": "text",
      "open_hours": "09:00-10:00",
      "phones": [
        "text"
      ],
      "seo_text": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "shipper_id": "text",
      "work_hours": "09:00-10:00"
    }
  ],
  "count": 1
}

Get Branch

get

API for getting branch info

Authorizations
AuthorizationstringRequired
Path parameters
branch_idstringRequired

branch_id

Responses
200

OK

application/json
addressstringOptional
created_atstringOptional
delivery_timeintegerOptional
destinationstringOptional
future_delivery_order_timeintegerOptional
future_self_pickup_order_timeintegerOptional
idstringOptional
imagesstring[]Optional
is_activebooleanOptional
namestringOptional
open_hoursstringOptionalExample: 09:00-10:00
phonesstring[]Optional
shipper_idstringOptional
work_hoursstringOptionalExample: 09:00-10:00
get/v1/branches/{branch_id}
GET /v1/branches/{branch_id} HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
{
  "address": "text",
  "created_at": "text",
  "delivery_time": 1,
  "destination": "text",
  "future_delivery_order_time": 1,
  "future_self_pickup_order_time": 1,
  "id": "text",
  "images": [
    "text"
  ],
  "is_active": true,
  "location": {
    "lat": 40.123,
    "long": 60.123
  },
  "name": "text",
  "open_hours": "09:00-10:00",
  "phones": [
    "text"
  ],
  "seo_text": {
    "en": "text",
    "ru": "text",
    "uz": "text"
  },
  "shipper_id": "text",
  "work_hours": "09:00-10:00"
}

Get Customer Order Addresses

get

API for taking all order addresses

Authorizations
AuthorizationstringRequired
Path parameters
phonestringRequired

phone

Query parameters
searchstringOptional

search

Responses
200

OK

application/json
get/v1/customer-addresses/{phone}
GET /v1/customer-addresses/{phone} HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
{
  "addresses": [
    {
      "accommadation": "text",
      "address": "text",
      "apartment": "text",
      "building": "text",
      "extra_phone_number": "text",
      "floor": "text",
      "location": {
        "lat": 40.123,
        "long": 60.123
      }
    }
  ]
}

Customer Profile Information

get

Customer profile information

Authorizations
AuthorizationstringRequired
Responses
200

OK

application/json
created_atstringOptional
date_of_birthstringOptional
fcm_tokenstringOptional
idstringOptional
is_blockedbooleanOptional
minimal_order_pricenumberOptional
namestringOptional
phonestringOptional
registration_sourcestringOptional
tg_chat_idstringOptional
get/v1/customer-profile
GET /v1/customer-profile HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
{
  "created_at": "text",
  "date_of_birth": "text",
  "fcm_token": "text",
  "id": "text",
  "is_blocked": true,
  "minimal_order_price": 1,
  "name": "text",
  "phone": "text",
  "registration_source": "text",
  "tg_chat_id": "text"
}

Get All Customer Addresses

get

API for getting customer addresses

Authorizations
AuthorizationstringRequired
Query parameters
customer_idstringRequired

customer_id

pageintegerOptional

page

limitintegerOptional

limit

Responses
200

OK

application/json
countintegerOptional
get/v1/customer_address
GET /v1/customer_address?customer_id=text HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
{
  "count": 1,
  "customer_addresses": [
    {
      "address": "text",
      "apartment": "text",
      "building": "text",
      "customer_id": "text",
      "description": "text",
      "floor": "text",
      "id": "text",
      "location": {
        "lat": 40.123,
        "long": 60.123
      },
      "name": "text"
    }
  ]
}

Create Customer Address

post

API for creating customer address

Authorizations
AuthorizationstringRequired
Body
addressstringOptional
apartmentstringOptional
buildingstringOptional
customer_idstringOptional
descriptionstringOptional
floorstringOptional
namestringOptional
Responses
200

OK

application/json
idanyOptional
post/v1/customer_address
POST /v1/customer_address HTTP/1.1
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 166

{
  "address": "text",
  "apartment": "text",
  "building": "text",
  "customer_id": "text",
  "description": "text",
  "floor": "text",
  "location": {
    "lat": 40.123,
    "long": 60.123
  },
  "name": "text"
}
{
  "id": null
}

Update Customer Address

put

API for updating customer address

Authorizations
AuthorizationstringRequired
Path parameters
address_idstringRequired

address_id

Body
addressstringOptional
apartmentstringOptional
buildingstringOptional
customer_idstringOptional
descriptionstringOptional
floorstringOptional
namestringOptional
Responses
200

OK

application/json
idanyOptional
put/v1/customer_address/{address_id}
PUT /v1/customer_address/{address_id} HTTP/1.1
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 166

{
  "address": "text",
  "apartment": "text",
  "building": "text",
  "customer_id": "text",
  "description": "text",
  "floor": "text",
  "location": {
    "lat": 40.123,
    "long": 60.123
  },
  "name": "text"
}
{
  "id": null
}

Get Customer Address

get

API for getting customer address

Authorizations
AuthorizationstringRequired
Path parameters
customer_address_idstringRequired

customer_address_id

Responses
200

OK

application/json
addressstringOptional
apartmentstringOptional
buildingstringOptional
customer_idstringOptional
descriptionstringOptional
floorstringOptional
idstringOptional
namestringOptional
get/v1/customer_address/{customer_address_id}
GET /v1/customer_address/{customer_address_id} HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
{
  "address": "text",
  "apartment": "text",
  "building": "text",
  "customer_id": "text",
  "description": "text",
  "floor": "text",
  "id": "text",
  "location": {
    "lat": 40.123,
    "long": 60.123
  },
  "name": "text"
}

Delete Customer Address

delete

API for deleting customer address

Authorizations
AuthorizationstringRequired
Path parameters
customer_address_idstringRequired

customer_address_id

Responses
200

OK

application/json
messageanyOptional
delete/v1/customer_address/{customer_address_id}
DELETE /v1/customer_address/{customer_address_id} HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
{
  "message": null
}

Customer Login

post

API that checks whether customer exists and if exists sends sms to their number

Header parameters
ShipperstringRequired

Shipper

Body
phonestringOptional
tagstringOptional
Responses
200

OK

application/json
messageanyOptional
post/v1/customers/login
POST /v1/customers/login HTTP/1.1
Shipper: text
Content-Type: application/json
Accept: */*
Content-Length: 29

{
  "phone": "text",
  "tag": "text"
}
{
  "message": null
}

Confirm Customer Login

post

API that confirms sms code

Header parameters
ShipperstringRequired

Shipper

PlatformstringRequired

Platform

Body
bot_languagestringOptional
codestringOptional
fcm_tokenstringOptional
phonestringOptional
tg_chat_idstringOptional
Responses
200

OK

application/json
created_atstringOptional
date_of_birthstringOptional
fcm_tokenstringOptional
idstringOptional
is_blockedbooleanOptional
minimal_order_pricenumberOptional
namestringOptional
phonestringOptional
registration_sourcestringOptional
tg_chat_idstringOptional
post/v1/customers/confirm-login
POST /v1/customers/confirm-login HTTP/1.1
Shipper: text
Platform: text
Content-Type: application/json
Accept: */*
Content-Length: 91

{
  "bot_language": "text",
  "code": "text",
  "fcm_token": "text",
  "phone": "text",
  "tg_chat_id": "text"
}
{
  "created_at": "text",
  "date_of_birth": "text",
  "fcm_token": "text",
  "id": "text",
  "is_blocked": true,
  "minimal_order_price": 1,
  "name": "text",
  "phone": "text",
  "registration_source": "text",
  "tg_chat_id": "text"
}

Get Customer By Phone

post

API for getting customer by phone

Header parameters
ShipperstringRequired

Shipper

Body
phonestringOptional
tagstringOptional
Responses
200

OK

application/json
created_atstringOptional
date_of_birthstringOptional
fcm_tokenstringOptional
idstringOptional
is_blockedbooleanOptional
minimal_order_pricenumberOptional
namestringOptional
phonestringOptional
registration_sourcestringOptional
tg_chat_idstringOptional
post/v1/customers/phone
POST /v1/customers/phone HTTP/1.1
Shipper: text
Content-Type: application/json
Accept: */*
Content-Length: 29

{
  "phone": "text",
  "tag": "text"
}
{
  "created_at": "text",
  "date_of_birth": "text",
  "fcm_token": "text",
  "id": "text",
  "is_blocked": true,
  "minimal_order_price": 1,
  "name": "text",
  "phone": "text",
  "registration_source": "text",
  "tg_chat_id": "text"
}

Register

post

Register - API for registering customers

Header parameters
ShipperstringRequired

Shipper

Body
namestringOptional
phonestringOptional
registration_sourcestringOptional
Responses
200

OK

application/json
messageanyOptional
post/v1/customers/register
POST /v1/customers/register HTTP/1.1
Shipper: text
Content-Type: application/json
Accept: */*
Content-Length: 59

{
  "name": "text",
  "phone": "text",
  "registration_source": "text"
}
{
  "message": null
}

Register confirm

post

Register - API for confirming and inserting user to DB

Header parameters
ShipperstringRequired

Shipper

PlatformstringRequired

Platform

Body
bot_languagestringOptional
codestringOptional
date_of_birthstringOptional
emailstringOptional
fcm_tokenstringOptional
phonestringOptional
receive_postsstringOptional
tg_chat_idstringOptional
Responses
200

OK

application/json
created_atstringOptional
date_of_birthstringOptional
fcm_tokenstringOptional
idstringOptional
is_blockedbooleanOptional
minimal_order_pricenumberOptional
namestringOptional
phonestringOptional
registration_sourcestringOptional
tg_chat_idstringOptional
post/v1/customers/register-confirm
POST /v1/customers/register-confirm HTTP/1.1
Shipper: text
Platform: text
Content-Type: application/json
Accept: */*
Content-Length: 152

{
  "bot_language": "text",
  "code": "text",
  "date_of_birth": "text",
  "email": "text",
  "fcm_token": "text",
  "phone": "text",
  "receive_posts": "text",
  "tg_chat_id": "text"
}
{
  "created_at": "text",
  "date_of_birth": "text",
  "fcm_token": "text",
  "id": "text",
  "is_blocked": true,
  "minimal_order_price": 1,
  "name": "text",
  "phone": "text",
  "registration_source": "text",
  "tg_chat_id": "text"
}

Update Customer

put

API for updating customer

Authorizations
AuthorizationstringRequired
Path parameters
customer_idstringRequired

customer_id

Body
date_of_birthstringOptional
namestringOptional
phonestringOptional
Responses
200

OK

application/json
created_atstringOptional
date_of_birthstringOptional
fcm_tokenstringOptional
idstringOptional
is_blockedbooleanOptional
minimal_order_pricenumberOptional
namestringOptional
phonestringOptional
registration_sourcestringOptional
tg_chat_idstringOptional
put/v1/customers/{customer_id}
PUT /v1/customers/{customer_id} HTTP/1.1
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 53

{
  "date_of_birth": "text",
  "name": "text",
  "phone": "text"
}
{
  "created_at": "text",
  "date_of_birth": "text",
  "fcm_token": "text",
  "id": "text",
  "is_blocked": true,
  "minimal_order_price": 1,
  "name": "text",
  "phone": "text",
  "registration_source": "text",
  "tg_chat_id": "text"
}

Get Customer Orders

get

API for getting customer orders

Authorizations
AuthorizationstringRequired
Path parameters
customer_idstringRequired

customer_id

Query parameters
pageintegerOptional

page

limitintegerOptional

limit

status_idsstring[]Optional

status_ids

start_datestringOptional

start_date

delivery_typestringOptional

delivery_type

end_datestringOptional

end_date

review_seenstringOptional

review_seen

Responses
200

OK

application/json
countstringOptionalExample: 0
get/v1/customers/{customer_id}/orders
GET /v1/customers/{customer_id}/orders HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
{
  "count": "0",
  "orders": [
    {
      "apartment": "text",
      "building": "text",
      "client_id": "text",
      "client_name": "Oybek",
      "client_phone_number": "998998765432",
      "co_delivery_price": 10000,
      "courier": {
        "courier_type": {
          "distance_from": 1,
          "distance_to": 1,
          "icon": "text",
          "id": "text",
          "name": "text",
          "shipper_id": "text",
          "working_hours": [
            {
              "courier_type_id": "text",
              "day_number": 1,
              "end_time": "text",
              "id": "text",
              "is_active": true,
              "start_time": "text"
            }
          ]
        },
        "first_name": "text",
        "last_name": "text",
        "location": {
          "lat": 40.123,
          "long": 60.123
        },
        "phone": "text",
        "vehicle_number": "text"
      },
      "courier_id": "text",
      "created_at": "text",
      "delivery_price": 10000,
      "delivery_time": "12:00",
      "delivery_type": "delivery",
      "description": "text",
      "external_order_id": "text",
      "extra_phone_number": "text",
      "finished_at": "text",
      "floor": "text",
      "id": "text",
      "is_courier_call": true,
      "order_amount": 1,
      "paid": true,
      "payment_type": "text",
      "payment_type_id": "text",
      "payment_type_obj": {
        "id": "text",
        "image": "text",
        "integration": "text",
        "name": {
          "en": "text",
          "ru": "text",
          "uz": "text"
        },
        "type": "text"
      },
      "pos_id": "text",
      "review": "text",
      "source": "text",
      "status_id": "text",
      "status_notes": [
        {
          "created_at": "text",
          "description": "text",
          "id": "text",
          "status_id": "text"
        }
      ],
      "steps": [
        {
          "address": "text",
          "branch_id": "text",
          "branch_name": "text",
          "description": "text",
          "destination_address": "text",
          "external_step_id": "0",
          "location": {
            "lat": 40.123,
            "long": 60.123
          },
          "phone_number": "text"
        }
      ],
      "to_address": "Hamid Olimjon maydoni 10A dom 40-kvartira",
      "to_location": {
        "lat": 40.123,
        "long": 60.123
      }
    }
  ]
}

Get Customer Last Order

get

API for getting customer last order

Authorizations
AuthorizationstringRequired
Path parameters
customer_idstringRequired

customer_id

Responses
200

OK

application/json
apartmentstringOptional
buildingstringOptional
client_idstringOptional
client_namestringOptionalExample: Oybek
client_phone_numberstringOptionalExample: 998998765432
co_delivery_pricenumberOptionalExample: 10000
courier_idstringOptional
created_atstringOptional
delivery_pricenumberOptionalExample: 10000
delivery_timestringOptionalExample: 12:00
delivery_typestringOptionalExample: delivery
descriptionstringOptional
external_order_idstringOptional
extra_phone_numberstringOptional
finished_atstringOptional
floorstringOptional
future_timestringOptional
idstringOptional
is_courier_callbooleanOptional
order_amountstringOptionalExample: 0
paidbooleanOptional
payment_typestringOptional
reviewstringOptional

Rating float64 json:"rating"

sourcestringOptional
status_idstringOptional
to_addressstringOptionalExample: Hamid Olimjon maydoni 10A dom 40-kvartira
get/v1/customers/{customer_id}/last-order
GET /v1/customers/{customer_id}/last-order HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
{
  "apartment": "text",
  "building": "text",
  "client_id": "text",
  "client_name": "Oybek",
  "client_phone_number": "998998765432",
  "co_delivery_price": 10000,
  "courier": {
    "courier_type": {
      "distance_from": 1,
      "distance_to": 1,
      "icon": "text",
      "id": "text",
      "name": "text",
      "shipper_id": "text",
      "working_hours": [
        {
          "courier_type_id": "text",
          "day_number": 1,
          "end_time": "text",
          "id": "text",
          "is_active": true,
          "start_time": "text"
        }
      ]
    },
    "first_name": "text",
    "last_name": "text",
    "location": {
      "lat": 40.123,
      "long": 60.123
    },
    "phone": "text",
    "vehicle_number": "text"
  },
  "courier_id": "text",
  "created_at": "text",
  "delivery_price": 10000,
  "delivery_time": "12:00",
  "delivery_type": "delivery",
  "description": "text",
  "external_order_id": "text",
  "extra_phone_number": "text",
  "finished_at": "text",
  "floor": "text",
  "future_time": "text",
  "id": "text",
  "is_courier_call": true,
  "order_amount": "0",
  "paid": true,
  "payment_type": "text",
  "review": "text",
  "shipper_user": [
    {
      "id": "text",
      "name": "text",
      "phone": "text"
    }
  ],
  "source": "text",
  "status_id": "text",
  "status_notes": [
    {
      "created_at": "text",
      "description": "text",
      "id": "text",
      "status_id": "text"
    }
  ],
  "steps": [
    {
      "address": "text",
      "branch_id": "text",
      "branch_name": "text",
      "description": "text",
      "destination_address": "text",
      "external_step_id": "0",
      "id": "text",
      "location": {
        "lat": 40.123,
        "long": 60.123
      },
      "phone_number": "text",
      "products": [
        {
          "description": "text",
          "external_product_id": "1234",
          "id": "text",
          "name": "Choyxona Osh",
          "price": 25000,
          "product_id": "text",
          "quantity": 2,
          "total_amount": "0"
        }
      ],
      "status": "text",
      "step_amount": "0"
    }
  ],
  "to_address": "Hamid Olimjon maydoni 10A dom 40-kvartira",
  "to_location": {
    "lat": 40.123,
    "long": 60.123
  }
}

Compute Delivery Price

patch

API for computing delivery price

Authorizations
AuthorizationstringRequired
Body
branch_idstringOptional
delivery_zone_idstringOptional
latnumberOptional
longnumberOptional
order_pricenumberOptional
Responses
200

OK

application/json
distancenumberOptional
fare_descriptionstringOptional
min_order_amountnumberOptional
pricenumberOptional
patch/v1/fares/compute-price
PATCH /v1/fares/compute-price HTTP/1.1
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 79

{
  "branch_id": "text",
  "delivery_zone_id": "text",
  "lat": 1,
  "long": 1,
  "order_price": 1
}
{
  "distance": 1,
  "fare_description": "text",
  "min_order_amount": 1,
  "price": 1
}

Get Nearest Branch

get

API for getting branch info

Authorizations
AuthorizationstringRequired
Query parameters
longstringOptional

long

latstringOptional

lat

Header parameters
ShipperstringOptional

Shipper

Responses
200

OK

application/json
addressstringOptional
created_atstringOptional
delivery_timeintegerOptional
destinationstringOptional
future_delivery_order_timeintegerOptional
future_self_pickup_order_timeintegerOptional
idstringOptional
imagesstring[]Optional
is_activebooleanOptional
namestringOptional
open_hoursstringOptionalExample: 9am-10pm
phonesstring[]Optional
shipper_idstringOptional
work_hoursstringOptionalExample: 9am-10pm
get/v1/nearest-branch
GET /v1/nearest-branch HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
{
  "address": "text",
  "created_at": "text",
  "delivery_time": 1,
  "destination": "text",
  "future_delivery_order_time": 1,
  "future_self_pickup_order_time": 1,
  "id": "text",
  "images": [
    "text"
  ],
  "is_active": true,
  "location": {
    "lat": 40.123,
    "long": 60.123
  },
  "name": "text",
  "open_hours": "9am-10pm",
  "phones": [
    "text"
  ],
  "seo_text": {
    "en": "text",
    "ru": "text",
    "uz": "text"
  },
  "shipper_id": "text",
  "work_hours": "9am-10pm"
}

Get All promos

get

API for getting promo

Query parameters
pageintegerOptional

page

limitintegerOptional

limit

searchstringOptional

search

Header parameters
ShipperstringRequired

Shipper

Responses
200

OK

application/json
countintegerOptional
get/v1/promo
GET /v1/promo HTTP/1.1
Shipper: text
Accept: */*
{
  "count": 1,
  "promos": [
    {
      "created_at": "text",
      "description": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "end_time": "text",
      "image": "text",
      "is_active": true,
      "start_time": "text",
      "title": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      }
    }
  ]
}

Get promo

get

API for getting promo

Path parameters
promo_idstringRequired

promo_id

Responses
200

OK

application/json
created_atstringOptional
end_timestringOptional
imagestringOptional
is_activebooleanOptional
start_timestringOptional
get/v1/promo/{promo_id}
GET /v1/promo/{promo_id} HTTP/1.1
Accept: */*
{
  "created_at": "text",
  "description": {
    "en": "text",
    "ru": "text",
    "uz": "text"
  },
  "end_time": "text",
  "image": "text",
  "is_active": true,
  "start_time": "text",
  "title": {
    "en": "text",
    "ru": "text",
    "uz": "text"
  }
}

Get Shipper

get

API for getting shipper info

Path parameters
shipper_idstringRequired

shipper_id

Responses
200

OK

application/json
branch_action_radiusnumberOptional
call_center_tgstringOptional
check_courier_action_radiusbooleanOptional
courier_accept_radiusnumberOptional
courier_accepts_firstbooleanOptional
courier_action_radiusintegerOptional
courier_notification_timeintegerOptional
courier_periodintegerOptional
created_atstringOptional
crmstringOptional
descriptionstringOptional
distancenumberOptional
enable_courier_working_hoursbooleanOptional
fiscalization_paymentsstring[]Optional
free_delevery_for_delayed_orderbooleanOptional
free_delevery_timenumberOptional
future_order_timeintegerOptional
idstringOptional
is_activebooleanOptional
is_courier_billingbooleanOptional
is_orders_limitbooleanOptional
is_pickup_loadbooleanOptional
logostringOptional
max_courier_ordersintegerOptional
max_delivery_timeintegerOptional
menu_imagestringOptional
minimal_order_pricenumberOptional
namestringOptional
order_late_colourstringOptional
order_late_timeintegerOptional
order_roadstringOptional
phonestring[]Optional
process_only_paid_ordersbooleanOptional
show_location_before_acceptingbooleanOptional
updated_atstringOptional
version_appstringOptional
work_hour_endstringOptional
work_hour_startstringOptional
get/v1/shippers/{shipper_id}
GET /v1/shippers/{shipper_id} HTTP/1.1
Accept: */*
{
  "branch_action_radius": 1,
  "call_center_tg": "text",
  "check_courier_action_radius": true,
  "courier_accept_radius": 1,
  "courier_accepts_first": true,
  "courier_action_radius": 1,
  "courier_notification_time": 1,
  "courier_period": 1,
  "created_at": "text",
  "crm": "text",
  "description": "text",
  "distance": 1,
  "enable_courier_working_hours": true,
  "fiscalization_payments": [
    "text"
  ],
  "free_delevery_for_delayed_order": true,
  "free_delevery_time": 1,
  "future_order_time": 1,
  "id": "text",
  "is_active": true,
  "is_courier_billing": true,
  "is_orders_limit": true,
  "is_pickup_load": true,
  "logo": "text",
  "max_courier_orders": 1,
  "max_delivery_time": 1,
  "menu_image": "text",
  "minimal_order_price": 1,
  "name": "text",
  "order_late_colour": "text",
  "order_late_time": 1,
  "order_road": "text",
  "phone": [
    "text"
  ],
  "process_only_paid_orders": true,
  "show_location_before_accepting": true,
  "updated_at": "text",
  "version_app": "text",
  "work_hour_end": "text",
  "work_hour_start": "text"
}

Get All stories

get

API for getting story

Authorizations
AuthorizationstringRequired
Query parameters
pageintegerOptional

page

limitintegerOptional

limit

searchstringOptional

search

is_activestringOptional

is_active

device_idstringOptional

device_id

Header parameters
ShipperstringRequired

Shipper

Responses
200

OK

application/json
countstringOptional
get/v1/story
GET /v1/story HTTP/1.1
Authorization: YOUR_API_KEY
Shipper: text
Accept: */*
{
  "count": "text",
  "stories": [
    {
      "created_at": "text",
      "end_date": "text",
      "has_seen": true,
      "id": "text",
      "is_active": true,
      "medias": [
        {
          "button": "text",
          "description": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "duration": 1,
          "media_url": "text",
          "type": "text",
          "url": "text"
        }
      ],
      "name": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "preview_image": "text",
      "seen_count": 1,
      "shipper_id": "text",
      "start_date": "text"
    }
  ]
}

Get story

get

API for getting story

Authorizations
AuthorizationstringRequired
Path parameters
idstringRequired

id

Query parameters
device_idstringRequired

device_id

Responses
200

OK

application/json
created_atstringOptional
end_datestringOptional
has_seenbooleanOptional
idstringOptional
is_activebooleanOptional
preview_imagestringOptional
seen_countintegerOptional
shipper_idstringOptional
start_datestringOptional
get/v1/story-view/{id}
GET /v1/story-view/{id}?device_id=text HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
{
  "created_at": "text",
  "end_date": "text",
  "has_seen": true,
  "id": "text",
  "is_active": true,
  "medias": [
    {
      "button": "text",
      "description": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "duration": 1,
      "media_url": "text",
      "type": "text",
      "url": "text"
    }
  ],
  "name": {
    "en": "text",
    "ru": "text",
    "uz": "text"
  },
  "preview_image": "text",
  "seen_count": 1,
  "shipper_id": "text",
  "start_date": "text"
}

Get story

get

API for getting story

Authorizations
AuthorizationstringRequired
Path parameters
idstringRequired

id

Query parameters
device_idstringRequired

device_id

Responses
200

OK

application/json
created_atstringOptional
end_datestringOptional
has_seenbooleanOptional
idstringOptional
is_activebooleanOptional
preview_imagestringOptional
seen_countintegerOptional
shipper_idstringOptional
start_datestringOptional
get/v1/story/{id}
GET /v1/story/{id}?device_id=text HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
{
  "created_at": "text",
  "end_date": "text",
  "has_seen": true,
  "id": "text",
  "is_active": true,
  "medias": [
    {
      "button": "text",
      "description": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "duration": 1,
      "media_url": "text",
      "type": "text",
      "url": "text"
    }
  ],
  "name": {
    "en": "text",
    "ru": "text",
    "uz": "text"
  },
  "preview_image": "text",
  "seen_count": 1,
  "shipper_id": "text",
  "start_date": "text"
}

Get All user reviews

get

API for getting user reviews

Authorizations
AuthorizationstringRequired
Query parameters
related_subjectstringOptional

related_subject

product_idstringOptional

product_id

client_idstringOptional

client_id

recipe_idstringOptional

recipe_id

pageintegerOptional

page

limitintegerOptional

limit

Responses
200

OK

application/json
countintegerOptional
get/v1/user_reviews
GET /v1/user_reviews HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
{
  "count": 1,
  "reviews": [
    {
      "branch_id": "text",
      "branch_name": "text",
      "client_id": "text",
      "client_mail": "text",
      "client_name": "text",
      "client_phone": "text",
      "courier_id": "text",
      "courier_name": "text",
      "created_at": "text",
      "delivery_time": "text",
      "id": "text",
      "image": "text",
      "lang": "text",
      "operator_id": "text",
      "operator_name": "text",
      "order_created_at": "text",
      "order_num": 1,
      "product_id": "text",
      "rating": 1,
      "recipe_id": "text",
      "recipe_title": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "related_subject": "text",
      "review_id": "text",
      "review_message": "text",
      "shipper_id": "text",
      "type": "text"
    }
  ]
}

Create UserReviews

post

API for creating UserReviews

Authorizations
AuthorizationstringRequired
Body
branch_idstringOptional
branch_namestringOptional
client_idstringOptional
client_mailstringOptional
client_namestringOptional
client_phonestringOptional
courier_idstringOptional
courier_namestringOptional
created_atstringOptional
delivery_timestringOptional
idstringOptional
langstringOptional
operator_idstringOptional
operator_namestringOptional
order_idstringOptional
order_numstringOptional
order_step_idstringOptional
product_idstringOptional
ratingnumberOptional
related_subjectstringOptional
review_idstringOptional
review_messagestringOptional
subject_idstringOptional
typestringOptional
Responses
200

OK

application/json
idanyOptional
post/v1/user_reviews
POST /v1/user_reviews HTTP/1.1
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 472

{
  "branch_id": "text",
  "branch_name": "text",
  "client_id": "text",
  "client_mail": "text",
  "client_name": "text",
  "client_phone": "text",
  "courier_id": "text",
  "courier_name": "text",
  "created_at": "text",
  "delivery_time": "text",
  "id": "text",
  "lang": "text",
  "operator_id": "text",
  "operator_name": "text",
  "order_id": "text",
  "order_num": "text",
  "order_step_id": "text",
  "product_id": "text",
  "rating": 1,
  "related_subject": "text",
  "review_id": "text",
  "review_message": "text",
  "subject_id": "text",
  "type": "text"
}
{
  "id": null
}

Update UserReviews

put

API for updating user reviews

Authorizations
AuthorizationstringRequired
Path parameters
idstringRequired

id

Body
client_idstringOptional
idstringOptional
ratingnumberOptional
recipe_idstringOptional
related_subjectstringOptional
review_messagestringOptional
typestringOptional
Responses
200

OK

application/json
idanyOptional
put/v1/user_reviews/{id}
PUT /v1/user_reviews/{id} HTTP/1.1
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 125

{
  "client_id": "text",
  "id": "text",
  "rating": 1,
  "recipe_id": "text",
  "related_subject": "text",
  "review_message": "text",
  "type": "text"
}
{
  "id": null
}

Get Active DeliveryZones

get

API for Get Active DeliveryZones

Authorizations
AuthorizationstringRequired
Responses
200

OK

application/json
all_countintegerOptional
countstringOptional
get/v2/active-delivery-zones
GET /v2/active-delivery-zones HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
{
  "all_count": 1,
  "count": "text",
  "delivery_zones": [
    {
      "active": true,
      "created_at": "text",
      "description": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "fare_id": "text",
      "fare_name": "text",
      "free_delivery_order_amount": 1,
      "id": "text",
      "min_order_amount": 1,
      "name": "text",
      "order_no": "text",
      "points": [
        {
          "lat": 1,
          "lon": 1
        }
      ],
      "rgb_code": "text",
      "shipper_id": "text",
      "updated_at": "text"
    }
  ]
}

Get All AutoAddProducts

get

API for getting all autoAddProduct

Authorizations
AuthorizationstringRequired
Query parameters
pageintegerOptional

page

limitintegerOptional

limit

order_typestringOptional

order_type

is_activebooleanOptional

is_active

searchstringOptional

search

Header parameters
ShipperstringOptional

Shipper

Responses
200

OK

application/json
countstringOptional
get/v2/auto-add-product
GET /v2/auto-add-product HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
{
  "count": "text",
  "products": [
    {
      "active": true,
      "created_at": "text",
      "delivery_types": [
        "text"
      ],
      "id": "text",
      "is_optional": true,
      "max_qty": 1,
      "min_qty": 1,
      "product": {
        "active": true,
        "active_in_menu": true,
        "add_to_order": true,
        "allergens": {
          "en": "text",
          "ru": "text",
          "uz": "text"
        },
        "barcode": "text",
        "brand": {
          "description": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "id": "text",
          "image": "text",
          "is_active": true,
          "order_no": "0",
          "parent_id": "text",
          "slug": "text",
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          }
        },
        "carbohydrates": 1,
        "categories": [
          {
            "active": true,
            "child_categories": [
              {
                "created_at": "text",
                "description": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "id": "text",
                "image": "text",
                "is_active": true,
                "name": "text",
                "order_no": "0",
                "parent_id": "text",
                "slug": "text",
                "title": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                }
              }
            ],
            "description": {
              "en": "text",
              "ru": "text",
              "uz": "text"
            },
            "id": "text",
            "image": "text",
            "metatag_h1": {
              "en": "text",
              "ru": "text",
              "uz": "text"
            },
            "metatag_title": {
              "en": "text",
              "ru": "text",
              "uz": "text"
            },
            "order_no": "0",
            "parent_id": "text",
            "products": [
              {
                "active": true,
                "active_in_menu": true,
                "brand_id": "text",
                "carbohydrates": 1,
                "categories": [
                  "text"
                ],
                "currency": "text",
                "description": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "discounts": [
                  {
                    "discount_price": 1,
                    "id": "text",
                    "name": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    }
                  }
                ],
                "energy": 1,
                "fats": 1,
                "from_time": "text",
                "gallery": [
                  "text"
                ],
                "has_modifier": true,
                "id": "text",
                "iiko_id": "text",
                "image": "text",
                "jowi_id": "text",
                "off_always": true,
                "out_price": 1,
                "proteins": 1,
                "rate_id": "text",
                "rating": 1,
                "seo_text": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "slug": "text",
                "string": "text",
                "title": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "to_time": "text",
                "type": "text",
                "weight": 1
              }
            ],
            "seo_text": {
              "en": "text",
              "ru": "text",
              "uz": "text"
            },
            "slug": "text",
            "title": {
              "en": "text",
              "ru": "text",
              "uz": "text"
            }
          }
        ],
        "code": "text",
        "count": "0",
        "created_at": "text",
        "crm_name": "text",
        "currency": "text",
        "default_quantity": 1,
        "description": {
          "en": "text",
          "ru": "text",
          "uz": "text"
        },
        "energy": 1,
        "fats": 1,
        "favorites": [
          {
            "active": true,
            "active_in_menu": true,
            "add_to_order": true,
            "allergens": {
              "en": "text",
              "ru": "text",
              "uz": "text"
            },
            "barcode": "text",
            "brand_id": "text",
            "carbohydrates": 1,
            "categories": [
              "text"
            ],
            "categories_obj": [
              {
                "active": true,
                "child_categories": [
                  {
                    "created_at": "text",
                    "description": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    },
                    "id": "text",
                    "image": "text",
                    "is_active": true,
                    "name": "text",
                    "order_no": "0",
                    "parent_id": "text",
                    "slug": "text",
                    "title": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    }
                  }
                ],
                "description": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "id": "text",
                "image": "text",
                "metatag_h1": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "metatag_title": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "order_no": "0",
                "parent_id": "text",
                "products": [
                  {
                    "active": true,
                    "active_in_menu": true,
                    "brand_id": "text",
                    "carbohydrates": 1,
                    "categories": [
                      "text"
                    ],
                    "currency": "text",
                    "description": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    },
                    "discounts": [
                      {
                        "discount_price": 1,
                        "id": "text",
                        "name": {
                          "en": "text",
                          "ru": "text",
                          "uz": "text"
                        }
                      }
                    ],
                    "energy": 1,
                    "fats": 1,
                    "from_time": "text",
                    "gallery": [
                      "text"
                    ],
                    "has_modifier": true,
                    "id": "text",
                    "iiko_id": "text",
                    "image": "text",
                    "jowi_id": "text",
                    "off_always": true,
                    "out_price": 1,
                    "proteins": 1,
                    "rate_id": "text",
                    "rating": 1,
                    "seo_text": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    },
                    "slug": "text",
                    "string": "text",
                    "title": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    },
                    "to_time": "text",
                    "type": "text",
                    "weight": 1
                  }
                ],
                "seo_text": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "slug": "text",
                "title": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                }
              }
            ],
            "count": "0",
            "currency": "text",
            "default_quantity": 1,
            "description": {
              "en": "text",
              "ru": "text",
              "uz": "text"
            },
            "discounts": [
              {
                "discount_price": 1,
                "id": "text",
                "name": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                }
              }
            ],
            "energy": 1,
            "fats": 1,
            "favourites": [
              "text"
            ],
            "from_time": "text",
            "gallery": [
              "text"
            ],
            "google_category": "text",
            "has_modifier": true,
            "id": "text",
            "iiko_id": "text",
            "ikpu": "text",
            "image": "text",
            "in_price": 1,
            "ingredients": [
              {
                "id": "text",
                "image": "text",
                "title": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                }
              }
            ],
            "is_divisible": true,
            "jowi_id": "text",
            "measurement": "text",
            "modifiers": {
              "group_modifiers": [
                {
                  "active": true,
                  "add_to_price": true,
                  "category_name": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  },
                  "code": "text",
                  "created_at": "text",
                  "default_amount": 1,
                  "from_product_id": "text",
                  "id": "text",
                  "is_checkbox": true,
                  "is_compulsory": true,
                  "max_amount": 1,
                  "min_amount": 1,
                  "name": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  },
                  "order": "text",
                  "price": "text",
                  "shipper_id": "text",
                  "to_product_id": "text",
                  "type": "text",
                  "variants": [
                    {
                      "default_amount": 1,
                      "id": "text",
                      "image": "text",
                      "in_price": 1,
                      "max_amount": 1,
                      "min_amount": 1,
                      "out_price": 1,
                      "title": {
                        "en": "text",
                        "ru": "text",
                        "uz": "text"
                      }
                    }
                  ]
                }
              ],
              "single_modifiers": [
                {
                  "active": true,
                  "add_to_price": true,
                  "category_name": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  },
                  "code": "text",
                  "created_at": "text",
                  "default_amount": 1,
                  "from_product_id": "text",
                  "id": "text",
                  "is_checkbox": true,
                  "is_compulsory": true,
                  "max_amount": 1,
                  "min_amount": 1,
                  "name": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  },
                  "order": "text",
                  "price": "text",
                  "shipper_id": "text",
                  "to_product_id": "text",
                  "type": "text",
                  "variants": [
                    {
                      "default_amount": 1,
                      "id": "text",
                      "image": "text",
                      "in_price": 1,
                      "max_amount": 1,
                      "min_amount": 1,
                      "out_price": 1,
                      "title": {
                        "en": "text",
                        "ru": "text",
                        "uz": "text"
                      }
                    }
                  ]
                }
              ]
            },
            "off_always": true,
            "order": "0",
            "out_price": 1,
            "package_code": "text",
            "parent_id": "text",
            "product_property": [
              {
                "option_id": "text",
                "property_id": "text",
                "title": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                }
              }
            ],
            "product_type": "text",
            "properties_obj": [
              {
                "active": true,
                "created_at": "text",
                "description": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "id": "text",
                "options": [
                  {
                    "id": "text",
                    "image": "text",
                    "title": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    }
                  }
                ],
                "order_no": "0",
                "shipper_id": "text",
                "slug": "text",
                "title": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                }
              }
            ],
            "property_ids": [
              "text"
            ],
            "proteins": 1,
            "rate": {
              "code": "text",
              "id": "text",
              "rate_amount": "0",
              "slug": "text",
              "title": "text"
            },
            "rate_id": "text",
            "rating": 1,
            "relation_type": "text",
            "seo_text": {
              "en": "text",
              "ru": "text",
              "uz": "text"
            },
            "slug": "text",
            "string": "text",
            "tags": [
              {
                "color": "text",
                "icon": "text",
                "id": "text",
                "shipper_id": "text",
                "slug": "text",
                "title": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                }
              }
            ],
            "title": {
              "en": "text",
              "ru": "text",
              "uz": "text"
            },
            "to_time": "text",
            "type": "text",
            "variant_products": [
              {
                "active": true,
                "active_in_menu": true,
                "barcode": "text",
                "brand": "text",
                "carbohydrates": 1,
                "categories": [
                  "text"
                ],
                "code": "text",
                "count": "0",
                "currency": "text",
                "description": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "energy": 1,
                "fats": 1,
                "favourites": [
                  "text"
                ],
                "gallery": [
                  "text"
                ],
                "id": "text",
                "iiko_id": "text",
                "image": "text",
                "in_price": 1,
                "is_divisible": true,
                "jowi_id": "text",
                "measurement": "text",
                "modifiers": {
                  "group_modifiers": [
                    {
                      "active": true,
                      "add_to_price": true,
                      "category_name": {
                        "en": "text",
                        "ru": "text",
                        "uz": "text"
                      },
                      "code": "text",
                      "created_at": "text",
                      "default_amount": 1,
                      "from_product_id": "text",
                      "id": "text",
                      "is_checkbox": true,
                      "is_compulsory": true,
                      "max_amount": 1,
                      "min_amount": 1,
                      "name": {
                        "en": "text",
                        "ru": "text",
                        "uz": "text"
                      },
                      "order": "text",
                      "price": "text",
                      "shipper_id": "text",
                      "to_product_id": "text",
                      "type": "text",
                      "variants": [
                        {
                          "default_amount": 1,
                          "id": "text",
                          "image": "text",
                          "in_price": 1,
                          "max_amount": 1,
                          "min_amount": 1,
                          "out_price": 1,
                          "title": {
                            "en": "text",
                            "ru": "text",
                            "uz": "text"
                          }
                        }
                      ]
                    }
                  ],
                  "single_modifiers": [
                    {
                      "active": true,
                      "add_to_price": true,
                      "category_name": {
                        "en": "text",
                        "ru": "text",
                        "uz": "text"
                      },
                      "code": "text",
                      "created_at": "text",
                      "default_amount": 1,
                      "from_product_id": "text",
                      "id": "text",
                      "is_checkbox": true,
                      "is_compulsory": true,
                      "max_amount": 1,
                      "min_amount": 1,
                      "name": {
                        "en": "text",
                        "ru": "text",
                        "uz": "text"
                      },
                      "order": "text",
                      "price": "text",
                      "shipper_id": "text",
                      "to_product_id": "text",
                      "type": "text",
                      "variants": [
                        {
                          "default_amount": 1,
                          "id": "text",
                          "image": "text",
                          "in_price": 1,
                          "max_amount": 1,
                          "min_amount": 1,
                          "out_price": 1,
                          "title": {
                            "en": "text",
                            "ru": "text",
                            "uz": "text"
                          }
                        }
                      ]
                    }
                  ]
                },
                "order": "0",
                "out_price": 1,
                "parent_id": "text",
                "poster_id": "text",
                "product_property": [
                  {
                    "option_id": "text",
                    "property_id": "text",
                    "title": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    }
                  }
                ],
                "product_type": "text",
                "property_ids": [
                  "text"
                ],
                "proteins": 1,
                "rate_id": "text",
                "relation_type": "text",
                "tags": [
                  "text"
                ],
                "title": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "type": "text",
                "weight": 1
              }
            ],
            "weight": 1
          }
        ],
        "from_time": "text",
        "gallery": [
          "text"
        ],
        "has_modifier": true,
        "id": "text",
        "iiko_id": "text",
        "ikpu": "text",
        "image": "text",
        "in_price": 1,
        "is_divisible": true,
        "jowi_id": "text",
        "measurement": "text",
        "off_always": true,
        "order": "0",
        "out_price": 1,
        "package_code": "text",
        "poster_id": "text",
        "price_in_menu": 1,
        "product_property": [
          {
            "option_id": "text",
            "property_id": "text",
            "title": {
              "en": "text",
              "ru": "text",
              "uz": "text"
            }
          }
        ],
        "product_type": "text",
        "properties": [
          {
            "option_id": "text",
            "property_id": "text",
            "title": {
              "en": "text",
              "ru": "text",
              "uz": "text"
            }
          }
        ],
        "proteins": 1,
        "rate": {
          "code": "text",
          "id": "text",
          "rate_amount": "0",
          "slug": "text",
          "title": "text"
        },
        "rkeeper_id": "text",
        "seo_text": {
          "en": "text",
          "ru": "text",
          "uz": "text"
        },
        "size_id": "text",
        "slug": "text",
        "tags": [
          {
            "color": "text",
            "icon": "text",
            "id": "text",
            "shipper_id": "text",
            "slug": "text",
            "title": {
              "en": "text",
              "ru": "text",
              "uz": "text"
            }
          }
        ],
        "title": {
          "en": "text",
          "ru": "text",
          "uz": "text"
        },
        "to_time": "text",
        "type": "text",
        "variant_products": [
          {
            "active": true,
            "active_in_menu": true,
            "barcode": "text",
            "brand": "text",
            "carbohydrates": 1,
            "categories": [
              "text"
            ],
            "code": "text",
            "count": "0",
            "currency": "text",
            "description": {
              "en": "text",
              "ru": "text",
              "uz": "text"
            },
            "energy": 1,
            "fats": 1,
            "favourites": [
              "text"
            ],
            "gallery": [
              "text"
            ],
            "id": "text",
            "iiko_id": "text",
            "image": "text",
            "in_price": 1,
            "is_divisible": true,
            "jowi_id": "text",
            "measurement": "text",
            "modifiers": {
              "group_modifiers": [
                {
                  "active": true,
                  "add_to_price": true,
                  "category_name": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  },
                  "code": "text",
                  "created_at": "text",
                  "default_amount": 1,
                  "from_product_id": "text",
                  "id": "text",
                  "is_checkbox": true,
                  "is_compulsory": true,
                  "max_amount": 1,
                  "min_amount": 1,
                  "name": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  },
                  "order": "text",
                  "price": "text",
                  "shipper_id": "text",
                  "to_product_id": "text",
                  "type": "text",
                  "variants": [
                    {
                      "default_amount": 1,
                      "id": "text",
                      "image": "text",
                      "in_price": 1,
                      "max_amount": 1,
                      "min_amount": 1,
                      "out_price": 1,
                      "title": {
                        "en": "text",
                        "ru": "text",
                        "uz": "text"
                      }
                    }
                  ]
                }
              ],
              "single_modifiers": [
                {
                  "active": true,
                  "add_to_price": true,
                  "category_name": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  },
                  "code": "text",
                  "created_at": "text",
                  "default_amount": 1,
                  "from_product_id": "text",
                  "id": "text",
                  "is_checkbox": true,
                  "is_compulsory": true,
                  "max_amount": 1,
                  "min_amount": 1,
                  "name": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  },
                  "order": "text",
                  "price": "text",
                  "shipper_id": "text",
                  "to_product_id": "text",
                  "type": "text",
                  "variants": [
                    {
                      "default_amount": 1,
                      "id": "text",
                      "image": "text",
                      "in_price": 1,
                      "max_amount": 1,
                      "min_amount": 1,
                      "out_price": 1,
                      "title": {
                        "en": "text",
                        "ru": "text",
                        "uz": "text"
                      }
                    }
                  ]
                }
              ]
            },
            "order": "0",
            "out_price": 1,
            "parent_id": "text",
            "poster_id": "text",
            "product_property": [
              {
                "option_id": "text",
                "property_id": "text",
                "title": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                }
              }
            ],
            "product_type": "text",
            "property_ids": [
              "text"
            ],
            "proteins": 1,
            "rate_id": "text",
            "relation_type": "text",
            "tags": [
              "text"
            ],
            "title": {
              "en": "text",
              "ru": "text",
              "uz": "text"
            },
            "type": "text",
            "weight": 1
          }
        ],
        "weight": 1
      },
      "product_id": "text",
      "shipper_id": "text",
      "updated_at": "text"
    }
  ]
}

Get All Category

get

API for getting all category

Authorizations
AuthorizationstringRequired
Query parameters
pageintegerOptional

page

limitintegerOptional

limit

parent_idintegerOptional

parent_id

allbooleanOptional

all

searchstringOptional

search

Header parameters
ShipperstringOptional

Shipper

Responses
200

OK

application/json
countstringOptionalExample: 0
get/v2/category
GET /v2/category HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
{
  "categories": [
    {
      "child_categories": [
        {
          "description": "text",
          "description_v2": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "id": "text",
          "image": "text",
          "name": "text",
          "order_no": "0",
          "parent_id": "text",
          "products": [
            {
              "category_id": "text",
              "description": "text",
              "description_v2": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "has_modifier": true,
              "id": "text",
              "image": "text",
              "name": "text",
              "order_no": "0",
              "price": "0",
              "slug": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "seo_text": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "slug": "text",
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          }
        }
      ],
      "description": "text",
      "description_v2": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "id": "text",
      "image": "text",
      "metatag_h1": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "metatag_title": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "name": "text",
      "order_no": "0",
      "parent_id": "text",
      "products": [
        {
          "category_id": "text",
          "description": "text",
          "description_v2": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "has_modifier": true,
          "id": "text",
          "image": "text",
          "name": "text",
          "order_no": "0",
          "price": "0",
          "slug": "text",
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          }
        }
      ],
      "seo_text": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "slug": "text",
      "title": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      }
    }
  ],
  "count": "0"
}

Get Category

get

API for getting a category

Authorizations
AuthorizationstringRequired
Path parameters
category_idstringRequired

category_id

Header parameters
ShipperstringOptional

Shipper

Responses
200

OK

application/json
descriptionstringOptional
idstringOptional
imagestringOptional
namestringOptional
order_nostringOptionalExample: 0
parent_idstringOptional
slugstringOptional
get/v2/category/{category_id}
GET /v2/category/{category_id} HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
{
  "child_categories": [
    {
      "description": "text",
      "description_v2": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "id": "text",
      "image": "text",
      "name": "text",
      "order_no": "0",
      "parent_id": "text",
      "products": [
        {
          "category_id": "text",
          "description": "text",
          "description_v2": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "has_modifier": true,
          "id": "text",
          "image": "text",
          "name": "text",
          "order_no": "0",
          "price": "0",
          "slug": "text",
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          }
        }
      ],
      "seo_text": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "slug": "text",
      "title": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      }
    }
  ],
  "description": "text",
  "description_v2": {
    "en": "text",
    "ru": "text",
    "uz": "text"
  },
  "id": "text",
  "image": "text",
  "metatag_h1": {
    "en": "text",
    "ru": "text",
    "uz": "text"
  },
  "metatag_title": {
    "en": "text",
    "ru": "text",
    "uz": "text"
  },
  "name": "text",
  "order_no": "0",
  "parent_id": "text",
  "products": [
    {
      "category_id": "text",
      "description": "text",
      "description_v2": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "has_modifier": true,
      "id": "text",
      "image": "text",
      "name": "text",
      "order_no": "0",
      "price": "0",
      "slug": "text",
      "title": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      }
    }
  ],
  "seo_text": {
    "en": "text",
    "ru": "text",
    "uz": "text"
  },
  "slug": "text",
  "title": {
    "en": "text",
    "ru": "text",
    "uz": "text"
  }
}

Get All discount

get

API for getting all discount

Authorizations
AuthorizationstringRequired
Query parameters
pageintegerOptional

page

limitintegerOptional

limit

searchstringOptional

search

order_sourcesstring[]Optional

order_sources

branch_idsstring[]Optional

branch_ids

typesstring[]Optional

types

payment_typesstring[]Optional

payment_types

only_deliverystringOptional

only_delivery

only_self_pickupstringOptional

only_self_pickup

product_idsstring[]Optional

product_ids

modesstring[]Optional

modes

discount_forstringOptional

discount_for

for_order_amountintegerOptional

for_order_amount

promo_codestringOptional

promo_code

Header parameters
ShipperstringOptional

Shipper

Responses
200

OK

application/json
countintegerOptional
get/v2/discount
GET /v2/discount HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
{
  "count": 1,
  "discounts": [
    {
      "amount": 1,
      "amount_for_order": [
        {
          "amount": 1,
          "from_price": 1
        }
      ],
      "branch_ids": [
        "text"
      ],
      "can_add_by_hand": true,
      "client_order_count": 1,
      "created_at": "text",
      "deleted_at": 1,
      "discount_for": "text",
      "from_date": "text",
      "from_time": "text",
      "id": "text",
      "is_active": true,
      "is_amount_for_order": true,
      "is_automatic_adding": true,
      "mode": "text",
      "name": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "order_source": [
        "text"
      ],
      "order_type": {
        "delivery": true,
        "self_pickup": true
      },
      "payment_type": [
        "text"
      ],
      "payment_type_ids": "text",
      "priority": 1,
      "product_ids": [
        "text"
      ],
      "shipper_id": "text",
      "status": true,
      "to_date": "text",
      "to_time": "text",
      "type": "text",
      "updated_at": "text"
    }
  ]
}

Get All news-events

get

API for getting news-events

Authorizations
AuthorizationstringRequired
Query parameters
searchstringOptional

search

pageintegerRequired

page

limitintegerRequired

limit

typestringOptional

type

Header parameters
ShipperstringRequired

Shipper

Responses
200

OK

application/json
countintegerOptional
get/v2/news-events
GET /v2/news-events?page=1&limit=1 HTTP/1.1
Authorization: YOUR_API_KEY
Shipper: text
Accept: */*
{
  "count": 1,
  "news_events": [
    {
      "created_at": "text",
      "description": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "from_date": "text",
      "id": "text",
      "images": [
        "text"
      ],
      "is_active": true,
      "shipper_id": "text",
      "title": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "to_date": "text",
      "type": "text",
      "updated_at": "text"
    }
  ]
}

Get new-event

get

API for getting new-event

Path parameters
idstringRequired

id

Responses
200

OK

application/json
created_atstringOptional
from_datestringOptional
idstringOptional
imagesstring[]Optional
is_activebooleanOptional
shipper_idstringOptional
to_datestringOptional
typestringOptional
updated_atstringOptional
get/v2/news-events/{id}
GET /v2/news-events/{id} HTTP/1.1
Accept: */*
{
  "created_at": "text",
  "description": {
    "en": "text",
    "ru": "text",
    "uz": "text"
  },
  "from_date": "text",
  "id": "text",
  "images": [
    "text"
  ],
  "is_active": true,
  "shipper_id": "text",
  "title": {
    "en": "text",
    "ru": "text",
    "uz": "text"
  },
  "to_date": "text",
  "type": "text",
  "updated_at": "text"
}

Get All notifications

get

API for getting notifications

Authorizations
AuthorizationstringRequired
Query parameters
pageintegerRequired

page

limitintegerRequired

limit

only_unreadbooleanRequired

only_unread

Header parameters
ShipperstringRequired

Shipper

Responses
200

OK

application/json
countintegerOptional
get/v2/notifications
GET /v2/notifications?page=1&limit=1&only_unread=true HTTP/1.1
Authorization: YOUR_API_KEY
Shipper: text
Accept: */*
{
  "count": 1,
  "notifications": [
    {
      "content": "text",
      "id": "text",
      "sent_date": "text",
      "status_id": "text",
      "title": "text"
    }
  ]
}

Get notification

get

API for getting notification

Authorizations
AuthorizationstringRequired
Path parameters
idstringRequired

id

Responses
200

OK

application/json
contentstringOptional
idstringOptional
sent_datestringOptional
status_idstringOptional
titlestringOptional
get/v2/notifications/{id}
GET /v2/notifications/{id} HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
{
  "content": "text",
  "id": "text",
  "sent_date": "text",
  "status_id": "text",
  "title": "text"
}

Create On Demand Order v2

post

API for creating on demand order

Authorizations
AuthorizationstringRequired
Body
external_order_idstringOptional
order_idstringOptional
Responses
200

OK

application/json
external_order_idstringOptional
order_idstringOptional
post/v2/ondemand-order
POST /v2/ondemand-order HTTP/1.1
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 1590

{
  "external_order_id": "text",
  "order": {
    "accommodation": "text",
    "aggregator_id": "text",
    "apartment": "text",
    "building": "text",
    "card_id": "text",
    "card_mask": "text",
    "client_id": "text",
    "co_delivery_price": 10000,
    "courier_id": "text",
    "courier_type_id": "text",
    "crm_table_id": "text",
    "crm_table_number": 1,
    "delivery_time": "text",
    "delivery_type": "delivery",
    "description": "text",
    "discount_per": 1,
    "extra_phone_number": "text",
    "floor": "text",
    "future_time": "text",
    "id": "text",
    "is_cancel_old_order": true,
    "is_courier_call": true,
    "is_preorder": true,
    "is_reissued": true,
    "paid": true,
    "payment": [
      {
        "created_at": "text",
        "id": "text",
        "order_id": "text",
        "paid_amount": 1,
        "payment_type": "text",
        "returned_amount": 1
      }
    ],
    "payment_type": "text",
    "should_card_save": true,
    "source": "text",
    "steps": [
      {
        "address": "text",
        "branch_id": "text",
        "branch_name": "text",
        "description": "text",
        "destination_address": "text",
        "external_step_id": "0",
        "location": {
          "lat": 40.123,
          "long": 60.123
        },
        "phone_number": "text",
        "products": [
          {
            "client_id": "text",
            "description": "text",
            "order_modifiers": [
              {
                "modifier_id": "text",
                "modifier_name": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "modifier_price": 1,
                "modifier_quantity": 1,
                "parent_id": "text"
              }
            ],
            "price": "50000",
            "product_id": "a010f178-da52-4373-aacd-e477d871e27a",
            "quantity": 5,
            "type": "text",
            "variants": [
              {
                "group_id": "text",
                "order_modifiers": [
                  {
                    "modifier_id": "text",
                    "modifier_name": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    },
                    "modifier_price": 1,
                    "modifier_quantity": 1,
                    "parent_id": "text"
                  }
                ],
                "quantity": 1,
                "variant_id": "text"
              }
            ]
          }
        ]
      }
    ],
    "to_address": "Hamid Olimjon maydoni 10A dom 40-kvartira",
    "to_location": {
      "lat": 40.123,
      "long": 60.123
    }
  },
  "order_id": "text"
}
{
  "external_order_id": "text",
  "order": {
    "accommodation": "text",
    "aggregator_id": "text",
    "apartment": "text",
    "building": "text",
    "card_id": "text",
    "card_mask": "text",
    "client_id": "text",
    "co_delivery_price": 10000,
    "courier_id": "text",
    "courier_type_id": "text",
    "crm_table_id": "text",
    "crm_table_number": 1,
    "delivery_time": "text",
    "delivery_type": "delivery",
    "description": "text",
    "discount_per": 1,
    "extra_phone_number": "text",
    "floor": "text",
    "future_time": "text",
    "id": "text",
    "is_cancel_old_order": true,
    "is_courier_call": true,
    "is_preorder": true,
    "is_reissued": true,
    "paid": true,
    "payment": [
      {
        "created_at": "text",
        "id": "text",
        "order_id": "text",
        "paid_amount": 1,
        "payment_type": "text",
        "returned_amount": 1
      }
    ],
    "payment_type": "text",
    "should_card_save": true,
    "source": "text",
    "steps": [
      {
        "address": "text",
        "branch_id": "text",
        "branch_name": "text",
        "description": "text",
        "destination_address": "text",
        "external_step_id": "0",
        "location": {
          "lat": 40.123,
          "long": 60.123
        },
        "phone_number": "text",
        "products": [
          {
            "client_id": "text",
            "description": "text",
            "order_modifiers": [
              {
                "modifier_id": "text",
                "modifier_name": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "modifier_price": 1,
                "modifier_quantity": 1,
                "parent_id": "text"
              }
            ],
            "price": "50000",
            "product_id": "a010f178-da52-4373-aacd-e477d871e27a",
            "quantity": 5,
            "type": "text",
            "variants": [
              {
                "group_id": "text",
                "order_modifiers": [
                  {
                    "modifier_id": "text",
                    "modifier_name": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    },
                    "modifier_price": 1,
                    "modifier_quantity": 1,
                    "parent_id": "text"
                  }
                ],
                "quantity": 1,
                "variant_id": "text"
              }
            ]
          }
        ]
      }
    ],
    "to_address": "Hamid Olimjon maydoni 10A dom 40-kvartira",
    "to_location": {
      "lat": 40.123,
      "long": 60.123
    }
  },
  "order_id": "text"
}

Get Customer Orders

get

API for getting customer orders

Authorizations
AuthorizationstringRequired
Query parameters
pageintegerOptional

page

limitintegerOptional

limit

status_idsstring[]Optional

status_ids

start_datestringOptional

start_date

end_datestringOptional

end_date

review_seenstringOptional

review_seen

Responses
200

OK

application/json
countstringOptionalExample: 0
get/v1/order
GET /v1/order HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
{
  "count": "0",
  "orders": [
    {
      "apartment": "text",
      "building": "text",
      "client_id": "text",
      "client_name": "Oybek",
      "client_phone_number": "998998765432",
      "co_delivery_price": 10000,
      "courier": {
        "courier_type": {
          "distance_from": 1,
          "distance_to": 1,
          "icon": "text",
          "id": "text",
          "name": "text",
          "shipper_id": "text",
          "working_hours": [
            {
              "courier_type_id": "text",
              "day_number": 1,
              "end_time": "text",
              "id": "text",
              "is_active": true,
              "start_time": "text"
            }
          ]
        },
        "first_name": "text",
        "last_name": "text",
        "location": {
          "lat": 40.123,
          "long": 60.123
        },
        "phone": "text",
        "vehicle_number": "text"
      },
      "courier_id": "text",
      "created_at": "text",
      "delivery_price": 10000,
      "delivery_time": "12:00",
      "delivery_type": "delivery",
      "description": "text",
      "external_order_id": "text",
      "extra_phone_number": "text",
      "finished_at": "text",
      "floor": "text",
      "id": "text",
      "is_courier_call": true,
      "order_amount": 1,
      "paid": true,
      "payment_type": "text",
      "payment_type_id": "text",
      "payment_type_obj": {
        "id": "text",
        "image": "text",
        "integration": "text",
        "name": {
          "en": "text",
          "ru": "text",
          "uz": "text"
        },
        "type": "text"
      },
      "pos_id": "text",
      "review": "text",
      "source": "text",
      "status_id": "text",
      "status_notes": [
        {
          "created_at": "text",
          "description": "text",
          "id": "text",
          "status_id": "text"
        }
      ],
      "steps": [
        {
          "address": "text",
          "branch_id": "text",
          "branch_name": "text",
          "description": "text",
          "destination_address": "text",
          "external_step_id": "0",
          "location": {
            "lat": 40.123,
            "long": 60.123
          },
          "phone_number": "text"
        }
      ],
      "to_address": "Hamid Olimjon maydoni 10A dom 40-kvartira",
      "to_location": {
        "lat": 40.123,
        "long": 60.123
      }
    }
  ]
}

Get Order

get

API for getting order

Authorizations
AuthorizationstringRequired
Path parameters
order_idstringRequired

order_id

Responses
200

OK

application/json
accommodationstringOptional
aggregator_idstringOptional
apartmentstringOptional
buildingstringOptional
client_idstringOptional
client_namestringOptionalExample: Oybek
client_phone_numberstringOptionalExample: 998998765432
co_delivery_pricenumberOptionalExample: 10000
courier_idstringOptional
courier_type_idstringOptional
created_atstringOptional
delivery_pricenumberOptionalExample: 10000
delivery_timestringOptionalExample: 12:00
delivery_typestringOptionalExample: delivery
delivery_zone_idstringOptional
descriptionstringOptional
distancenumberOptional
external_order_idstringOptional
extra_phone_numberstringOptional
finished_atstringOptional
floorstringOptional
free_delevery_timenumberOptional
future_timestringOptional
idstringOptional
is_courier_callbooleanOptional
is_preorderbooleanOptional
is_reissuedbooleanOptional
order_amountintegerOptional
paidbooleanOptional
payment_typestringOptional
pos_idstringOptional
ratingnumberOptional
reviewstringOptional
sourcestringOptional
status_idstringOptional
system_user_idstringOptional
to_addressstringOptionalExample: Hamid Olimjon maydoni 10A dom 40-kvartira
get/v2/order/{order_id}
GET /v2/order/{order_id} HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
{
  "accommodation": "text",
  "aggregator_id": "text",
  "apartment": "text",
  "building": "text",
  "client_id": "text",
  "client_name": "Oybek",
  "client_phone_number": "998998765432",
  "co_delivery_price": 10000,
  "courier": {
    "courier_type": {
      "distance_from": 1,
      "distance_to": 1,
      "icon": "text",
      "id": "text",
      "name": "text",
      "shipper_id": "text",
      "working_hours": [
        {
          "courier_type_id": "text",
          "day_number": 1,
          "end_time": "text",
          "id": "text",
          "is_active": true,
          "start_time": "text"
        }
      ]
    },
    "first_name": "text",
    "last_name": "text",
    "location": {
      "lat": 40.123,
      "long": 60.123
    },
    "phone": "text",
    "vehicle_number": "text"
  },
  "courier_id": "text",
  "courier_type_id": "text",
  "created_at": "text",
  "delivery_price": 10000,
  "delivery_time": "12:00",
  "delivery_type": "delivery",
  "delivery_zone_id": "text",
  "description": "text",
  "distance": 1,
  "external_order_id": "text",
  "extra_phone_number": "text",
  "finished_at": "text",
  "floor": "text",
  "free_delevery_time": 1,
  "future_time": "text",
  "id": "text",
  "is_courier_call": true,
  "is_preorder": true,
  "is_reissued": true,
  "order_amount": 1,
  "paid": true,
  "payment": [
    {
      "created_at": "text",
      "id": "text",
      "order_id": "text",
      "paid_amount": 1,
      "payment_type": "text",
      "returned_amount": 1
    }
  ],
  "payment_type": "text",
  "pos_id": "text",
  "rating": 1,
  "review": "text",
  "shipper_user": {
    "id": "text",
    "name": "text",
    "phone": "text"
  },
  "source": "text",
  "status_id": "text",
  "status_notes": [
    {
      "created_at": "text",
      "description": "text",
      "id": "text",
      "status_id": "text"
    }
  ],
  "steps": [
    {
      "address": "text",
      "branch_id": "text",
      "branch_name": "text",
      "description": "text",
      "destination_address": "text",
      "external_step_id": "0",
      "id": "text",
      "location": {
        "lat": 40.123,
        "long": 60.123
      },
      "phone_number": "text",
      "products": [
        {
          "description": "text",
          "external_product_id": "1234",
          "id": "text",
          "ikpu": "text",
          "modifiers": [
            {
              "modifier_id": "text",
              "modifier_name": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "modifier_price": 1,
              "modifier_quantity": 1,
              "parent_id": "text"
            }
          ],
          "name": "Choyxona Osh",
          "package_code": "text",
          "price": 25000,
          "product_id": "text",
          "quantity": 2,
          "total_amount": 1,
          "type": "text",
          "variants": [
            {
              "group_id": "text",
              "order_modifiers": [
                {
                  "modifier_id": "text",
                  "modifier_name": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  },
                  "modifier_price": 1,
                  "modifier_quantity": 1,
                  "parent_id": "text"
                }
              ],
              "quantity": 1,
              "variant_id": "text"
            }
          ]
        }
      ],
      "status": "text",
      "step_amount": 1
    }
  ],
  "system_user_id": "text",
  "to_address": "Hamid Olimjon maydoni 10A dom 40-kvartira",
  "to_location": {
    "lat": 40.123,
    "long": 60.123
  },
  "transactions": [
    {
      "state": 2,
      "time": 1605331684111
    }
  ]
}

Cancel Order v2

patch

API for Cancel Order v2

Authorizations
AuthorizationstringRequired
Path parameters
order_idstringRequired

ORDER ID

Body
descriptionstringOptional
reason_idstringOptional
status_idstringOptional
Responses
200

OK

application/json
messageanyOptional
patch/v2/order/{order_id}/cancel-order
PATCH /v2/order/{order_id}/cancel-order HTTP/1.1
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 60

{
  "description": "text",
  "reason_id": "text",
  "status_id": "text"
}
{
  "message": null
}

Get All product

get

API for getting all product

Query parameters
pageintegerOptional

page

limitintegerOptional

limit

category_idstringOptional

category_id

searchstringOptional

search by title of product, searches in all 3 lang-s at the same time

allbooleanOptional

all

parent_idintegerOptional

parent_id

typestringOptional

type

sortstringOptional

sort

exception_from_product_idstringOptional

exception_from_product_id

delivery_typestringOptional

delivery_type

crm_typestringOptional

crm_type

fieldsstring[]Optional

fields

group_idstringOptional

group_id

tag_idsstring[]Optional

tag_ids

menu_idstringOptional

menu_id

aggregator_idstringOptional

aggregator_id

product_typesstring[]Optional

product_types

Header parameters
ShipperstringRequired

Shipper

Responses
200

OK

application/json
countstringOptionalExample: 0
get/v2/product
GET /v2/product HTTP/1.1
Shipper: text
Accept: */*
{
  "count": "0",
  "products": [
    {
      "active": true,
      "active_in_menu": true,
      "add_to_order": true,
      "allergens": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "barcode": "text",
      "brand": {
        "description": {
          "en": "text",
          "ru": "text",
          "uz": "text"
        },
        "id": "text",
        "image": "text",
        "is_active": true,
        "order_no": "0",
        "parent_id": "text",
        "slug": "text",
        "title": {
          "en": "text",
          "ru": "text",
          "uz": "text"
        }
      },
      "carbohydrates": 1,
      "categories": [
        {
          "active": true,
          "child_categories": [
            {
              "created_at": "text",
              "description": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "id": "text",
              "image": "text",
              "is_active": true,
              "name": "text",
              "order_no": "0",
              "parent_id": "text",
              "slug": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "description": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "id": "text",
          "image": "text",
          "metatag_h1": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "metatag_title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "order_no": "0",
          "parent_id": "text",
          "products": [
            {
              "active": true,
              "active_in_menu": true,
              "brand_id": "text",
              "carbohydrates": 1,
              "categories": [
                "text"
              ],
              "currency": "text",
              "description": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "discounts": [
                {
                  "discount_price": 1,
                  "id": "text",
                  "name": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  }
                }
              ],
              "energy": 1,
              "fats": 1,
              "from_time": "text",
              "gallery": [
                "text"
              ],
              "has_modifier": true,
              "id": "text",
              "iiko_id": "text",
              "image": "text",
              "jowi_id": "text",
              "off_always": true,
              "out_price": 1,
              "proteins": 1,
              "rate_id": "text",
              "rating": 1,
              "seo_text": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "slug": "text",
              "string": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "to_time": "text",
              "type": "text",
              "weight": 1
            }
          ],
          "seo_text": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "slug": "text",
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          }
        }
      ],
      "code": "text",
      "count": "0",
      "currency": "text",
      "default_quantity": 1,
      "description": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "energy": 1,
      "fats": 1,
      "favorites": [
        {
          "active": true,
          "active_in_menu": true,
          "add_to_order": true,
          "allergens": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "barcode": "text",
          "brand_id": "text",
          "carbohydrates": 1,
          "categories": [
            "text"
          ],
          "categories_obj": [
            {
              "active": true,
              "child_categories": [
                {
                  "created_at": "text",
                  "description": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  },
                  "id": "text",
                  "image": "text",
                  "is_active": true,
                  "name": "text",
                  "order_no": "0",
                  "parent_id": "text",
                  "slug": "text",
                  "title": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  }
                }
              ],
              "description": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "id": "text",
              "image": "text",
              "metatag_h1": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "metatag_title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "order_no": "0",
              "parent_id": "text",
              "products": [
                {
                  "active": true,
                  "active_in_menu": true,
                  "brand_id": "text",
                  "carbohydrates": 1,
                  "categories": [
                    "text"
                  ],
                  "currency": "text",
                  "description": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  },
                  "discounts": [
                    {
                      "discount_price": 1,
                      "id": "text",
                      "name": {
                        "en": "text",
                        "ru": "text",
                        "uz": "text"
                      }
                    }
                  ],
                  "energy": 1,
                  "fats": 1,
                  "from_time": "text",
                  "gallery": [
                    "text"
                  ],
                  "has_modifier": true,
                  "id": "text",
                  "iiko_id": "text",
                  "image": "text",
                  "jowi_id": "text",
                  "off_always": true,
                  "out_price": 1,
                  "proteins": 1,
                  "rate_id": "text",
                  "rating": 1,
                  "seo_text": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  },
                  "slug": "text",
                  "string": "text",
                  "title": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  },
                  "to_time": "text",
                  "type": "text",
                  "weight": 1
                }
              ],
              "seo_text": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "slug": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "count": "0",
          "currency": "text",
          "default_quantity": 1,
          "description": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "discounts": [
            {
              "discount_price": 1,
              "id": "text",
              "name": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "energy": 1,
          "fats": 1,
          "favourites": [
            "text"
          ],
          "from_time": "text",
          "gallery": [
            "text"
          ],
          "google_category": "text",
          "has_modifier": true,
          "id": "text",
          "iiko_id": "text",
          "ikpu": "text",
          "image": "text",
          "in_price": 1,
          "ingredients": [
            {
              "id": "text",
              "image": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "is_divisible": true,
          "jowi_id": "text",
          "measurement": "text",
          "modifiers": {
            "group_modifiers": [
              {
                "active": true,
                "add_to_price": true,
                "category_name": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "code": "text",
                "created_at": "text",
                "default_amount": 1,
                "from_product_id": "text",
                "id": "text",
                "is_checkbox": true,
                "is_compulsory": true,
                "max_amount": 1,
                "min_amount": 1,
                "name": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "order": "text",
                "price": "text",
                "shipper_id": "text",
                "to_product_id": "text",
                "type": "text",
                "variants": [
                  {
                    "default_amount": 1,
                    "id": "text",
                    "image": "text",
                    "in_price": 1,
                    "max_amount": 1,
                    "min_amount": 1,
                    "out_price": 1,
                    "title": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    }
                  }
                ]
              }
            ],
            "single_modifiers": [
              {
                "active": true,
                "add_to_price": true,
                "category_name": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "code": "text",
                "created_at": "text",
                "default_amount": 1,
                "from_product_id": "text",
                "id": "text",
                "is_checkbox": true,
                "is_compulsory": true,
                "max_amount": 1,
                "min_amount": 1,
                "name": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "order": "text",
                "price": "text",
                "shipper_id": "text",
                "to_product_id": "text",
                "type": "text",
                "variants": [
                  {
                    "default_amount": 1,
                    "id": "text",
                    "image": "text",
                    "in_price": 1,
                    "max_amount": 1,
                    "min_amount": 1,
                    "out_price": 1,
                    "title": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    }
                  }
                ]
              }
            ]
          },
          "off_always": true,
          "order": "0",
          "out_price": 1,
          "package_code": "text",
          "parent_id": "text",
          "product_property": [
            {
              "option_id": "text",
              "property_id": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "product_type": "text",
          "properties_obj": [
            {
              "active": true,
              "created_at": "text",
              "description": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "id": "text",
              "options": [
                {
                  "id": "text",
                  "image": "text",
                  "title": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  }
                }
              ],
              "order_no": "0",
              "shipper_id": "text",
              "slug": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "property_ids": [
            "text"
          ],
          "proteins": 1,
          "rate": {
            "code": "text",
            "id": "text",
            "rate_amount": "0",
            "slug": "text",
            "title": "text"
          },
          "rate_id": "text",
          "rating": 1,
          "relation_type": "text",
          "seo_text": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "slug": "text",
          "string": "text",
          "tags": [
            {
              "color": "text",
              "icon": "text",
              "id": "text",
              "shipper_id": "text",
              "slug": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "to_time": "text",
          "type": "text",
          "variant_products": [
            {
              "active": true,
              "active_in_menu": true,
              "barcode": "text",
              "brand": "text",
              "carbohydrates": 1,
              "categories": [
                "text"
              ],
              "code": "text",
              "count": "0",
              "currency": "text",
              "description": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "energy": 1,
              "fats": 1,
              "favourites": [
                "text"
              ],
              "gallery": [
                "text"
              ],
              "id": "text",
              "iiko_id": "text",
              "image": "text",
              "in_price": 1,
              "is_divisible": true,
              "jowi_id": "text",
              "measurement": "text",
              "modifiers": {
                "group_modifiers": [
                  {
                    "active": true,
                    "add_to_price": true,
                    "category_name": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    },
                    "code": "text",
                    "created_at": "text",
                    "default_amount": 1,
                    "from_product_id": "text",
                    "id": "text",
                    "is_checkbox": true,
                    "is_compulsory": true,
                    "max_amount": 1,
                    "min_amount": 1,
                    "name": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    },
                    "order": "text",
                    "price": "text",
                    "shipper_id": "text",
                    "to_product_id": "text",
                    "type": "text",
                    "variants": [
                      {
                        "default_amount": 1,
                        "id": "text",
                        "image": "text",
                        "in_price": 1,
                        "max_amount": 1,
                        "min_amount": 1,
                        "out_price": 1,
                        "title": {
                          "en": "text",
                          "ru": "text",
                          "uz": "text"
                        }
                      }
                    ]
                  }
                ],
                "single_modifiers": [
                  {
                    "active": true,
                    "add_to_price": true,
                    "category_name": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    },
                    "code": "text",
                    "created_at": "text",
                    "default_amount": 1,
                    "from_product_id": "text",
                    "id": "text",
                    "is_checkbox": true,
                    "is_compulsory": true,
                    "max_amount": 1,
                    "min_amount": 1,
                    "name": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    },
                    "order": "text",
                    "price": "text",
                    "shipper_id": "text",
                    "to_product_id": "text",
                    "type": "text",
                    "variants": [
                      {
                        "default_amount": 1,
                        "id": "text",
                        "image": "text",
                        "in_price": 1,
                        "max_amount": 1,
                        "min_amount": 1,
                        "out_price": 1,
                        "title": {
                          "en": "text",
                          "ru": "text",
                          "uz": "text"
                        }
                      }
                    ]
                  }
                ]
              },
              "order": "0",
              "out_price": 1,
              "parent_id": "text",
              "poster_id": "text",
              "product_property": [
                {
                  "option_id": "text",
                  "property_id": "text",
                  "title": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  }
                }
              ],
              "product_type": "text",
              "property_ids": [
                "text"
              ],
              "proteins": 1,
              "rate_id": "text",
              "relation_type": "text",
              "tags": [
                "text"
              ],
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "type": "text",
              "weight": 1
            }
          ],
          "weight": 1
        }
      ],
      "from_time": "text",
      "gallery": [
        "text"
      ],
      "google_category": "text",
      "has_modifier": true,
      "id": "text",
      "iiko_id": "text",
      "ikpu": "text",
      "image": "text",
      "in_price": 1,
      "ingredients": [
        {
          "id": "text",
          "image": "text",
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          }
        }
      ],
      "is_divisible": true,
      "jowi_id": "text",
      "metatag_h1": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "metatag_title": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "off_always": true,
      "order": "0",
      "out_price": 1,
      "package_code": "text",
      "product_property": [
        {
          "option_id": "text",
          "property_id": "text",
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          }
        }
      ],
      "product_type": "text",
      "properties": [
        {
          "active": true,
          "created_at": "text",
          "description": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "id": "text",
          "options": [
            {
              "id": "text",
              "image": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "order_no": "0",
          "shipper_id": "text",
          "slug": "text",
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          }
        }
      ],
      "proteins": 1,
      "rate": {
        "code": "text",
        "id": "text",
        "rate_amount": "0",
        "slug": "text",
        "title": "text"
      },
      "rating": 1,
      "seo_text": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "slug": "text",
      "tags": [
        {
          "color": "text",
          "icon": "text",
          "id": "text",
          "shipper_id": "text",
          "slug": "text",
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          }
        }
      ],
      "title": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "to_time": "text",
      "type": "text",
      "variant_products": [
        {
          "active": true,
          "active_in_menu": true,
          "add_to_order": true,
          "allergens": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "barcode": "text",
          "brand_id": "text",
          "carbohydrates": 1,
          "categories": [
            "text"
          ],
          "categories_obj": [
            {
              "active": true,
              "child_categories": [
                {
                  "created_at": "text",
                  "description": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  },
                  "id": "text",
                  "image": "text",
                  "is_active": true,
                  "name": "text",
                  "order_no": "0",
                  "parent_id": "text",
                  "slug": "text",
                  "title": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  }
                }
              ],
              "description": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "id": "text",
              "image": "text",
              "metatag_h1": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "metatag_title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "order_no": "0",
              "parent_id": "text",
              "products": [
                {
                  "active": true,
                  "active_in_menu": true,
                  "brand_id": "text",
                  "carbohydrates": 1,
                  "categories": [
                    "text"
                  ],
                  "currency": "text",
                  "description": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  },
                  "discounts": [
                    {
                      "discount_price": 1,
                      "id": "text",
                      "name": {
                        "en": "text",
                        "ru": "text",
                        "uz": "text"
                      }
                    }
                  ],
                  "energy": 1,
                  "fats": 1,
                  "from_time": "text",
                  "gallery": [
                    "text"
                  ],
                  "has_modifier": true,
                  "id": "text",
                  "iiko_id": "text",
                  "image": "text",
                  "jowi_id": "text",
                  "off_always": true,
                  "out_price": 1,
                  "proteins": 1,
                  "rate_id": "text",
                  "rating": 1,
                  "seo_text": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  },
                  "slug": "text",
                  "string": "text",
                  "title": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  },
                  "to_time": "text",
                  "type": "text",
                  "weight": 1
                }
              ],
              "seo_text": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "slug": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "count": "0",
          "currency": "text",
          "default_quantity": 1,
          "description": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "discounts": [
            {
              "discount_price": 1,
              "id": "text",
              "name": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "energy": 1,
          "fats": 1,
          "favourites": [
            "text"
          ],
          "from_time": "text",
          "gallery": [
            "text"
          ],
          "google_category": "text",
          "has_modifier": true,
          "id": "text",
          "iiko_id": "text",
          "ikpu": "text",
          "image": "text",
          "in_price": 1,
          "ingredients": [
            {
              "id": "text",
              "image": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "is_divisible": true,
          "jowi_id": "text",
          "measurement": "text",
          "modifiers": {
            "group_modifiers": [
              {
                "active": true,
                "add_to_price": true,
                "category_name": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "code": "text",
                "created_at": "text",
                "default_amount": 1,
                "from_product_id": "text",
                "id": "text",
                "is_checkbox": true,
                "is_compulsory": true,
                "max_amount": 1,
                "min_amount": 1,
                "name": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "order": "text",
                "price": "text",
                "shipper_id": "text",
                "to_product_id": "text",
                "type": "text",
                "variants": [
                  {
                    "default_amount": 1,
                    "id": "text",
                    "image": "text",
                    "in_price": 1,
                    "max_amount": 1,
                    "min_amount": 1,
                    "out_price": 1,
                    "title": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    }
                  }
                ]
              }
            ],
            "single_modifiers": [
              {
                "active": true,
                "add_to_price": true,
                "category_name": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "code": "text",
                "created_at": "text",
                "default_amount": 1,
                "from_product_id": "text",
                "id": "text",
                "is_checkbox": true,
                "is_compulsory": true,
                "max_amount": 1,
                "min_amount": 1,
                "name": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "order": "text",
                "price": "text",
                "shipper_id": "text",
                "to_product_id": "text",
                "type": "text",
                "variants": [
                  {
                    "default_amount": 1,
                    "id": "text",
                    "image": "text",
                    "in_price": 1,
                    "max_amount": 1,
                    "min_amount": 1,
                    "out_price": 1,
                    "title": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    }
                  }
                ]
              }
            ]
          },
          "off_always": true,
          "order": "0",
          "out_price": 1,
          "package_code": "text",
          "parent_id": "text",
          "product_property": [
            {
              "option_id": "text",
              "property_id": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "product_type": "text",
          "properties_obj": [
            {
              "active": true,
              "created_at": "text",
              "description": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "id": "text",
              "options": [
                {
                  "id": "text",
                  "image": "text",
                  "title": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  }
                }
              ],
              "order_no": "0",
              "shipper_id": "text",
              "slug": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "property_ids": [
            "text"
          ],
          "proteins": 1,
          "rate": {
            "code": "text",
            "id": "text",
            "rate_amount": "0",
            "slug": "text",
            "title": "text"
          },
          "rate_id": "text",
          "rating": 1,
          "relation_type": "text",
          "seo_text": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "slug": "text",
          "string": "text",
          "tags": [
            {
              "color": "text",
              "icon": "text",
              "id": "text",
              "shipper_id": "text",
              "slug": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "to_time": "text",
          "type": "text",
          "variant_products": [
            {
              "active": true,
              "active_in_menu": true,
              "barcode": "text",
              "brand": "text",
              "carbohydrates": 1,
              "categories": [
                "text"
              ],
              "code": "text",
              "count": "0",
              "currency": "text",
              "description": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "energy": 1,
              "fats": 1,
              "favourites": [
                "text"
              ],
              "gallery": [
                "text"
              ],
              "id": "text",
              "iiko_id": "text",
              "image": "text",
              "in_price": 1,
              "is_divisible": true,
              "jowi_id": "text",
              "measurement": "text",
              "modifiers": {
                "group_modifiers": [
                  {
                    "active": true,
                    "add_to_price": true,
                    "category_name": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    },
                    "code": "text",
                    "created_at": "text",
                    "default_amount": 1,
                    "from_product_id": "text",
                    "id": "text",
                    "is_checkbox": true,
                    "is_compulsory": true,
                    "max_amount": 1,
                    "min_amount": 1,
                    "name": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    },
                    "order": "text",
                    "price": "text",
                    "shipper_id": "text",
                    "to_product_id": "text",
                    "type": "text",
                    "variants": [
                      {
                        "default_amount": 1,
                        "id": "text",
                        "image": "text",
                        "in_price": 1,
                        "max_amount": 1,
                        "min_amount": 1,
                        "out_price": 1,
                        "title": {
                          "en": "text",
                          "ru": "text",
                          "uz": "text"
                        }
                      }
                    ]
                  }
                ],
                "single_modifiers": [
                  {
                    "active": true,
                    "add_to_price": true,
                    "category_name": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    },
                    "code": "text",
                    "created_at": "text",
                    "default_amount": 1,
                    "from_product_id": "text",
                    "id": "text",
                    "is_checkbox": true,
                    "is_compulsory": true,
                    "max_amount": 1,
                    "min_amount": 1,
                    "name": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    },
                    "order": "text",
                    "price": "text",
                    "shipper_id": "text",
                    "to_product_id": "text",
                    "type": "text",
                    "variants": [
                      {
                        "default_amount": 1,
                        "id": "text",
                        "image": "text",
                        "in_price": 1,
                        "max_amount": 1,
                        "min_amount": 1,
                        "out_price": 1,
                        "title": {
                          "en": "text",
                          "ru": "text",
                          "uz": "text"
                        }
                      }
                    ]
                  }
                ]
              },
              "order": "0",
              "out_price": 1,
              "parent_id": "text",
              "poster_id": "text",
              "product_property": [
                {
                  "option_id": "text",
                  "property_id": "text",
                  "title": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  }
                }
              ],
              "product_type": "text",
              "property_ids": [
                "text"
              ],
              "proteins": 1,
              "rate_id": "text",
              "relation_type": "text",
              "tags": [
                "text"
              ],
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "type": "text",
              "weight": 1
            }
          ],
          "weight": 1
        }
      ],
      "weight": 1
    }
  ]
}

Get All popups

get

API for getting popup

Query parameters
pageintegerOptional

page

limitintegerOptional

limit

searchstringOptional

search

Header parameters
ShipperstringRequired

Shipper

Responses
200

OK

application/json
countintegerOptional
get/v2/popup
GET /v2/popup HTTP/1.1
Shipper: text
Accept: */*
{
  "count": 1,
  "popups": [
    {
      "about": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "active": true,
      "button": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "duration": 1,
      "from_date": "text",
      "from_time": "text",
      "id": "text",
      "image": "text",
      "shipper_id": "text",
      "show_after": 1,
      "title": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "to_date": "text",
      "to_time": "text",
      "url": "text"
    }
  ]
}

Get All Add to Order Products

get

API for getting all add to order products

Authorizations
AuthorizationstringRequired
Query parameters
pageintegerOptional

page

limitintegerOptional

limit

searchstringOptional

search

Header parameters
ShipperstringOptional

Shipper

Responses
200

OK

application/json
countstringOptionalExample: 0
get/v2/product-add-to-order
GET /v2/product-add-to-order HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
{
  "count": "0",
  "products": [
    {
      "active": true,
      "active_in_menu": true,
      "add_to_order": true,
      "allergens": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "barcode": "text",
      "brand": {
        "description": {
          "en": "text",
          "ru": "text",
          "uz": "text"
        },
        "id": "text",
        "image": "text",
        "is_active": true,
        "order_no": "0",
        "parent_id": "text",
        "slug": "text",
        "title": {
          "en": "text",
          "ru": "text",
          "uz": "text"
        }
      },
      "carbohydrates": 1,
      "categories": [
        {
          "active": true,
          "child_categories": [
            {
              "created_at": "text",
              "description": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "id": "text",
              "image": "text",
              "is_active": true,
              "name": "text",
              "order_no": "0",
              "parent_id": "text",
              "slug": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "description": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "id": "text",
          "image": "text",
          "metatag_h1": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "metatag_title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "order_no": "0",
          "parent_id": "text",
          "products": [
            {
              "active": true,
              "active_in_menu": true,
              "brand_id": "text",
              "carbohydrates": 1,
              "categories": [
                "text"
              ],
              "currency": "text",
              "description": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "discounts": [
                {
                  "discount_price": 1,
                  "id": "text",
                  "name": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  }
                }
              ],
              "energy": 1,
              "fats": 1,
              "from_time": "text",
              "gallery": [
                "text"
              ],
              "has_modifier": true,
              "id": "text",
              "iiko_id": "text",
              "image": "text",
              "jowi_id": "text",
              "off_always": true,
              "out_price": 1,
              "proteins": 1,
              "rate_id": "text",
              "rating": 1,
              "seo_text": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "slug": "text",
              "string": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "to_time": "text",
              "type": "text",
              "weight": 1
            }
          ],
          "seo_text": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "slug": "text",
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          }
        }
      ],
      "code": "text",
      "count": "0",
      "currency": "text",
      "default_quantity": 1,
      "description": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "energy": 1,
      "fats": 1,
      "favorites": [
        {
          "active": true,
          "active_in_menu": true,
          "add_to_order": true,
          "allergens": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "barcode": "text",
          "brand_id": "text",
          "carbohydrates": 1,
          "categories": [
            "text"
          ],
          "categories_obj": [
            {
              "active": true,
              "child_categories": [
                {
                  "created_at": "text",
                  "description": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  },
                  "id": "text",
                  "image": "text",
                  "is_active": true,
                  "name": "text",
                  "order_no": "0",
                  "parent_id": "text",
                  "slug": "text",
                  "title": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  }
                }
              ],
              "description": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "id": "text",
              "image": "text",
              "metatag_h1": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "metatag_title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "order_no": "0",
              "parent_id": "text",
              "products": [
                {
                  "active": true,
                  "active_in_menu": true,
                  "brand_id": "text",
                  "carbohydrates": 1,
                  "categories": [
                    "text"
                  ],
                  "currency": "text",
                  "description": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  },
                  "discounts": [
                    {
                      "discount_price": 1,
                      "id": "text",
                      "name": {
                        "en": "text",
                        "ru": "text",
                        "uz": "text"
                      }
                    }
                  ],
                  "energy": 1,
                  "fats": 1,
                  "from_time": "text",
                  "gallery": [
                    "text"
                  ],
                  "has_modifier": true,
                  "id": "text",
                  "iiko_id": "text",
                  "image": "text",
                  "jowi_id": "text",
                  "off_always": true,
                  "out_price": 1,
                  "proteins": 1,
                  "rate_id": "text",
                  "rating": 1,
                  "seo_text": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  },
                  "slug": "text",
                  "string": "text",
                  "title": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  },
                  "to_time": "text",
                  "type": "text",
                  "weight": 1
                }
              ],
              "seo_text": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "slug": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "count": "0",
          "currency": "text",
          "default_quantity": 1,
          "description": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "discounts": [
            {
              "discount_price": 1,
              "id": "text",
              "name": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "energy": 1,
          "fats": 1,
          "favourites": [
            "text"
          ],
          "from_time": "text",
          "gallery": [
            "text"
          ],
          "google_category": "text",
          "has_modifier": true,
          "id": "text",
          "iiko_id": "text",
          "ikpu": "text",
          "image": "text",
          "in_price": 1,
          "ingredients": [
            {
              "id": "text",
              "image": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "is_divisible": true,
          "jowi_id": "text",
          "measurement": "text",
          "modifiers": {
            "group_modifiers": [
              {
                "active": true,
                "add_to_price": true,
                "category_name": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "code": "text",
                "created_at": "text",
                "default_amount": 1,
                "from_product_id": "text",
                "id": "text",
                "is_checkbox": true,
                "is_compulsory": true,
                "max_amount": 1,
                "min_amount": 1,
                "name": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "order": "text",
                "price": "text",
                "shipper_id": "text",
                "to_product_id": "text",
                "type": "text",
                "variants": [
                  {
                    "default_amount": 1,
                    "id": "text",
                    "image": "text",
                    "in_price": 1,
                    "max_amount": 1,
                    "min_amount": 1,
                    "out_price": 1,
                    "title": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    }
                  }
                ]
              }
            ],
            "single_modifiers": [
              {
                "active": true,
                "add_to_price": true,
                "category_name": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "code": "text",
                "created_at": "text",
                "default_amount": 1,
                "from_product_id": "text",
                "id": "text",
                "is_checkbox": true,
                "is_compulsory": true,
                "max_amount": 1,
                "min_amount": 1,
                "name": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "order": "text",
                "price": "text",
                "shipper_id": "text",
                "to_product_id": "text",
                "type": "text",
                "variants": [
                  {
                    "default_amount": 1,
                    "id": "text",
                    "image": "text",
                    "in_price": 1,
                    "max_amount": 1,
                    "min_amount": 1,
                    "out_price": 1,
                    "title": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    }
                  }
                ]
              }
            ]
          },
          "off_always": true,
          "order": "0",
          "out_price": 1,
          "package_code": "text",
          "parent_id": "text",
          "product_property": [
            {
              "option_id": "text",
              "property_id": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "product_type": "text",
          "properties_obj": [
            {
              "active": true,
              "created_at": "text",
              "description": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "id": "text",
              "options": [
                {
                  "id": "text",
                  "image": "text",
                  "title": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  }
                }
              ],
              "order_no": "0",
              "shipper_id": "text",
              "slug": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "property_ids": [
            "text"
          ],
          "proteins": 1,
          "rate": {
            "code": "text",
            "id": "text",
            "rate_amount": "0",
            "slug": "text",
            "title": "text"
          },
          "rate_id": "text",
          "rating": 1,
          "relation_type": "text",
          "seo_text": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "slug": "text",
          "string": "text",
          "tags": [
            {
              "color": "text",
              "icon": "text",
              "id": "text",
              "shipper_id": "text",
              "slug": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "to_time": "text",
          "type": "text",
          "variant_products": [
            {
              "active": true,
              "active_in_menu": true,
              "barcode": "text",
              "brand": "text",
              "carbohydrates": 1,
              "categories": [
                "text"
              ],
              "code": "text",
              "count": "0",
              "currency": "text",
              "description": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "energy": 1,
              "fats": 1,
              "favourites": [
                "text"
              ],
              "gallery": [
                "text"
              ],
              "id": "text",
              "iiko_id": "text",
              "image": "text",
              "in_price": 1,
              "is_divisible": true,
              "jowi_id": "text",
              "measurement": "text",
              "modifiers": {
                "group_modifiers": [
                  {
                    "active": true,
                    "add_to_price": true,
                    "category_name": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    },
                    "code": "text",
                    "created_at": "text",
                    "default_amount": 1,
                    "from_product_id": "text",
                    "id": "text",
                    "is_checkbox": true,
                    "is_compulsory": true,
                    "max_amount": 1,
                    "min_amount": 1,
                    "name": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    },
                    "order": "text",
                    "price": "text",
                    "shipper_id": "text",
                    "to_product_id": "text",
                    "type": "text",
                    "variants": [
                      {
                        "default_amount": 1,
                        "id": "text",
                        "image": "text",
                        "in_price": 1,
                        "max_amount": 1,
                        "min_amount": 1,
                        "out_price": 1,
                        "title": {
                          "en": "text",
                          "ru": "text",
                          "uz": "text"
                        }
                      }
                    ]
                  }
                ],
                "single_modifiers": [
                  {
                    "active": true,
                    "add_to_price": true,
                    "category_name": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    },
                    "code": "text",
                    "created_at": "text",
                    "default_amount": 1,
                    "from_product_id": "text",
                    "id": "text",
                    "is_checkbox": true,
                    "is_compulsory": true,
                    "max_amount": 1,
                    "min_amount": 1,
                    "name": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    },
                    "order": "text",
                    "price": "text",
                    "shipper_id": "text",
                    "to_product_id": "text",
                    "type": "text",
                    "variants": [
                      {
                        "default_amount": 1,
                        "id": "text",
                        "image": "text",
                        "in_price": 1,
                        "max_amount": 1,
                        "min_amount": 1,
                        "out_price": 1,
                        "title": {
                          "en": "text",
                          "ru": "text",
                          "uz": "text"
                        }
                      }
                    ]
                  }
                ]
              },
              "order": "0",
              "out_price": 1,
              "parent_id": "text",
              "poster_id": "text",
              "product_property": [
                {
                  "option_id": "text",
                  "property_id": "text",
                  "title": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  }
                }
              ],
              "product_type": "text",
              "property_ids": [
                "text"
              ],
              "proteins": 1,
              "rate_id": "text",
              "relation_type": "text",
              "tags": [
                "text"
              ],
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "type": "text",
              "weight": 1
            }
          ],
          "weight": 1
        }
      ],
      "from_time": "text",
      "gallery": [
        "text"
      ],
      "google_category": "text",
      "has_modifier": true,
      "id": "text",
      "iiko_id": "text",
      "ikpu": "text",
      "image": "text",
      "in_price": 1,
      "ingredients": [
        {
          "id": "text",
          "image": "text",
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          }
        }
      ],
      "is_divisible": true,
      "jowi_id": "text",
      "metatag_h1": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "metatag_title": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "off_always": true,
      "order": "0",
      "out_price": 1,
      "package_code": "text",
      "product_property": [
        {
          "option_id": "text",
          "property_id": "text",
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          }
        }
      ],
      "product_type": "text",
      "properties": [
        {
          "active": true,
          "created_at": "text",
          "description": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "id": "text",
          "options": [
            {
              "id": "text",
              "image": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "order_no": "0",
          "shipper_id": "text",
          "slug": "text",
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          }
        }
      ],
      "proteins": 1,
      "rate": {
        "code": "text",
        "id": "text",
        "rate_amount": "0",
        "slug": "text",
        "title": "text"
      },
      "rating": 1,
      "seo_text": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "slug": "text",
      "tags": [
        {
          "color": "text",
          "icon": "text",
          "id": "text",
          "shipper_id": "text",
          "slug": "text",
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          }
        }
      ],
      "title": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "to_time": "text",
      "type": "text",
      "variant_products": [
        {
          "active": true,
          "active_in_menu": true,
          "add_to_order": true,
          "allergens": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "barcode": "text",
          "brand_id": "text",
          "carbohydrates": 1,
          "categories": [
            "text"
          ],
          "categories_obj": [
            {
              "active": true,
              "child_categories": [
                {
                  "created_at": "text",
                  "description": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  },
                  "id": "text",
                  "image": "text",
                  "is_active": true,
                  "name": "text",
                  "order_no": "0",
                  "parent_id": "text",
                  "slug": "text",
                  "title": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  }
                }
              ],
              "description": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "id": "text",
              "image": "text",
              "metatag_h1": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "metatag_title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "order_no": "0",
              "parent_id": "text",
              "products": [
                {
                  "active": true,
                  "active_in_menu": true,
                  "brand_id": "text",
                  "carbohydrates": 1,
                  "categories": [
                    "text"
                  ],
                  "currency": "text",
                  "description": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  },
                  "discounts": [
                    {
                      "discount_price": 1,
                      "id": "text",
                      "name": {
                        "en": "text",
                        "ru": "text",
                        "uz": "text"
                      }
                    }
                  ],
                  "energy": 1,
                  "fats": 1,
                  "from_time": "text",
                  "gallery": [
                    "text"
                  ],
                  "has_modifier": true,
                  "id": "text",
                  "iiko_id": "text",
                  "image": "text",
                  "jowi_id": "text",
                  "off_always": true,
                  "out_price": 1,
                  "proteins": 1,
                  "rate_id": "text",
                  "rating": 1,
                  "seo_text": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  },
                  "slug": "text",
                  "string": "text",
                  "title": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  },
                  "to_time": "text",
                  "type": "text",
                  "weight": 1
                }
              ],
              "seo_text": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "slug": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "count": "0",
          "currency": "text",
          "default_quantity": 1,
          "description": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "discounts": [
            {
              "discount_price": 1,
              "id": "text",
              "name": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "energy": 1,
          "fats": 1,
          "favourites": [
            "text"
          ],
          "from_time": "text",
          "gallery": [
            "text"
          ],
          "google_category": "text",
          "has_modifier": true,
          "id": "text",
          "iiko_id": "text",
          "ikpu": "text",
          "image": "text",
          "in_price": 1,
          "ingredients": [
            {
              "id": "text",
              "image": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "is_divisible": true,
          "jowi_id": "text",
          "measurement": "text",
          "modifiers": {
            "group_modifiers": [
              {
                "active": true,
                "add_to_price": true,
                "category_name": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "code": "text",
                "created_at": "text",
                "default_amount": 1,
                "from_product_id": "text",
                "id": "text",
                "is_checkbox": true,
                "is_compulsory": true,
                "max_amount": 1,
                "min_amount": 1,
                "name": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "order": "text",
                "price": "text",
                "shipper_id": "text",
                "to_product_id": "text",
                "type": "text",
                "variants": [
                  {
                    "default_amount": 1,
                    "id": "text",
                    "image": "text",
                    "in_price": 1,
                    "max_amount": 1,
                    "min_amount": 1,
                    "out_price": 1,
                    "title": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    }
                  }
                ]
              }
            ],
            "single_modifiers": [
              {
                "active": true,
                "add_to_price": true,
                "category_name": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "code": "text",
                "created_at": "text",
                "default_amount": 1,
                "from_product_id": "text",
                "id": "text",
                "is_checkbox": true,
                "is_compulsory": true,
                "max_amount": 1,
                "min_amount": 1,
                "name": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "order": "text",
                "price": "text",
                "shipper_id": "text",
                "to_product_id": "text",
                "type": "text",
                "variants": [
                  {
                    "default_amount": 1,
                    "id": "text",
                    "image": "text",
                    "in_price": 1,
                    "max_amount": 1,
                    "min_amount": 1,
                    "out_price": 1,
                    "title": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    }
                  }
                ]
              }
            ]
          },
          "off_always": true,
          "order": "0",
          "out_price": 1,
          "package_code": "text",
          "parent_id": "text",
          "product_property": [
            {
              "option_id": "text",
              "property_id": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "product_type": "text",
          "properties_obj": [
            {
              "active": true,
              "created_at": "text",
              "description": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "id": "text",
              "options": [
                {
                  "id": "text",
                  "image": "text",
                  "title": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  }
                }
              ],
              "order_no": "0",
              "shipper_id": "text",
              "slug": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "property_ids": [
            "text"
          ],
          "proteins": 1,
          "rate": {
            "code": "text",
            "id": "text",
            "rate_amount": "0",
            "slug": "text",
            "title": "text"
          },
          "rate_id": "text",
          "rating": 1,
          "relation_type": "text",
          "seo_text": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "slug": "text",
          "string": "text",
          "tags": [
            {
              "color": "text",
              "icon": "text",
              "id": "text",
              "shipper_id": "text",
              "slug": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "to_time": "text",
          "type": "text",
          "variant_products": [
            {
              "active": true,
              "active_in_menu": true,
              "barcode": "text",
              "brand": "text",
              "carbohydrates": 1,
              "categories": [
                "text"
              ],
              "code": "text",
              "count": "0",
              "currency": "text",
              "description": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "energy": 1,
              "fats": 1,
              "favourites": [
                "text"
              ],
              "gallery": [
                "text"
              ],
              "id": "text",
              "iiko_id": "text",
              "image": "text",
              "in_price": 1,
              "is_divisible": true,
              "jowi_id": "text",
              "measurement": "text",
              "modifiers": {
                "group_modifiers": [
                  {
                    "active": true,
                    "add_to_price": true,
                    "category_name": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    },
                    "code": "text",
                    "created_at": "text",
                    "default_amount": 1,
                    "from_product_id": "text",
                    "id": "text",
                    "is_checkbox": true,
                    "is_compulsory": true,
                    "max_amount": 1,
                    "min_amount": 1,
                    "name": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    },
                    "order": "text",
                    "price": "text",
                    "shipper_id": "text",
                    "to_product_id": "text",
                    "type": "text",
                    "variants": [
                      {
                        "default_amount": 1,
                        "id": "text",
                        "image": "text",
                        "in_price": 1,
                        "max_amount": 1,
                        "min_amount": 1,
                        "out_price": 1,
                        "title": {
                          "en": "text",
                          "ru": "text",
                          "uz": "text"
                        }
                      }
                    ]
                  }
                ],
                "single_modifiers": [
                  {
                    "active": true,
                    "add_to_price": true,
                    "category_name": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    },
                    "code": "text",
                    "created_at": "text",
                    "default_amount": 1,
                    "from_product_id": "text",
                    "id": "text",
                    "is_checkbox": true,
                    "is_compulsory": true,
                    "max_amount": 1,
                    "min_amount": 1,
                    "name": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    },
                    "order": "text",
                    "price": "text",
                    "shipper_id": "text",
                    "to_product_id": "text",
                    "type": "text",
                    "variants": [
                      {
                        "default_amount": 1,
                        "id": "text",
                        "image": "text",
                        "in_price": 1,
                        "max_amount": 1,
                        "min_amount": 1,
                        "out_price": 1,
                        "title": {
                          "en": "text",
                          "ru": "text",
                          "uz": "text"
                        }
                      }
                    ]
                  }
                ]
              },
              "order": "0",
              "out_price": 1,
              "parent_id": "text",
              "poster_id": "text",
              "product_property": [
                {
                  "option_id": "text",
                  "property_id": "text",
                  "title": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  }
                }
              ],
              "product_type": "text",
              "property_ids": [
                "text"
              ],
              "proteins": 1,
              "rate_id": "text",
              "relation_type": "text",
              "tags": [
                "text"
              ],
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "type": "text",
              "weight": 1
            }
          ],
          "weight": 1
        }
      ],
      "weight": 1
    }
  ]
}

Get product favourites

get

API for getting a product favourites

Query parameters
product_idsstring[]Required

product_ids

branch_idstringOptional

branch_id

order_sourcestringOptional

order_source

only_deliverystringOptional

only_delivery

only_self_pickupstringOptional

only_self_pickup

client_idstringOptional

client_id

with_discountsstringOptional

with_discounts

menu_idstringOptional

menu_id

Header parameters
ShipperstringOptional

Shipper

Responses
200

OK

application/json
get/v2/product-favourites
GET /v2/product-favourites?product_ids=text HTTP/1.1
Accept: */*
{
  "favourites": [
    {
      "active": true,
      "brand": "text",
      "categories": [
        "text"
      ],
      "code": "text",
      "count": 1,
      "created_at": "text",
      "currency": "text",
      "description": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "favourites": [
        "text"
      ],
      "gallery": [
        "text"
      ],
      "has_modifier": true,
      "id": "text",
      "iiko_id": "text",
      "image": "text",
      "in_price": 1,
      "is_divisible": true,
      "jowi_id": "text",
      "measurement": "text",
      "order": 1,
      "out_price": 1,
      "parent_id": "text",
      "price_changers": [
        "text"
      ],
      "product_property": [
        {
          "option_id": "text",
          "property_id": "text",
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          }
        }
      ],
      "property_ids": [
        "text"
      ],
      "rate_id": "text",
      "relation_type": "text",
      "shipper_id": "text",
      "slug": "text",
      "tags": [
        "text"
      ],
      "title": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "type": "text"
    }
  ]
}

Get product

get

API for getting a product

Path parameters
product_idstringRequired

product_id

Query parameters
menu_idstringOptional

menu_id

branch_idstringOptional

branch_id

order_sourcestringOptional

order_source

only_deliverystringOptional

only_delivery

only_self_pickupstringOptional

only_self_pickup

client_idstringOptional

client_id

with_discountsstringOptional

with_discounts

Header parameters
ShipperstringOptional

Shipper

Responses
200

OK

application/json
activebooleanOptional
active_in_menubooleanOptional
add_to_orderbooleanOptional
barcodestringOptional
carbohydratesnumberOptional
codestringOptional
countstringOptionalExample: 0
currencystringOptional
default_quantityintegerOptional
energynumberOptional
fatsnumberOptional
from_timestringOptional
gallerystring[]Optional
google_categorystringOptional
has_modifierbooleanOptional
idstringOptional
iiko_idstringOptional
ikpustringOptional
imagestringOptional
in_pricenumberOptional
is_divisiblebooleanOptional
jowi_idstringOptional
off_alwaysbooleanOptional
orderstringOptionalExample: 0
out_pricenumberOptional
package_codestringOptional
product_typestringOptional
proteinsnumberOptional
ratingnumberOptional
slugstringOptional
to_timestringOptional
typestringOptional

VariantProducts []GetVariantProductModel json:"variant_products"

weightnumberOptional
get/v2/product/{product_id}
GET /v2/product/{product_id} HTTP/1.1
Accept: */*
{
  "active": true,
  "active_in_menu": true,
  "add_to_order": true,
  "allergens": {
    "en": "text",
    "ru": "text",
    "uz": "text"
  },
  "barcode": "text",
  "brand": {
    "description": {
      "en": "text",
      "ru": "text",
      "uz": "text"
    },
    "id": "text",
    "image": "text",
    "is_active": true,
    "order_no": "0",
    "parent_id": "text",
    "slug": "text",
    "title": {
      "en": "text",
      "ru": "text",
      "uz": "text"
    }
  },
  "carbohydrates": 1,
  "categories": [
    {
      "active": true,
      "child_categories": [
        {
          "created_at": "text",
          "description": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "id": "text",
          "image": "text",
          "is_active": true,
          "name": "text",
          "order_no": "0",
          "parent_id": "text",
          "slug": "text",
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          }
        }
      ],
      "description": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "id": "text",
      "image": "text",
      "metatag_h1": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "metatag_title": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "order_no": "0",
      "parent_id": "text",
      "products": [
        {
          "active": true,
          "active_in_menu": true,
          "brand_id": "text",
          "carbohydrates": 1,
          "categories": [
            "text"
          ],
          "currency": "text",
          "description": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "discounts": [
            {
              "discount_price": 1,
              "id": "text",
              "name": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "energy": 1,
          "fats": 1,
          "from_time": "text",
          "gallery": [
            "text"
          ],
          "has_modifier": true,
          "id": "text",
          "iiko_id": "text",
          "image": "text",
          "jowi_id": "text",
          "off_always": true,
          "out_price": 1,
          "proteins": 1,
          "rate_id": "text",
          "rating": 1,
          "seo_text": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "slug": "text",
          "string": "text",
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "to_time": "text",
          "type": "text",
          "weight": 1
        }
      ],
      "seo_text": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "slug": "text",
      "title": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      }
    }
  ],
  "code": "text",
  "count": "0",
  "currency": "text",
  "default_quantity": 1,
  "description": {
    "en": "text",
    "ru": "text",
    "uz": "text"
  },
  "energy": 1,
  "fats": 1,
  "favorites": [
    {
      "active": true,
      "active_in_menu": true,
      "add_to_order": true,
      "allergens": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "barcode": "text",
      "brand_id": "text",
      "carbohydrates": 1,
      "categories": [
        "text"
      ],
      "categories_obj": [
        {
          "active": true,
          "child_categories": [
            {
              "created_at": "text",
              "description": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "id": "text",
              "image": "text",
              "is_active": true,
              "name": "text",
              "order_no": "0",
              "parent_id": "text",
              "slug": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "description": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "id": "text",
          "image": "text",
          "metatag_h1": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "metatag_title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "order_no": "0",
          "parent_id": "text",
          "products": [
            {
              "active": true,
              "active_in_menu": true,
              "brand_id": "text",
              "carbohydrates": 1,
              "categories": [
                "text"
              ],
              "currency": "text",
              "description": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "discounts": [
                {
                  "discount_price": 1,
                  "id": "text",
                  "name": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  }
                }
              ],
              "energy": 1,
              "fats": 1,
              "from_time": "text",
              "gallery": [
                "text"
              ],
              "has_modifier": true,
              "id": "text",
              "iiko_id": "text",
              "image": "text",
              "jowi_id": "text",
              "off_always": true,
              "out_price": 1,
              "proteins": 1,
              "rate_id": "text",
              "rating": 1,
              "seo_text": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "slug": "text",
              "string": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "to_time": "text",
              "type": "text",
              "weight": 1
            }
          ],
          "seo_text": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "slug": "text",
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          }
        }
      ],
      "count": "0",
      "currency": "text",
      "default_quantity": 1,
      "description": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "discounts": [
        {
          "discount_price": 1,
          "id": "text",
          "name": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          }
        }
      ],
      "energy": 1,
      "fats": 1,
      "favourites": [
        "text"
      ],
      "from_time": "text",
      "gallery": [
        "text"
      ],
      "google_category": "text",
      "has_modifier": true,
      "id": "text",
      "iiko_id": "text",
      "ikpu": "text",
      "image": "text",
      "in_price": 1,
      "ingredients": [
        {
          "id": "text",
          "image": "text",
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          }
        }
      ],
      "is_divisible": true,
      "jowi_id": "text",
      "measurement": "text",
      "modifiers": {
        "group_modifiers": [
          {
            "active": true,
            "add_to_price": true,
            "category_name": {
              "en": "text",
              "ru": "text",
              "uz": "text"
            },
            "code": "text",
            "created_at": "text",
            "default_amount": 1,
            "from_product_id": "text",
            "id": "text",
            "is_checkbox": true,
            "is_compulsory": true,
            "max_amount": 1,
            "min_amount": 1,
            "name": {
              "en": "text",
              "ru": "text",
              "uz": "text"
            },
            "order": "text",
            "price": "text",
            "shipper_id": "text",
            "to_product_id": "text",
            "type": "text",
            "variants": [
              {
                "default_amount": 1,
                "id": "text",
                "image": "text",
                "in_price": 1,
                "max_amount": 1,
                "min_amount": 1,
                "out_price": 1,
                "title": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                }
              }
            ]
          }
        ],
        "single_modifiers": [
          {
            "active": true,
            "add_to_price": true,
            "category_name": {
              "en": "text",
              "ru": "text",
              "uz": "text"
            },
            "code": "text",
            "created_at": "text",
            "default_amount": 1,
            "from_product_id": "text",
            "id": "text",
            "is_checkbox": true,
            "is_compulsory": true,
            "max_amount": 1,
            "min_amount": 1,
            "name": {
              "en": "text",
              "ru": "text",
              "uz": "text"
            },
            "order": "text",
            "price": "text",
            "shipper_id": "text",
            "to_product_id": "text",
            "type": "text",
            "variants": [
              {
                "default_amount": 1,
                "id": "text",
                "image": "text",
                "in_price": 1,
                "max_amount": 1,
                "min_amount": 1,
                "out_price": 1,
                "title": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                }
              }
            ]
          }
        ]
      },
      "off_always": true,
      "order": "0",
      "out_price": 1,
      "package_code": "text",
      "parent_id": "text",
      "product_property": [
        {
          "option_id": "text",
          "property_id": "text",
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          }
        }
      ],
      "product_type": "text",
      "properties_obj": [
        {
          "active": true,
          "created_at": "text",
          "description": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "id": "text",
          "options": [
            {
              "id": "text",
              "image": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "order_no": "0",
          "shipper_id": "text",
          "slug": "text",
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          }
        }
      ],
      "property_ids": [
        "text"
      ],
      "proteins": 1,
      "rate": {
        "code": "text",
        "id": "text",
        "rate_amount": "0",
        "slug": "text",
        "title": "text"
      },
      "rate_id": "text",
      "rating": 1,
      "relation_type": "text",
      "seo_text": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "slug": "text",
      "string": "text",
      "tags": [
        {
          "color": "text",
          "icon": "text",
          "id": "text",
          "shipper_id": "text",
          "slug": "text",
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          }
        }
      ],
      "title": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "to_time": "text",
      "type": "text",
      "variant_products": [
        {
          "active": true,
          "active_in_menu": true,
          "barcode": "text",
          "brand": "text",
          "carbohydrates": 1,
          "categories": [
            "text"
          ],
          "code": "text",
          "count": "0",
          "currency": "text",
          "description": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "energy": 1,
          "fats": 1,
          "favourites": [
            "text"
          ],
          "gallery": [
            "text"
          ],
          "id": "text",
          "iiko_id": "text",
          "image": "text",
          "in_price": 1,
          "is_divisible": true,
          "jowi_id": "text",
          "measurement": "text",
          "modifiers": {
            "group_modifiers": [
              {
                "active": true,
                "add_to_price": true,
                "category_name": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "code": "text",
                "created_at": "text",
                "default_amount": 1,
                "from_product_id": "text",
                "id": "text",
                "is_checkbox": true,
                "is_compulsory": true,
                "max_amount": 1,
                "min_amount": 1,
                "name": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "order": "text",
                "price": "text",
                "shipper_id": "text",
                "to_product_id": "text",
                "type": "text",
                "variants": [
                  {
                    "default_amount": 1,
                    "id": "text",
                    "image": "text",
                    "in_price": 1,
                    "max_amount": 1,
                    "min_amount": 1,
                    "out_price": 1,
                    "title": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    }
                  }
                ]
              }
            ],
            "single_modifiers": [
              {
                "active": true,
                "add_to_price": true,
                "category_name": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "code": "text",
                "created_at": "text",
                "default_amount": 1,
                "from_product_id": "text",
                "id": "text",
                "is_checkbox": true,
                "is_compulsory": true,
                "max_amount": 1,
                "min_amount": 1,
                "name": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "order": "text",
                "price": "text",
                "shipper_id": "text",
                "to_product_id": "text",
                "type": "text",
                "variants": [
                  {
                    "default_amount": 1,
                    "id": "text",
                    "image": "text",
                    "in_price": 1,
                    "max_amount": 1,
                    "min_amount": 1,
                    "out_price": 1,
                    "title": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    }
                  }
                ]
              }
            ]
          },
          "order": "0",
          "out_price": 1,
          "parent_id": "text",
          "poster_id": "text",
          "product_property": [
            {
              "option_id": "text",
              "property_id": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "product_type": "text",
          "property_ids": [
            "text"
          ],
          "proteins": 1,
          "rate_id": "text",
          "relation_type": "text",
          "tags": [
            "text"
          ],
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "type": "text",
          "weight": 1
        }
      ],
      "weight": 1
    }
  ],
  "from_time": "text",
  "gallery": [
    "text"
  ],
  "google_category": "text",
  "has_modifier": true,
  "id": "text",
  "iiko_id": "text",
  "ikpu": "text",
  "image": "text",
  "in_price": 1,
  "ingredients": [
    {
      "id": "text",
      "image": "text",
      "title": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      }
    }
  ],
  "is_divisible": true,
  "jowi_id": "text",
  "metatag_h1": {
    "en": "text",
    "ru": "text",
    "uz": "text"
  },
  "metatag_title": {
    "en": "text",
    "ru": "text",
    "uz": "text"
  },
  "off_always": true,
  "order": "0",
  "out_price": 1,
  "package_code": "text",
  "product_property": [
    {
      "option_id": "text",
      "property_id": "text",
      "title": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      }
    }
  ],
  "product_type": "text",
  "properties": [
    {
      "active": true,
      "created_at": "text",
      "description": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "id": "text",
      "options": [
        {
          "id": "text",
          "image": "text",
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          }
        }
      ],
      "order_no": "0",
      "shipper_id": "text",
      "slug": "text",
      "title": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      }
    }
  ],
  "proteins": 1,
  "rate": {
    "code": "text",
    "id": "text",
    "rate_amount": "0",
    "slug": "text",
    "title": "text"
  },
  "rating": 1,
  "seo_text": {
    "en": "text",
    "ru": "text",
    "uz": "text"
  },
  "slug": "text",
  "tags": [
    {
      "color": "text",
      "icon": "text",
      "id": "text",
      "shipper_id": "text",
      "slug": "text",
      "title": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      }
    }
  ],
  "title": {
    "en": "text",
    "ru": "text",
    "uz": "text"
  },
  "to_time": "text",
  "type": "text",
  "variant_products": [
    {
      "active": true,
      "active_in_menu": true,
      "add_to_order": true,
      "allergens": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "barcode": "text",
      "brand_id": "text",
      "carbohydrates": 1,
      "categories": [
        "text"
      ],
      "categories_obj": [
        {
          "active": true,
          "child_categories": [
            {
              "created_at": "text",
              "description": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "id": "text",
              "image": "text",
              "is_active": true,
              "name": "text",
              "order_no": "0",
              "parent_id": "text",
              "slug": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "description": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "id": "text",
          "image": "text",
          "metatag_h1": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "metatag_title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "order_no": "0",
          "parent_id": "text",
          "products": [
            {
              "active": true,
              "active_in_menu": true,
              "brand_id": "text",
              "carbohydrates": 1,
              "categories": [
                "text"
              ],
              "currency": "text",
              "description": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "discounts": [
                {
                  "discount_price": 1,
                  "id": "text",
                  "name": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  }
                }
              ],
              "energy": 1,
              "fats": 1,
              "from_time": "text",
              "gallery": [
                "text"
              ],
              "has_modifier": true,
              "id": "text",
              "iiko_id": "text",
              "image": "text",
              "jowi_id": "text",
              "off_always": true,
              "out_price": 1,
              "proteins": 1,
              "rate_id": "text",
              "rating": 1,
              "seo_text": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "slug": "text",
              "string": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "to_time": "text",
              "type": "text",
              "weight": 1
            }
          ],
          "seo_text": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "slug": "text",
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          }
        }
      ],
      "count": "0",
      "currency": "text",
      "default_quantity": 1,
      "description": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "discounts": [
        {
          "discount_price": 1,
          "id": "text",
          "name": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          }
        }
      ],
      "energy": 1,
      "fats": 1,
      "favourites": [
        "text"
      ],
      "from_time": "text",
      "gallery": [
        "text"
      ],
      "google_category": "text",
      "has_modifier": true,
      "id": "text",
      "iiko_id": "text",
      "ikpu": "text",
      "image": "text",
      "in_price": 1,
      "ingredients": [
        {
          "id": "text",
          "image": "text",
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          }
        }
      ],
      "is_divisible": true,
      "jowi_id": "text",
      "measurement": "text",
      "modifiers": {
        "group_modifiers": [
          {
            "active": true,
            "add_to_price": true,
            "category_name": {
              "en": "text",
              "ru": "text",
              "uz": "text"
            },
            "code": "text",
            "created_at": "text",
            "default_amount": 1,
            "from_product_id": "text",
            "id": "text",
            "is_checkbox": true,
            "is_compulsory": true,
            "max_amount": 1,
            "min_amount": 1,
            "name": {
              "en": "text",
              "ru": "text",
              "uz": "text"
            },
            "order": "text",
            "price": "text",
            "shipper_id": "text",
            "to_product_id": "text",
            "type": "text",
            "variants": [
              {
                "default_amount": 1,
                "id": "text",
                "image": "text",
                "in_price": 1,
                "max_amount": 1,
                "min_amount": 1,
                "out_price": 1,
                "title": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                }
              }
            ]
          }
        ],
        "single_modifiers": [
          {
            "active": true,
            "add_to_price": true,
            "category_name": {
              "en": "text",
              "ru": "text",
              "uz": "text"
            },
            "code": "text",
            "created_at": "text",
            "default_amount": 1,
            "from_product_id": "text",
            "id": "text",
            "is_checkbox": true,
            "is_compulsory": true,
            "max_amount": 1,
            "min_amount": 1,
            "name": {
              "en": "text",
              "ru": "text",
              "uz": "text"
            },
            "order": "text",
            "price": "text",
            "shipper_id": "text",
            "to_product_id": "text",
            "type": "text",
            "variants": [
              {
                "default_amount": 1,
                "id": "text",
                "image": "text",
                "in_price": 1,
                "max_amount": 1,
                "min_amount": 1,
                "out_price": 1,
                "title": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                }
              }
            ]
          }
        ]
      },
      "off_always": true,
      "order": "0",
      "out_price": 1,
      "package_code": "text",
      "parent_id": "text",
      "product_property": [
        {
          "option_id": "text",
          "property_id": "text",
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          }
        }
      ],
      "product_type": "text",
      "properties_obj": [
        {
          "active": true,
          "created_at": "text",
          "description": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "id": "text",
          "options": [
            {
              "id": "text",
              "image": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "order_no": "0",
          "shipper_id": "text",
          "slug": "text",
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          }
        }
      ],
      "property_ids": [
        "text"
      ],
      "proteins": 1,
      "rate": {
        "code": "text",
        "id": "text",
        "rate_amount": "0",
        "slug": "text",
        "title": "text"
      },
      "rate_id": "text",
      "rating": 1,
      "relation_type": "text",
      "seo_text": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "slug": "text",
      "string": "text",
      "tags": [
        {
          "color": "text",
          "icon": "text",
          "id": "text",
          "shipper_id": "text",
          "slug": "text",
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          }
        }
      ],
      "title": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "to_time": "text",
      "type": "text",
      "variant_products": [
        {
          "active": true,
          "active_in_menu": true,
          "barcode": "text",
          "brand": "text",
          "carbohydrates": 1,
          "categories": [
            "text"
          ],
          "code": "text",
          "count": "0",
          "currency": "text",
          "description": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "energy": 1,
          "fats": 1,
          "favourites": [
            "text"
          ],
          "gallery": [
            "text"
          ],
          "id": "text",
          "iiko_id": "text",
          "image": "text",
          "in_price": 1,
          "is_divisible": true,
          "jowi_id": "text",
          "measurement": "text",
          "modifiers": {
            "group_modifiers": [
              {
                "active": true,
                "add_to_price": true,
                "category_name": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "code": "text",
                "created_at": "text",
                "default_amount": 1,
                "from_product_id": "text",
                "id": "text",
                "is_checkbox": true,
                "is_compulsory": true,
                "max_amount": 1,
                "min_amount": 1,
                "name": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "order": "text",
                "price": "text",
                "shipper_id": "text",
                "to_product_id": "text",
                "type": "text",
                "variants": [
                  {
                    "default_amount": 1,
                    "id": "text",
                    "image": "text",
                    "in_price": 1,
                    "max_amount": 1,
                    "min_amount": 1,
                    "out_price": 1,
                    "title": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    }
                  }
                ]
              }
            ],
            "single_modifiers": [
              {
                "active": true,
                "add_to_price": true,
                "category_name": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "code": "text",
                "created_at": "text",
                "default_amount": 1,
                "from_product_id": "text",
                "id": "text",
                "is_checkbox": true,
                "is_compulsory": true,
                "max_amount": 1,
                "min_amount": 1,
                "name": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "order": "text",
                "price": "text",
                "shipper_id": "text",
                "to_product_id": "text",
                "type": "text",
                "variants": [
                  {
                    "default_amount": 1,
                    "id": "text",
                    "image": "text",
                    "in_price": 1,
                    "max_amount": 1,
                    "min_amount": 1,
                    "out_price": 1,
                    "title": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    }
                  }
                ]
              }
            ]
          },
          "order": "0",
          "out_price": 1,
          "parent_id": "text",
          "poster_id": "text",
          "product_property": [
            {
              "option_id": "text",
              "property_id": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "product_type": "text",
          "property_ids": [
            "text"
          ],
          "proteins": 1,
          "rate_id": "text",
          "relation_type": "text",
          "tags": [
            "text"
          ],
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "type": "text",
          "weight": 1
        }
      ],
      "weight": 1
    }
  ],
  "weight": 1
}

Get All product variants

get

API for getting all product variants

Path parameters
product_idstringRequired

product_id

Query parameters
pageintegerOptional

page

limitintegerOptional

limit

searchstringOptional

search

Header parameters
ShipperstringRequired

Shipper

Responses
200

OK

application/json
countstringOptionalExample: 0
get/v2/product/{product_id}/variants
GET /v2/product/{product_id}/variants HTTP/1.1
Shipper: text
Accept: */*
{
  "count": "0",
  "products": [
    {
      "active": true,
      "active_in_menu": true,
      "add_to_order": true,
      "allergens": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "barcode": "text",
      "brand": {
        "description": {
          "en": "text",
          "ru": "text",
          "uz": "text"
        },
        "id": "text",
        "image": "text",
        "is_active": true,
        "order_no": "0",
        "parent_id": "text",
        "slug": "text",
        "title": {
          "en": "text",
          "ru": "text",
          "uz": "text"
        }
      },
      "carbohydrates": 1,
      "categories": [
        {
          "active": true,
          "child_categories": [
            {
              "created_at": "text",
              "description": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "id": "text",
              "image": "text",
              "is_active": true,
              "name": "text",
              "order_no": "0",
              "parent_id": "text",
              "slug": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "description": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "id": "text",
          "image": "text",
          "metatag_h1": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "metatag_title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "order_no": "0",
          "parent_id": "text",
          "products": [
            {
              "active": true,
              "active_in_menu": true,
              "brand_id": "text",
              "carbohydrates": 1,
              "categories": [
                "text"
              ],
              "currency": "text",
              "description": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "discounts": [
                {
                  "discount_price": 1,
                  "id": "text",
                  "name": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  }
                }
              ],
              "energy": 1,
              "fats": 1,
              "from_time": "text",
              "gallery": [
                "text"
              ],
              "has_modifier": true,
              "id": "text",
              "iiko_id": "text",
              "image": "text",
              "jowi_id": "text",
              "off_always": true,
              "out_price": 1,
              "proteins": 1,
              "rate_id": "text",
              "rating": 1,
              "seo_text": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "slug": "text",
              "string": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "to_time": "text",
              "type": "text",
              "weight": 1
            }
          ],
          "seo_text": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "slug": "text",
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          }
        }
      ],
      "code": "text",
      "count": "0",
      "currency": "text",
      "default_quantity": 1,
      "description": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "energy": 1,
      "fats": 1,
      "favorites": [
        {
          "active": true,
          "active_in_menu": true,
          "add_to_order": true,
          "allergens": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "barcode": "text",
          "brand_id": "text",
          "carbohydrates": 1,
          "categories": [
            "text"
          ],
          "categories_obj": [
            {
              "active": true,
              "child_categories": [
                {
                  "created_at": "text",
                  "description": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  },
                  "id": "text",
                  "image": "text",
                  "is_active": true,
                  "name": "text",
                  "order_no": "0",
                  "parent_id": "text",
                  "slug": "text",
                  "title": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  }
                }
              ],
              "description": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "id": "text",
              "image": "text",
              "metatag_h1": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "metatag_title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "order_no": "0",
              "parent_id": "text",
              "products": [
                {
                  "active": true,
                  "active_in_menu": true,
                  "brand_id": "text",
                  "carbohydrates": 1,
                  "categories": [
                    "text"
                  ],
                  "currency": "text",
                  "description": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  },
                  "discounts": [
                    {
                      "discount_price": 1,
                      "id": "text",
                      "name": {
                        "en": "text",
                        "ru": "text",
                        "uz": "text"
                      }
                    }
                  ],
                  "energy": 1,
                  "fats": 1,
                  "from_time": "text",
                  "gallery": [
                    "text"
                  ],
                  "has_modifier": true,
                  "id": "text",
                  "iiko_id": "text",
                  "image": "text",
                  "jowi_id": "text",
                  "off_always": true,
                  "out_price": 1,
                  "proteins": 1,
                  "rate_id": "text",
                  "rating": 1,
                  "seo_text": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  },
                  "slug": "text",
                  "string": "text",
                  "title": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  },
                  "to_time": "text",
                  "type": "text",
                  "weight": 1
                }
              ],
              "seo_text": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "slug": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "count": "0",
          "currency": "text",
          "default_quantity": 1,
          "description": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "discounts": [
            {
              "discount_price": 1,
              "id": "text",
              "name": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "energy": 1,
          "fats": 1,
          "favourites": [
            "text"
          ],
          "from_time": "text",
          "gallery": [
            "text"
          ],
          "google_category": "text",
          "has_modifier": true,
          "id": "text",
          "iiko_id": "text",
          "ikpu": "text",
          "image": "text",
          "in_price": 1,
          "ingredients": [
            {
              "id": "text",
              "image": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "is_divisible": true,
          "jowi_id": "text",
          "measurement": "text",
          "modifiers": {
            "group_modifiers": [
              {
                "active": true,
                "add_to_price": true,
                "category_name": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "code": "text",
                "created_at": "text",
                "default_amount": 1,
                "from_product_id": "text",
                "id": "text",
                "is_checkbox": true,
                "is_compulsory": true,
                "max_amount": 1,
                "min_amount": 1,
                "name": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "order": "text",
                "price": "text",
                "shipper_id": "text",
                "to_product_id": "text",
                "type": "text",
                "variants": [
                  {
                    "default_amount": 1,
                    "id": "text",
                    "image": "text",
                    "in_price": 1,
                    "max_amount": 1,
                    "min_amount": 1,
                    "out_price": 1,
                    "title": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    }
                  }
                ]
              }
            ],
            "single_modifiers": [
              {
                "active": true,
                "add_to_price": true,
                "category_name": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "code": "text",
                "created_at": "text",
                "default_amount": 1,
                "from_product_id": "text",
                "id": "text",
                "is_checkbox": true,
                "is_compulsory": true,
                "max_amount": 1,
                "min_amount": 1,
                "name": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "order": "text",
                "price": "text",
                "shipper_id": "text",
                "to_product_id": "text",
                "type": "text",
                "variants": [
                  {
                    "default_amount": 1,
                    "id": "text",
                    "image": "text",
                    "in_price": 1,
                    "max_amount": 1,
                    "min_amount": 1,
                    "out_price": 1,
                    "title": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    }
                  }
                ]
              }
            ]
          },
          "off_always": true,
          "order": "0",
          "out_price": 1,
          "package_code": "text",
          "parent_id": "text",
          "product_property": [
            {
              "option_id": "text",
              "property_id": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "product_type": "text",
          "properties_obj": [
            {
              "active": true,
              "created_at": "text",
              "description": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "id": "text",
              "options": [
                {
                  "id": "text",
                  "image": "text",
                  "title": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  }
                }
              ],
              "order_no": "0",
              "shipper_id": "text",
              "slug": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "property_ids": [
            "text"
          ],
          "proteins": 1,
          "rate": {
            "code": "text",
            "id": "text",
            "rate_amount": "0",
            "slug": "text",
            "title": "text"
          },
          "rate_id": "text",
          "rating": 1,
          "relation_type": "text",
          "seo_text": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "slug": "text",
          "string": "text",
          "tags": [
            {
              "color": "text",
              "icon": "text",
              "id": "text",
              "shipper_id": "text",
              "slug": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "to_time": "text",
          "type": "text",
          "variant_products": [
            {
              "active": true,
              "active_in_menu": true,
              "barcode": "text",
              "brand": "text",
              "carbohydrates": 1,
              "categories": [
                "text"
              ],
              "code": "text",
              "count": "0",
              "currency": "text",
              "description": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "energy": 1,
              "fats": 1,
              "favourites": [
                "text"
              ],
              "gallery": [
                "text"
              ],
              "id": "text",
              "iiko_id": "text",
              "image": "text",
              "in_price": 1,
              "is_divisible": true,
              "jowi_id": "text",
              "measurement": "text",
              "modifiers": {
                "group_modifiers": [
                  {
                    "active": true,
                    "add_to_price": true,
                    "category_name": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    },
                    "code": "text",
                    "created_at": "text",
                    "default_amount": 1,
                    "from_product_id": "text",
                    "id": "text",
                    "is_checkbox": true,
                    "is_compulsory": true,
                    "max_amount": 1,
                    "min_amount": 1,
                    "name": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    },
                    "order": "text",
                    "price": "text",
                    "shipper_id": "text",
                    "to_product_id": "text",
                    "type": "text",
                    "variants": [
                      {
                        "default_amount": 1,
                        "id": "text",
                        "image": "text",
                        "in_price": 1,
                        "max_amount": 1,
                        "min_amount": 1,
                        "out_price": 1,
                        "title": {
                          "en": "text",
                          "ru": "text",
                          "uz": "text"
                        }
                      }
                    ]
                  }
                ],
                "single_modifiers": [
                  {
                    "active": true,
                    "add_to_price": true,
                    "category_name": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    },
                    "code": "text",
                    "created_at": "text",
                    "default_amount": 1,
                    "from_product_id": "text",
                    "id": "text",
                    "is_checkbox": true,
                    "is_compulsory": true,
                    "max_amount": 1,
                    "min_amount": 1,
                    "name": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    },
                    "order": "text",
                    "price": "text",
                    "shipper_id": "text",
                    "to_product_id": "text",
                    "type": "text",
                    "variants": [
                      {
                        "default_amount": 1,
                        "id": "text",
                        "image": "text",
                        "in_price": 1,
                        "max_amount": 1,
                        "min_amount": 1,
                        "out_price": 1,
                        "title": {
                          "en": "text",
                          "ru": "text",
                          "uz": "text"
                        }
                      }
                    ]
                  }
                ]
              },
              "order": "0",
              "out_price": 1,
              "parent_id": "text",
              "poster_id": "text",
              "product_property": [
                {
                  "option_id": "text",
                  "property_id": "text",
                  "title": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  }
                }
              ],
              "product_type": "text",
              "property_ids": [
                "text"
              ],
              "proteins": 1,
              "rate_id": "text",
              "relation_type": "text",
              "tags": [
                "text"
              ],
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "type": "text",
              "weight": 1
            }
          ],
          "weight": 1
        }
      ],
      "from_time": "text",
      "gallery": [
        "text"
      ],
      "google_category": "text",
      "has_modifier": true,
      "id": "text",
      "iiko_id": "text",
      "ikpu": "text",
      "image": "text",
      "in_price": 1,
      "ingredients": [
        {
          "id": "text",
          "image": "text",
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          }
        }
      ],
      "is_divisible": true,
      "jowi_id": "text",
      "metatag_h1": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "metatag_title": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "off_always": true,
      "order": "0",
      "out_price": 1,
      "package_code": "text",
      "product_property": [
        {
          "option_id": "text",
          "property_id": "text",
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          }
        }
      ],
      "product_type": "text",
      "properties": [
        {
          "active": true,
          "created_at": "text",
          "description": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "id": "text",
          "options": [
            {
              "id": "text",
              "image": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "order_no": "0",
          "shipper_id": "text",
          "slug": "text",
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          }
        }
      ],
      "proteins": 1,
      "rate": {
        "code": "text",
        "id": "text",
        "rate_amount": "0",
        "slug": "text",
        "title": "text"
      },
      "rating": 1,
      "seo_text": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "slug": "text",
      "tags": [
        {
          "color": "text",
          "icon": "text",
          "id": "text",
          "shipper_id": "text",
          "slug": "text",
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          }
        }
      ],
      "title": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "to_time": "text",
      "type": "text",
      "variant_products": [
        {
          "active": true,
          "active_in_menu": true,
          "add_to_order": true,
          "allergens": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "barcode": "text",
          "brand_id": "text",
          "carbohydrates": 1,
          "categories": [
            "text"
          ],
          "categories_obj": [
            {
              "active": true,
              "child_categories": [
                {
                  "created_at": "text",
                  "description": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  },
                  "id": "text",
                  "image": "text",
                  "is_active": true,
                  "name": "text",
                  "order_no": "0",
                  "parent_id": "text",
                  "slug": "text",
                  "title": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  }
                }
              ],
              "description": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "id": "text",
              "image": "text",
              "metatag_h1": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "metatag_title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "order_no": "0",
              "parent_id": "text",
              "products": [
                {
                  "active": true,
                  "active_in_menu": true,
                  "brand_id": "text",
                  "carbohydrates": 1,
                  "categories": [
                    "text"
                  ],
                  "currency": "text",
                  "description": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  },
                  "discounts": [
                    {
                      "discount_price": 1,
                      "id": "text",
                      "name": {
                        "en": "text",
                        "ru": "text",
                        "uz": "text"
                      }
                    }
                  ],
                  "energy": 1,
                  "fats": 1,
                  "from_time": "text",
                  "gallery": [
                    "text"
                  ],
                  "has_modifier": true,
                  "id": "text",
                  "iiko_id": "text",
                  "image": "text",
                  "jowi_id": "text",
                  "off_always": true,
                  "out_price": 1,
                  "proteins": 1,
                  "rate_id": "text",
                  "rating": 1,
                  "seo_text": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  },
                  "slug": "text",
                  "string": "text",
                  "title": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  },
                  "to_time": "text",
                  "type": "text",
                  "weight": 1
                }
              ],
              "seo_text": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "slug": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "count": "0",
          "currency": "text",
          "default_quantity": 1,
          "description": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "discounts": [
            {
              "discount_price": 1,
              "id": "text",
              "name": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "energy": 1,
          "fats": 1,
          "favourites": [
            "text"
          ],
          "from_time": "text",
          "gallery": [
            "text"
          ],
          "google_category": "text",
          "has_modifier": true,
          "id": "text",
          "iiko_id": "text",
          "ikpu": "text",
          "image": "text",
          "in_price": 1,
          "ingredients": [
            {
              "id": "text",
              "image": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "is_divisible": true,
          "jowi_id": "text",
          "measurement": "text",
          "modifiers": {
            "group_modifiers": [
              {
                "active": true,
                "add_to_price": true,
                "category_name": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "code": "text",
                "created_at": "text",
                "default_amount": 1,
                "from_product_id": "text",
                "id": "text",
                "is_checkbox": true,
                "is_compulsory": true,
                "max_amount": 1,
                "min_amount": 1,
                "name": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "order": "text",
                "price": "text",
                "shipper_id": "text",
                "to_product_id": "text",
                "type": "text",
                "variants": [
                  {
                    "default_amount": 1,
                    "id": "text",
                    "image": "text",
                    "in_price": 1,
                    "max_amount": 1,
                    "min_amount": 1,
                    "out_price": 1,
                    "title": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    }
                  }
                ]
              }
            ],
            "single_modifiers": [
              {
                "active": true,
                "add_to_price": true,
                "category_name": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "code": "text",
                "created_at": "text",
                "default_amount": 1,
                "from_product_id": "text",
                "id": "text",
                "is_checkbox": true,
                "is_compulsory": true,
                "max_amount": 1,
                "min_amount": 1,
                "name": {
                  "en": "text",
                  "ru": "text",
                  "uz": "text"
                },
                "order": "text",
                "price": "text",
                "shipper_id": "text",
                "to_product_id": "text",
                "type": "text",
                "variants": [
                  {
                    "default_amount": 1,
                    "id": "text",
                    "image": "text",
                    "in_price": 1,
                    "max_amount": 1,
                    "min_amount": 1,
                    "out_price": 1,
                    "title": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    }
                  }
                ]
              }
            ]
          },
          "off_always": true,
          "order": "0",
          "out_price": 1,
          "package_code": "text",
          "parent_id": "text",
          "product_property": [
            {
              "option_id": "text",
              "property_id": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "product_type": "text",
          "properties_obj": [
            {
              "active": true,
              "created_at": "text",
              "description": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "id": "text",
              "options": [
                {
                  "id": "text",
                  "image": "text",
                  "title": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  }
                }
              ],
              "order_no": "0",
              "shipper_id": "text",
              "slug": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "property_ids": [
            "text"
          ],
          "proteins": 1,
          "rate": {
            "code": "text",
            "id": "text",
            "rate_amount": "0",
            "slug": "text",
            "title": "text"
          },
          "rate_id": "text",
          "rating": 1,
          "relation_type": "text",
          "seo_text": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "slug": "text",
          "string": "text",
          "tags": [
            {
              "color": "text",
              "icon": "text",
              "id": "text",
              "shipper_id": "text",
              "slug": "text",
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              }
            }
          ],
          "title": {
            "en": "text",
            "ru": "text",
            "uz": "text"
          },
          "to_time": "text",
          "type": "text",
          "variant_products": [
            {
              "active": true,
              "active_in_menu": true,
              "barcode": "text",
              "brand": "text",
              "carbohydrates": 1,
              "categories": [
                "text"
              ],
              "code": "text",
              "count": "0",
              "currency": "text",
              "description": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "energy": 1,
              "fats": 1,
              "favourites": [
                "text"
              ],
              "gallery": [
                "text"
              ],
              "id": "text",
              "iiko_id": "text",
              "image": "text",
              "in_price": 1,
              "is_divisible": true,
              "jowi_id": "text",
              "measurement": "text",
              "modifiers": {
                "group_modifiers": [
                  {
                    "active": true,
                    "add_to_price": true,
                    "category_name": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    },
                    "code": "text",
                    "created_at": "text",
                    "default_amount": 1,
                    "from_product_id": "text",
                    "id": "text",
                    "is_checkbox": true,
                    "is_compulsory": true,
                    "max_amount": 1,
                    "min_amount": 1,
                    "name": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    },
                    "order": "text",
                    "price": "text",
                    "shipper_id": "text",
                    "to_product_id": "text",
                    "type": "text",
                    "variants": [
                      {
                        "default_amount": 1,
                        "id": "text",
                        "image": "text",
                        "in_price": 1,
                        "max_amount": 1,
                        "min_amount": 1,
                        "out_price": 1,
                        "title": {
                          "en": "text",
                          "ru": "text",
                          "uz": "text"
                        }
                      }
                    ]
                  }
                ],
                "single_modifiers": [
                  {
                    "active": true,
                    "add_to_price": true,
                    "category_name": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    },
                    "code": "text",
                    "created_at": "text",
                    "default_amount": 1,
                    "from_product_id": "text",
                    "id": "text",
                    "is_checkbox": true,
                    "is_compulsory": true,
                    "max_amount": 1,
                    "min_amount": 1,
                    "name": {
                      "en": "text",
                      "ru": "text",
                      "uz": "text"
                    },
                    "order": "text",
                    "price": "text",
                    "shipper_id": "text",
                    "to_product_id": "text",
                    "type": "text",
                    "variants": [
                      {
                        "default_amount": 1,
                        "id": "text",
                        "image": "text",
                        "in_price": 1,
                        "max_amount": 1,
                        "min_amount": 1,
                        "out_price": 1,
                        "title": {
                          "en": "text",
                          "ru": "text",
                          "uz": "text"
                        }
                      }
                    ]
                  }
                ]
              },
              "order": "0",
              "out_price": 1,
              "parent_id": "text",
              "poster_id": "text",
              "product_property": [
                {
                  "option_id": "text",
                  "property_id": "text",
                  "title": {
                    "en": "text",
                    "ru": "text",
                    "uz": "text"
                  }
                }
              ],
              "product_type": "text",
              "property_ids": [
                "text"
              ],
              "proteins": 1,
              "rate_id": "text",
              "relation_type": "text",
              "tags": [
                "text"
              ],
              "title": {
                "en": "text",
                "ru": "text",
                "uz": "text"
              },
              "type": "text",
              "weight": 1
            }
          ],
          "weight": 1
        }
      ],
      "weight": 1
    }
  ]
}

Get All Tags

get

API for getting all tags

Authorizations
AuthorizationstringRequired
Query parameters
pageintegerOptional

page

limitintegerOptional

limit

parent_idintegerOptional

parent_id

allbooleanOptional

all

searchstringOptional

search

Header parameters
ShipperstringOptional

Shipper

Responses
200

OK

application/json
countintegerOptional
get/v2/tags
GET /v2/tags HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
{
  "count": 1,
  "tags": [
    {
      "color": "text",
      "created_at": "text",
      "icon": "text",
      "id": "text",
      "slug": "text",
      "title": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      }
    }
  ]
}

Get All vacancies

get

API for getting all vacancies

Authorizations
AuthorizationstringRequired
Query parameters
searchstringOptional

search

pageintegerRequired

page

limitintegerRequired

limit

Header parameters
ShipperstringRequired

Shipper

Responses
200

OK

application/json
countintegerOptional
get/v2/vacancy
GET /v2/vacancy?page=1&limit=1 HTTP/1.1
Authorization: YOUR_API_KEY
Shipper: text
Accept: */*
{
  "count": 1,
  "vacancies": [
    {
      "created_at": "text",
      "description": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "id": "text",
      "is_active": true,
      "shipper_id": "text",
      "title": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "updated_at": "text"
    }
  ]
}

Create vacancy

post

API for creating vacancy candidate

Authorizations
AuthorizationstringRequired
Header parameters
ShipperstringRequired

Shipper

Body
descriptionstringOptional
filestringOptional
full_namestringOptional
phone_numberstringOptional
statusstringOptional
vacancy_idstringOptional
Responses
200

OK

application/json
messageanyOptional
post/v2/vacancy-candidate
POST /v2/vacancy-candidate HTTP/1.1
Authorization: YOUR_API_KEY
Shipper: text
Content-Type: application/json
Accept: */*
Content-Length: 113

{
  "description": "text",
  "file": "text",
  "full_name": "text",
  "phone_number": "text",
  "status": "text",
  "vacancy_id": "text"
}
{
  "message": null
}

Get vacancy

get

API for getting vacancy

Path parameters
idstringRequired

id

Responses
200

OK

application/json
created_atstringOptional
idstringOptional
is_activebooleanOptional
shipper_idstringOptional
updated_atstringOptional
get/v2/vacancy/{id}
GET /v2/vacancy/{id} HTTP/1.1
Accept: */*
{
  "created_at": "text",
  "description": {
    "en": "text",
    "ru": "text",
    "uz": "text"
  },
  "id": "text",
  "is_active": true,
  "shipper_id": "text",
  "title": {
    "en": "text",
    "ru": "text",
    "uz": "text"
  },
  "updated_at": "text"
}

Get source settings

get

API for getting source settings

Path parameters
shipper_idstringRequired

shipper_id

Responses
200

OK

application/json
domainstringOptional
shipper_idstringOptional
get/v3/source-settings/{shipper_id}
GET /v3/source-settings/{shipper_id} HTTP/1.1
Accept: */*
{
  "colours": {
    "brand": "text",
    "primary": "text",
    "secondary": "text"
  },
  "domain": "text",
  "shipper_id": "text",
  "sources": [
    {
      "about_us": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "ask_operator_call": true,
      "image": "text",
      "links": [
        {
          "is_used": true,
          "label": "text",
          "value": "text"
        }
      ],
      "order_types": [
        {
          "is_used": true,
          "label": "text",
          "value": "text"
        }
      ],
      "payment_types": [
        {
          "is_used": true,
          "label": "text",
          "value": "text"
        }
      ],
      "source": "text"
    }
  ]
}

Get All workingHours

get

API for getting all workingHours

Authorizations
AuthorizationstringRequired
Query parameters
object_idstringRequired

object_id

object_typestringRequired

object_type

Header parameters
ShipperstringRequired

Shipper

Responses
200

OK

application/json
countintegerOptional
get/v2/working-hours
GET /v2/working-hours?object_id=text&object_type=text HTTP/1.1
Authorization: YOUR_API_KEY
Shipper: text
Accept: */*
{
  "count": 1,
  "vacancies": [
    {
      "created_at": "text",
      "description": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "id": "text",
      "is_active": true,
      "shipper_id": "text",
      "title": {
        "en": "text",
        "ru": "text",
        "uz": "text"
      },
      "updated_at": "text"
    }
  ]
}

Last updated