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

Используя приведенные ниже методы, можно создать собственное мобильное приложение или веб-сайт бренда, существующего в Делевер. Для методов без авторизации требуется параметр заголовка 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
get
GET /v1/banner HTTP/1.1
Host: 
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
get
GET /v1/banner/{banner_id} HTTP/1.1
Host: 
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
Query parameters
pageintegerOptional

page

limitintegerOptional

limit

searchstringOptional

search

Header parameters
ShipperstringOptional

Shipper

Responses
200
OK
application/json
get
GET /v1/branches HTTP/1.1
Host: 
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
Path parameters
branch_idstringRequired

branch_id

Responses
200
OK
application/json
get
GET /v1/branches/{branch_id} HTTP/1.1
Host: 
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
Path parameters
phonestringRequired

phone

Query parameters
searchstringOptional

search

Responses
200
OK
application/json
get
GET /v1/customer-addresses/{phone} HTTP/1.1
Host: 
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
Responses
200
OK
application/json
get
GET /v1/customer-profile HTTP/1.1
Host: 
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
Query parameters
customer_idstringRequired

customer_id

pageintegerOptional

page

limitintegerOptional

limit

Responses
200
OK
application/json
get
GET /v1/customer_address?customer_id=text HTTP/1.1
Host: 
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
Body
addressstringOptional
apartmentstringOptional
buildingstringOptional
customer_idstringOptional
descriptionstringOptional
floorstringOptional
namestringOptional
Responses
200
OK
application/json
post
POST /v1/customer_address HTTP/1.1
Host: 
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
Path parameters
address_idstringRequired

address_id

Body
addressstringOptional
apartmentstringOptional
buildingstringOptional
customer_idstringOptional
descriptionstringOptional
floorstringOptional
namestringOptional
Responses
200
OK
application/json
put
PUT /v1/customer_address/{address_id} HTTP/1.1
Host: 
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
Path parameters
customer_address_idstringRequired

customer_address_id

Responses
200
OK
application/json
get
GET /v1/customer_address/{customer_address_id} HTTP/1.1
Host: 
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
Path parameters
customer_address_idstringRequired

customer_address_id

Responses
200
OK
application/json
delete
DELETE /v1/customer_address/{customer_address_id} HTTP/1.1
Host: 
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
post
POST /v1/customers/login HTTP/1.1
Host: 
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
post
POST /v1/customers/confirm-login HTTP/1.1
Host: 
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
post
POST /v1/customers/phone HTTP/1.1
Host: 
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
post
POST /v1/customers/register HTTP/1.1
Host: 
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
post
POST /v1/customers/register-confirm HTTP/1.1
Host: 
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
Path parameters
customer_idstringRequired

customer_id

Body
date_of_birthstringOptional
namestringOptional
phonestringOptional
Responses
200
OK
application/json
put
PUT /v1/customers/{customer_id} HTTP/1.1
Host: 
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
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
get
GET /v1/customers/{customer_id}/orders HTTP/1.1
Host: 
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
Path parameters
customer_idstringRequired

customer_id

Responses
200
OK
application/json
get
GET /v1/customers/{customer_id}/last-order HTTP/1.1
Host: 
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
Body
branch_idstringOptional
delivery_zone_idstringOptional
latnumberOptional
longnumberOptional
order_pricenumberOptional
Responses
200
OK
application/json
patch
PATCH /v1/fares/compute-price HTTP/1.1
Host: 
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
Query parameters
longstringOptional

long

latstringOptional

lat

Header parameters
ShipperstringOptional

Shipper

Responses
200
OK
application/json
get
GET /v1/nearest-branch HTTP/1.1
Host: 
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
get
GET /v1/promo HTTP/1.1
Host: 
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
get
GET /v1/promo/{promo_id} HTTP/1.1
Host: 
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
get
GET /v1/shippers/{shipper_id} HTTP/1.1
Host: 
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
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
get
GET /v1/story HTTP/1.1
Host: 
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
Path parameters
idstringRequired

id

Query parameters
device_idstringRequired

device_id

Responses
200
OK
application/json
get
GET /v1/story-view/{id}?device_id=text HTTP/1.1
Host: 
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
Path parameters
idstringRequired

id

Query parameters
device_idstringRequired

device_id

Responses
200
OK
application/json
get
GET /v1/story/{id}?device_id=text HTTP/1.1
Host: 
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
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
get
GET /v1/user_reviews HTTP/1.1
Host: 
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
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
post
POST /v1/user_reviews HTTP/1.1
Host: 
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
Path parameters
idstringRequired

id

