Для веб/мобильных разработчиков
Используя приведенные ниже методы, можно создать собственное мобильное приложение или веб-сайт бренда, существующего в Делевер. Для методов без авторизации требуется параметр заголовка Shipper, который будет предоставлен брендом.
API for getting all banners
page
limit
search
Shipper
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
}
API for getting banner
banner_id
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"
}
API for getting branches
page
limit
search
Shipper
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
}
API for getting branch info
branch_id
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"
}
API for taking all order addresses
phone
search
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 /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"
}
API for getting customer addresses
customer_id
page
limit
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"
}
]
}
API for creating customer address
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
}
API for updating customer address
address_id
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
}
API for getting customer address
customer_address_id
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"
}
API for deleting customer address
customer_address_id
DELETE /v1/customer_address/{customer_address_id} HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"message": null
}
API that checks whether customer exists and if exists sends sms to their number
Shipper
POST /v1/customers/login HTTP/1.1
Host:
Shipper: text
Content-Type: application/json
Accept: */*
Content-Length: 29
{
"phone": "text",
"tag": "text"
}
{
"message": null
}
API that confirms sms code
Shipper
Platform
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"
}
API for getting customer by phone
Shipper
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 - API for registering customers
Shipper
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 - API for confirming and inserting user to DB
Shipper
Platform
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"
}
API for updating customer
customer_id
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"
}
API for getting customer orders
customer_id
page
limit
status_ids
start_date
delivery_type
end_date
review_seen
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
}
}
]
}
API for getting customer last order
customer_id
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
}
}
API for computing delivery price
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
}
API for getting branch info
long
lat
Shipper
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"
}
API for getting promo
page
limit
search
Shipper
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"
}
}
]
}
API for getting promo
promo_id
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"
}
}
API for getting shipper info
shipper_id
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"
}
API for getting story
page
limit
search
is_active
device_id
Shipper
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"
}
]
}
API for getting story
id
device_id
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"
}
API for getting story
id
device_id
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"
}
API for getting user reviews
related_subject
product_id
client_id
recipe_id
page
limit
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"
}
]
}
API for creating UserReviews
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
}
API for updating user reviews
id
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
}
API for Get Active DeliveryZones
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"
}
]
}
API for getting all autoAddProduct
page
limit
order_type
is_active
search
Shipper
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"
}
]
}
API for getting all category
page
limit
parent_id
all
search
Shipper
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"
}
API for getting a category
category_id
Shipper
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"
}
}
API for getting all discount
page
limit
search
order_sources
branch_ids
types
payment_types
only_delivery
only_self_pickup
product_ids
modes
discount_for
for_order_amount
promo_code
Shipper
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"
}
]
}
API for getting news-events
search
page
limit
type
Shipper
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"
}
]
}
API for getting new-event
id
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"
}
API for getting notifications
page
limit
only_unread
Shipper
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"
}
]
}
API for getting notification
id
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"
}
API for creating on demand order
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"
}
API for getting customer orders
page
limit
status_ids
start_date
end_date
review_seen
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
}
}
]
}
API for getting order
order_id
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
}
]
}
API for Cancel Order v2
ORDER ID
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
}
API for getting all product
page
limit
category_id
search by title of product, searches in all 3 lang-s at the same time
all
parent_id
type
sort
exception_from_product_id
delivery_type
crm_type
fields
group_id
tag_ids
menu_id
aggregator_id
product_types
Shipper
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
}
]
}
API for getting popup
page
limit
search
Shipper
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"
}
]
}
API for getting all add to order products
page
limit
search
Shipper
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
}
]
}
API for getting a product favourites
product_ids
branch_id
order_source
only_delivery
only_self_pickup
client_id
with_discounts
menu_id
Shipper
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"
}
]
}
API for getting a product
product_id
menu_id
branch_id
order_source
only_delivery
only_self_pickup
client_id
with_discounts
Shipper
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
}
API for getting all product variants
product_id
page
limit
search
Shipper
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
}
]
}
API for getting all tags
page
limit
parent_id
all
search
Shipper
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"
}
}
]
}
API for getting all vacancies
search
page
limit
Shipper
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"
}
]
}
API for creating vacancy candidate
Shipper
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
}
API for getting vacancy
id
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"
}
API for getting source settings
shipper_id
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"
}
]
}
API for getting all workingHours
object_id
object_type
Shipper
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