Body
client_idstringOptional
idstringOptional
ratingnumberOptional
recipe_idstringOptional
related_subjectstringOptional
review_messagestringOptional
typestringOptional
Responses
200
OK
application/json
put
PUT /v1/user_reviews/{id} HTTP/1.1
Host: 
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
Responses
200
OK
application/json
get
GET /v2/active-delivery-zones HTTP/1.1
Host: 
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
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
get
GET /v2/auto-add-product HTTP/1.1
Host: 
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
Query parameters
pageintegerOptional

page

limitintegerOptional

limit

parent_idintegerOptional

parent_id

allbooleanOptional

all

searchstringOptional

search

Header parameters
ShipperstringOptional

Shipper

Responses
200
OK
application/json
get
GET /v2/category HTTP/1.1
Host: 
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
Path parameters
category_idstringRequired

category_id

Header parameters
ShipperstringOptional

Shipper

Responses
200
OK
application/json
get
GET /v2/category/{category_id} HTTP/1.1
Host: 
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
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
get
GET /v2/discount HTTP/1.1
Host: 
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
Query parameters
searchstringOptional

search

pageintegerRequired

page

limitintegerRequired

limit

typestringOptional

type

Header parameters
ShipperstringRequired

Shipper

Responses
200
OK
application/json
get
GET /v2/news-events?page=1&limit=1 HTTP/1.1
Host: 
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
get
GET /v2/news-events/{id} HTTP/1.1
Host: 
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
Query parameters
pageintegerRequired

page

limitintegerRequired

limit

only_unreadbooleanRequired

only_unread

Header parameters
ShipperstringRequired

Shipper

Responses
200
OK
application/json
get
GET /v2/notifications?page=1&limit=1&only_unread=true HTTP/1.1
Host: 
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
Path parameters
idstringRequired

id

Responses
200
OK
application/json
get
GET /v2/notifications/{id} HTTP/1.1
Host: 
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
Body
external_order_idstringOptional
order_idstringOptional
Responses
200
OK
application/json
post
POST /v2/ondemand-order HTTP/1.1
Host: 
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
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
get
GET /v1/order HTTP/1.1
Host: 
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
Path parameters
order_idstringRequired

order_id

Responses
200
OK
application/json
get
GET /v2/order/{order_id} HTTP/1.1
Host: 
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
Path parameters
order_idstringRequired

ORDER ID

Body
descriptionstringOptional
reason_idstringOptional
status_idstringOptional
Responses
200
OK
application/json
patch
PATCH /v2/order/{order_id}/cancel-order HTTP/1.1
Host: 
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
get
GET /v2/product HTTP/1.1
Host: 
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
get
GET /v2/popup HTTP/1.1
Host: 
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
Query parameters
pageintegerOptional

page

limitintegerOptional

limit

searchstringOptional

search

Header parameters
ShipperstringOptional

Shipper

Responses
200
OK
application/json
get
GET /v2/product-add-to-order HTTP/1.1
Host: 
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
GET /v2/product-favourites?product_ids=text HTTP/1.1
Host: 
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
get
GET /v2/product/{product_id} HTTP/1.1
Host: 
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
get
GET /v2/product/{product_id}/variants HTTP/1.1
Host: 
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
Query parameters
pageintegerOptional

page

limitintegerOptional

limit

parent_idintegerOptional

parent_id

allbooleanOptional

all

searchstringOptional

search

Header parameters
ShipperstringOptional

Shipper

Responses
200
OK
application/json
get
GET /v2/tags HTTP/1.1
Host: 
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
Query parameters
searchstringOptional

search

pageintegerRequired

page

limitintegerRequired

limit

Header parameters
ShipperstringRequired

Shipper

Responses
200
OK
application/json
get
GET /v2/vacancy?page=1&limit=1 HTTP/1.1
Host: 
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
Header parameters
ShipperstringRequired

Shipper

Body
descriptionstringOptional
filestringOptional
full_namestringOptional
phone_numberstringOptional
statusstringOptional
vacancy_idstringOptional
Responses
200
OK
application/json
post
POST /v2/vacancy-candidate HTTP/1.1
Host: 
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
get
GET /v2/vacancy/{id} HTTP/1.1
Host: 
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
get
GET /v3/source-settings/{shipper_id} HTTP/1.1
Host: 
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
Query parameters
object_idstringRequired

object_id

object_typestringRequired

object_type

Header parameters
ShipperstringRequired

Shipper

Responses
200
OK
application/json
get
GET /v2/working-hours?object_id=text&object_type=text HTTP/1.1
Host: 
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