{
	"info": {
		"_postman_id": "21935c53-481d-4956-a546-ea0d523ab50b",
		"name": "API для интеграции сервиса Яндекс.Еда Copy",
		"description": "Описание API для работы с сервисом Яндекс.Еда по моделям Yandex и Marketplace. Все методы описанные ниже должны быть реализованы на стороне партнера в процессе интеграции. Т.е. сервис Яндекс.Еда выступает в роли клиента, а Вам необходимо реализовать серверную часть. Общение происходит на основании pull-модели, т.е. сервис Яндекс.Еда как клиент запрашивает информацию о ресурсе либо может создавать/обновлять ресурсы если это необходимо.\n\n# Authentication\n\n<!-- ReDoc-Inject: <security-definitions> -->",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
		"_exporter_id": "19382483"
	},
	"item": [
		{
			"name": "security",
			"item": [
				{
					"name": "oauth",
					"item": [
						{
							"name": "token",
							"item": [
								{
									"name": "Аутентификация в системе",
									"request": {
										"method": "POST",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/x-www-form-urlencoded"
											},
											{
												"key": "Accept",
												"value": "application/x-www-form-urlencoded"
											}
										],
										"body": {
											"mode": "urlencoded",
											"urlencoded": [
												{
													"key": "client_id",
													"value": "<string>",
													"description": "(Required) "
												},
												{
													"key": "client_secret",
													"value": "<string>",
													"description": "(Required) "
												},
												{
													"key": "grant_type",
													"value": "<string>",
													"description": "(Required) "
												},
												{
													"key": "scope",
													"value": "<string>",
													"description": "(Required) "
												}
											]
										},
										"url": {
											"raw": "{{baseUrl}}/security/oauth/token",
											"host": [
												"{{baseUrl}}"
											],
											"path": [
												"security",
												"oauth",
												"token"
											]
										}
									},
									"response": [
										{
											"name": "Успешная аутентификация",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"key": "Content-Type",
														"value": "application/x-www-form-urlencoded"
													},
													{
														"key": "Accept",
														"value": "application/x-www-form-urlencoded"
													},
													{
														"description": "Added as a part of security scheme: oauth2",
														"key": "Authorization",
														"value": "<token>"
													}
												],
												"body": {
													"mode": "urlencoded",
													"urlencoded": [
														{
															"key": "client_id",
															"value": "<string>",
															"description": "(Required) "
														},
														{
															"key": "client_secret",
															"value": "<string>",
															"description": "(Required) "
														},
														{
															"key": "grant_type",
															"value": "<string>",
															"description": "(Required) "
														},
														{
															"key": "scope",
															"value": "<string>",
															"description": "(Required) "
														}
													]
												},
												"url": {
													"raw": "{{baseUrl}}/security/oauth/token",
													"host": [
														"{{baseUrl}}"
													],
													"path": [
														"security",
														"oauth",
														"token"
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "text",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/x-www-form-urlencoded"
												}
											],
											"cookie": [],
											"body": "{\n  \"access_token\": \"<string>\"\n}"
										},
										{
											"name": "Ошибка в параметрах, в ответе список ошибок валидации",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"key": "Content-Type",
														"value": "application/x-www-form-urlencoded"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: oauth2",
														"key": "Authorization",
														"value": "<token>"
													}
												],
												"body": {
													"mode": "urlencoded",
													"urlencoded": [
														{
															"key": "client_id",
															"value": "<string>",
															"description": "(Required) "
														},
														{
															"key": "client_secret",
															"value": "<string>",
															"description": "(Required) "
														},
														{
															"key": "grant_type",
															"value": "<string>",
															"description": "(Required) "
														},
														{
															"key": "scope",
															"value": "<string>",
															"description": "(Required) "
														}
													]
												},
												"url": {
													"raw": "{{baseUrl}}/security/oauth/token",
													"host": [
														"{{baseUrl}}"
													],
													"path": [
														"security",
														"oauth",
														"token"
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "Cache-Control",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Expires",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "ETag",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Vary",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Pragma",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												}
											],
											"cookie": [],
											"body": "[\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  },\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  }\n]"
										},
										{
											"name": "Внутренние ошибки сервера",
											"originalRequest": {
												"method": "POST",
												"header": [
													{
														"key": "Content-Type",
														"value": "application/x-www-form-urlencoded"
													},
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: oauth2",
														"key": "Authorization",
														"value": "<token>"
													}
												],
												"body": {
													"mode": "urlencoded",
													"urlencoded": [
														{
															"key": "client_id",
															"value": "<string>",
															"description": "(Required) "
														},
														{
															"key": "client_secret",
															"value": "<string>",
															"description": "(Required) "
														},
														{
															"key": "grant_type",
															"value": "<string>",
															"description": "(Required) "
														},
														{
															"key": "scope",
															"value": "<string>",
															"description": "(Required) "
														}
													]
												},
												"url": {
													"raw": "{{baseUrl}}/security/oauth/token",
													"host": [
														"{{baseUrl}}"
													],
													"path": [
														"security",
														"oauth",
														"token"
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "Cache-Control",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Expires",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "ETag",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Vary",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Pragma",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												}
											],
											"cookie": [],
											"body": "[\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  },\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  }\n]"
										}
									]
								}
							]
						}
					]
				}
			]
		},
		{
			"name": "menu",
			"item": [
				{
					"name": "{restaurantId}",
					"item": [
						{
							"name": "composition",
							"item": [
								{
									"name": "Выдача актуального на текущий момент меню ресторана",
									"request": {
										"auth": {
											"type": "oauth2",
											"oauth2": [
												{
													"key": "scope",
													"value": "read write",
													"type": "string"
												},
												{
													"key": "accessTokenUrl",
													"value": "/security/oauth/token",
													"type": "string"
												},
												{
													"key": "grant_type",
													"value": "client_credentials",
													"type": "string"
												}
											]
										},
										"method": "GET",
										"header": [
											{
												"key": "Accept",
												"value": "application/vnd.eats.menu.composition.v2+json"
											}
										],
										"url": {
											"raw": "{{baseUrl}}/menu/:restaurantId/composition",
											"host": [
												"{{baseUrl}}"
											],
											"path": [
												"menu",
												":restaurantId",
												"composition"
											],
											"variable": [
												{
													"key": "restaurantId",
													"value": "<string>"
												}
											]
										},
										"description": "Позиции, содержащие схематические или логические несоответствия (слишком длинная строка, цена равная 0.00) могут быть проигнорированы. Актуальная версия модели ответа - application/vnd.eats.menu.composition.v2+json"
									},
									"response": [
										{
											"name": "OK, возвращается актуальное на данный момент меню для указанного ресторана",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "Accept",
														"value": "application/vnd.eats.menu.composition.v2+json"
													},
													{
														"description": "Added as a part of security scheme: oauth2",
														"key": "Authorization",
														"value": "<token>"
													}
												],
												"url": {
													"raw": "{{baseUrl}}/menu/:restaurantId/composition",
													"host": [
														"{{baseUrl}}"
													],
													"path": [
														"menu",
														":restaurantId",
														"composition"
													],
													"variable": [
														{
															"key": "restaurantId"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "Cache-Control",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Expires",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "ETag",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Vary",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Pragma",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												}
											],
											"cookie": [],
											"body": "{\n  \"categories\": [\n    {\n      \"id\": \"<string>\",\n      \"name\": \"<string>\",\n      \"parentId\": \"<string>\",\n      \"sortOrder\": \"<integer>\",\n      \"images\": [\n        {\n          \"url\": \"<uri>\",\n          \"updatedAt\": \"<dateTime>\"\n        },\n        {\n          \"url\": \"<uri>\",\n          \"updatedAt\": \"<dateTime>\"\n        }\n      ]\n    },\n    {\n      \"id\": \"<string>\",\n      \"name\": \"<string>\",\n      \"parentId\": \"<string>\",\n      \"sortOrder\": \"<integer>\",\n      \"images\": [\n        {\n          \"url\": \"<uri>\",\n          \"updatedAt\": \"<dateTime>\"\n        },\n        {\n          \"url\": \"<uri>\",\n          \"updatedAt\": \"<dateTime>\"\n        }\n      ]\n    }\n  ],\n  \"lastChange\": \"<dateTime>\",\n  \"items\": [\n    {\n      \"categoryId\": \"<string>\",\n      \"id\": \"<string>\",\n      \"measureUnit\": \"мл\",\n      \"name\": \"<string>\",\n      \"price\": \"<double>\",\n      \"measure\": \"<integer>\",\n      \"description\": \"<string>\",\n      \"vat\": \"<number>\",\n      \"sortOrder\": \"<integer>\",\n      \"modifierGroups\": [\n        {\n          \"id\": \"<string>\",\n          \"name\": \"<string>\",\n          \"minSelectedModifiers\": \"<integer>\",\n          \"maxSelectedModifiers\": \"<integer>\",\n          \"modifiers\": [\n            {\n              \"id\": \"<string>\",\n              \"maxAmount\": \"<integer>\",\n              \"minAmount\": \"<integer>\",\n              \"name\": \"<string>\",\n              \"price\": \"<double>\",\n              \"vat\": \"<integer>\"\n            },\n            {\n              \"id\": \"<string>\",\n              \"maxAmount\": \"<integer>\",\n              \"minAmount\": \"<integer>\",\n              \"name\": \"<string>\",\n              \"price\": \"<double>\",\n              \"vat\": \"<integer>\"\n            }\n          ],\n          \"sortOrder\": \"<integer>\"\n        },\n        {\n          \"id\": \"<string>\",\n          \"name\": \"<string>\",\n          \"minSelectedModifiers\": \"<integer>\",\n          \"maxSelectedModifiers\": \"<integer>\",\n          \"modifiers\": [\n            {\n              \"id\": \"<string>\",\n              \"maxAmount\": \"<integer>\",\n              \"minAmount\": \"<integer>\",\n              \"name\": \"<string>\",\n              \"price\": \"<double>\",\n              \"vat\": \"<integer>\"\n            },\n            {\n              \"id\": \"<string>\",\n              \"maxAmount\": \"<integer>\",\n              \"minAmount\": \"<integer>\",\n              \"name\": \"<string>\",\n              \"price\": \"<double>\",\n              \"vat\": \"<integer>\"\n            }\n          ],\n          \"sortOrder\": \"<integer>\"\n        }\n      ],\n      \"images\": [\n        {\n          \"hash\": \"<string>\",\n          \"url\": \"<uri>\"\n        },\n        {\n          \"hash\": \"<string>\",\n          \"url\": \"<uri>\"\n        }\n      ]\n    },\n    {\n      \"categoryId\": \"<string>\",\n      \"id\": \"<string>\",\n      \"measureUnit\": \"г\",\n      \"name\": \"<string>\",\n      \"price\": \"<double>\",\n      \"measure\": \"<integer>\",\n      \"description\": \"<string>\",\n      \"vat\": \"<number>\",\n      \"sortOrder\": \"<integer>\",\n      \"modifierGroups\": [\n        {\n          \"id\": \"<string>\",\n          \"name\": \"<string>\",\n          \"minSelectedModifiers\": \"<integer>\",\n          \"maxSelectedModifiers\": \"<integer>\",\n          \"modifiers\": [\n            {\n              \"id\": \"<string>\",\n              \"maxAmount\": \"<integer>\",\n              \"minAmount\": \"<integer>\",\n              \"name\": \"<string>\",\n              \"price\": \"<double>\",\n              \"vat\": \"<integer>\"\n            },\n            {\n              \"id\": \"<string>\",\n              \"maxAmount\": \"<integer>\",\n              \"minAmount\": \"<integer>\",\n              \"name\": \"<string>\",\n              \"price\": \"<double>\",\n              \"vat\": \"<integer>\"\n            }\n          ],\n          \"sortOrder\": \"<integer>\"\n        },\n        {\n          \"id\": \"<string>\",\n          \"name\": \"<string>\",\n          \"minSelectedModifiers\": \"<integer>\",\n          \"maxSelectedModifiers\": \"<integer>\",\n          \"modifiers\": [\n            {\n              \"id\": \"<string>\",\n              \"maxAmount\": \"<integer>\",\n              \"minAmount\": \"<integer>\",\n              \"name\": \"<string>\",\n              \"price\": \"<double>\",\n              \"vat\": \"<integer>\"\n            },\n            {\n              \"id\": \"<string>\",\n              \"maxAmount\": \"<integer>\",\n              \"minAmount\": \"<integer>\",\n              \"name\": \"<string>\",\n              \"price\": \"<double>\",\n              \"vat\": \"<integer>\"\n            }\n          ],\n          \"sortOrder\": \"<integer>\"\n        }\n      ],\n      \"images\": [\n        {\n          \"hash\": \"<string>\",\n          \"url\": \"<uri>\"\n        },\n        {\n          \"hash\": \"<string>\",\n          \"url\": \"<uri>\"\n        }\n      ]\n    }\n  ]\n}"
										},
										{
											"name": "Bad request. Ошибка в параметрах, в ответе список ошибок валидации",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: oauth2",
														"key": "Authorization",
														"value": "<token>"
													}
												],
												"url": {
													"raw": "{{baseUrl}}/menu/:restaurantId/composition",
													"host": [
														"{{baseUrl}}"
													],
													"path": [
														"menu",
														":restaurantId",
														"composition"
													],
													"variable": [
														{
															"key": "restaurantId"
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "Cache-Control",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Expires",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "ETag",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Vary",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Pragma",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												}
											],
											"cookie": [],
											"body": "[\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  },\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  }\n]"
										},
										{
											"name": "Не пройдена авторизация - истек токен, либо не был передан в запросе",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: oauth2",
														"key": "Authorization",
														"value": "<token>"
													}
												],
												"url": {
													"raw": "{{baseUrl}}/menu/:restaurantId/composition",
													"host": [
														"{{baseUrl}}"
													],
													"path": [
														"menu",
														":restaurantId",
														"composition"
													],
													"variable": [
														{
															"key": "restaurantId"
														}
													]
												}
											},
											"status": "Unauthorized",
											"code": 401,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "Cache-Control",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Expires",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "ETag",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Vary",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Pragma",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												}
											],
											"cookie": [],
											"body": "{\n  \"reason\": \"<string>\"\n}"
										},
										{
											"name": "Не найден ресторан",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: oauth2",
														"key": "Authorization",
														"value": "<token>"
													}
												],
												"url": {
													"raw": "{{baseUrl}}/menu/:restaurantId/composition",
													"host": [
														"{{baseUrl}}"
													],
													"path": [
														"menu",
														":restaurantId",
														"composition"
													],
													"variable": [
														{
															"key": "restaurantId"
														}
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "Cache-Control",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Expires",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "ETag",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Vary",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Pragma",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												}
											],
											"cookie": [],
											"body": "[\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  },\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  }\n]"
										},
										{
											"name": "Внутренние ошибки сервера",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: oauth2",
														"key": "Authorization",
														"value": "<token>"
													}
												],
												"url": {
													"raw": "{{baseUrl}}/menu/:restaurantId/composition",
													"host": [
														"{{baseUrl}}"
													],
													"path": [
														"menu",
														":restaurantId",
														"composition"
													],
													"variable": [
														{
															"key": "restaurantId"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "Cache-Control",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Expires",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "ETag",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Vary",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Pragma",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												}
											],
											"cookie": [],
											"body": "[\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  },\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  }\n]"
										}
									]
								}
							]
						},
						{
							"name": "availability",
							"item": [
								{
									"name": "Выдача позиций меню недоступных для заказа на текущий момент",
									"request": {
										"auth": {
											"type": "oauth2",
											"oauth2": [
												{
													"key": "scope",
													"value": "read write",
													"type": "string"
												},
												{
													"key": "accessTokenUrl",
													"value": "/security/oauth/token",
													"type": "string"
												},
												{
													"key": "grant_type",
													"value": "client_credentials",
													"type": "string"
												}
											]
										},
										"method": "GET",
										"header": [
											{
												"key": "Accept",
												"value": "application/vnd.eats.menu.availability.v2+json"
											}
										],
										"url": {
											"raw": "{{baseUrl}}/menu/:restaurantId/availability",
											"host": [
												"{{baseUrl}}"
											],
											"path": [
												"menu",
												":restaurantId",
												"availability"
											],
											"variable": [
												{
													"key": "restaurantId",
													"value": "<string>"
												}
											]
										},
										"description": "Позиции, содержащие схематические или логические несоответствия (слишком длинная строка, остаток равен -10.00) могут быть проигнорированы. Актуальная версия модели ответа - application/vnd.eats.menu.availability.v2+json"
									},
									"response": [
										{
											"name": "Возвращает список позиций меню недоступных на текущий момент в данном ресторане",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "Accept",
														"value": "application/vnd.eats.menu.availability.v2+json"
													},
													{
														"description": "Added as a part of security scheme: oauth2",
														"key": "Authorization",
														"value": "<token>"
													}
												],
												"url": {
													"raw": "{{baseUrl}}/menu/:restaurantId/availability",
													"host": [
														"{{baseUrl}}"
													],
													"path": [
														"menu",
														":restaurantId",
														"availability"
													],
													"variable": [
														{
															"key": "restaurantId"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "Cache-Control",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Expires",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "ETag",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Vary",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Pragma",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												}
											],
											"cookie": [],
											"body": "{\n  \"items\": [\n    {\n      \"itemId\": \"<string>\",\n      \"stock\": 0\n    },\n    {\n      \"itemId\": \"<string>\",\n      \"stock\": 0\n    }\n  ],\n  \"modifiers\": [\n    {\n      \"modifierId\": \"<string>\",\n      \"stock\": 0\n    },\n    {\n      \"modifierId\": \"<string>\",\n      \"stock\": 0\n    }\n  ]\n}"
										},
										{
											"name": "Не пройдена авторизация - истек токен, либо не был передан в запросе",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: oauth2",
														"key": "Authorization",
														"value": "<token>"
													}
												],
												"url": {
													"raw": "{{baseUrl}}/menu/:restaurantId/availability",
													"host": [
														"{{baseUrl}}"
													],
													"path": [
														"menu",
														":restaurantId",
														"availability"
													],
													"variable": [
														{
															"key": "restaurantId"
														}
													]
												}
											},
											"status": "Unauthorized",
											"code": 401,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "Cache-Control",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Expires",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "ETag",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Vary",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Pragma",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												}
											],
											"cookie": [],
											"body": "{\n  \"reason\": \"<string>\"\n}"
										},
										{
											"name": "Не найден ресторан",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: oauth2",
														"key": "Authorization",
														"value": "<token>"
													}
												],
												"url": {
													"raw": "{{baseUrl}}/menu/:restaurantId/availability",
													"host": [
														"{{baseUrl}}"
													],
													"path": [
														"menu",
														":restaurantId",
														"availability"
													],
													"variable": [
														{
															"key": "restaurantId"
														}
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "Cache-Control",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Expires",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "ETag",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Vary",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Pragma",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												}
											],
											"cookie": [],
											"body": "[\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  },\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  }\n]"
										},
										{
											"name": "Внутренние ошибки сервера",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: oauth2",
														"key": "Authorization",
														"value": "<token>"
													}
												],
												"url": {
													"raw": "{{baseUrl}}/menu/:restaurantId/availability",
													"host": [
														"{{baseUrl}}"
													],
													"path": [
														"menu",
														":restaurantId",
														"availability"
													],
													"variable": [
														{
															"key": "restaurantId"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "Cache-Control",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Expires",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "ETag",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Vary",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Pragma",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												}
											],
											"cookie": [],
											"body": "[\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  },\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  }\n]"
										}
									]
								}
							]
						},
						{
							"name": "promos",
							"item": [
								{
									"name": "Выдача акционных блюд в связке с меню",
									"request": {
										"auth": {
											"type": "oauth2",
											"oauth2": [
												{
													"key": "scope",
													"value": "read write",
													"type": "string"
												},
												{
													"key": "accessTokenUrl",
													"value": "/security/oauth/token",
													"type": "string"
												},
												{
													"key": "grant_type",
													"value": "client_credentials",
													"type": "string"
												}
											]
										},
										"method": "GET",
										"header": [
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{baseUrl}}/menu/:restaurantId/promos",
											"host": [
												"{{baseUrl}}"
											],
											"path": [
												"menu",
												":restaurantId",
												"promos"
											],
											"variable": [
												{
													"key": "restaurantId",
													"value": "<string>"
												}
											]
										}
									},
									"response": [
										{
											"name": "Возвращает список позиций акционных блюд меню связаных с основным меню",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: oauth2",
														"key": "Authorization",
														"value": "<token>"
													}
												],
												"url": {
													"raw": "{{baseUrl}}/menu/:restaurantId/promos",
													"host": [
														"{{baseUrl}}"
													],
													"path": [
														"menu",
														":restaurantId",
														"promos"
													],
													"variable": [
														{
															"key": "restaurantId"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "Cache-Control",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Expires",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "ETag",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Vary",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Pragma",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												}
											],
											"cookie": [],
											"body": "{\n  \"promoItems\": [\n    {\n      \"id\": \"<string>\",\n      \"promoId\": \"<string>\"\n    },\n    {\n      \"id\": \"<string>\",\n      \"promoId\": \"<string>\"\n    }\n  ]\n}"
										},
										{
											"name": "Не пройдена авторизация - истек токен, либо не был передан в запросе",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: oauth2",
														"key": "Authorization",
														"value": "<token>"
													}
												],
												"url": {
													"raw": "{{baseUrl}}/menu/:restaurantId/promos",
													"host": [
														"{{baseUrl}}"
													],
													"path": [
														"menu",
														":restaurantId",
														"promos"
													],
													"variable": [
														{
															"key": "restaurantId"
														}
													]
												}
											},
											"status": "Unauthorized",
											"code": 401,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "Cache-Control",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Expires",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "ETag",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Vary",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Pragma",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												}
											],
											"cookie": [],
											"body": "{\n  \"reason\": \"<string>\"\n}"
										},
										{
											"name": "Не найден ресторан",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: oauth2",
														"key": "Authorization",
														"value": "<token>"
													}
												],
												"url": {
													"raw": "{{baseUrl}}/menu/:restaurantId/promos",
													"host": [
														"{{baseUrl}}"
													],
													"path": [
														"menu",
														":restaurantId",
														"promos"
													],
													"variable": [
														{
															"key": "restaurantId"
														}
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "Cache-Control",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Expires",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "ETag",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Vary",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Pragma",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												}
											],
											"cookie": [],
											"body": "[\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  },\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  }\n]"
										},
										{
											"name": "Внутренние ошибки сервера",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: oauth2",
														"key": "Authorization",
														"value": "<token>"
													}
												],
												"url": {
													"raw": "{{baseUrl}}/menu/:restaurantId/promos",
													"host": [
														"{{baseUrl}}"
													],
													"path": [
														"menu",
														":restaurantId",
														"promos"
													],
													"variable": [
														{
															"key": "restaurantId"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "Cache-Control",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Expires",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "ETag",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Vary",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Pragma",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												}
											],
											"cookie": [],
											"body": "[\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  },\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  }\n]"
										}
									]
								}
							]
						}
					]
				}
			]
		},
		{
			"name": "restaurants",
			"item": [
				{
					"name": "Выдача списка заведений партнера",
					"request": {
						"auth": {
							"type": "oauth2",
							"oauth2": [
								{
									"key": "scope",
									"value": "read write",
									"type": "string"
								},
								{
									"key": "accessTokenUrl",
									"value": "/security/oauth/token",
									"type": "string"
								},
								{
									"key": "grant_type",
									"value": "client_credentials",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Accept",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/restaurants",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"restaurants"
							]
						}
					},
					"response": [
						{
							"name": "Возвращает список ресторанов партнера",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "Accept",
										"value": "application/json"
									},
									{
										"description": "Added as a part of security scheme: oauth2",
										"key": "Authorization",
										"value": "<token>"
									}
								],
								"url": {
									"raw": "{{baseUrl}}/restaurants",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"restaurants"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Cache-Control",
									"value": "",
									"description": {
										"content": "",
										"type": "text/plain"
									}
								},
								{
									"key": "Expires",
									"value": "",
									"description": {
										"content": "",
										"type": "text/plain"
									}
								},
								{
									"key": "ETag",
									"value": "",
									"description": {
										"content": "",
										"type": "text/plain"
									}
								},
								{
									"key": "Vary",
									"value": "",
									"description": {
										"content": "",
										"type": "text/plain"
									}
								},
								{
									"key": "Pragma",
									"value": "",
									"description": {
										"content": "",
										"type": "text/plain"
									}
								}
							],
							"cookie": [],
							"body": "{\n  \"places\": [\n    {\n      \"id\": \"<string>\",\n      \"title\": \"<string>\",\n      \"address\": \"<string>\"\n    },\n    {\n      \"id\": \"<string>\",\n      \"title\": \"<string>\",\n      \"address\": \"<string>\"\n    }\n  ]\n}"
						},
						{
							"name": "Не пройдена авторизация - истек токен, либо не был передан в запросе",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "Accept",
										"value": "application/json"
									},
									{
										"description": "Added as a part of security scheme: oauth2",
										"key": "Authorization",
										"value": "<token>"
									}
								],
								"url": {
									"raw": "{{baseUrl}}/restaurants",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"restaurants"
									]
								}
							},
							"status": "Unauthorized",
							"code": 401,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Cache-Control",
									"value": "",
									"description": {
										"content": "",
										"type": "text/plain"
									}
								},
								{
									"key": "Expires",
									"value": "",
									"description": {
										"content": "",
										"type": "text/plain"
									}
								},
								{
									"key": "ETag",
									"value": "",
									"description": {
										"content": "",
										"type": "text/plain"
									}
								},
								{
									"key": "Vary",
									"value": "",
									"description": {
										"content": "",
										"type": "text/plain"
									}
								},
								{
									"key": "Pragma",
									"value": "",
									"description": {
										"content": "",
										"type": "text/plain"
									}
								}
							],
							"cookie": [],
							"body": "{\n  \"reason\": \"<string>\"\n}"
						},
						{
							"name": "Внутренние ошибки сервера",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "Accept",
										"value": "application/json"
									},
									{
										"description": "Added as a part of security scheme: oauth2",
										"key": "Authorization",
										"value": "<token>"
									}
								],
								"url": {
									"raw": "{{baseUrl}}/restaurants",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"restaurants"
									]
								}
							},
							"status": "Internal Server Error",
							"code": 500,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Cache-Control",
									"value": "",
									"description": {
										"content": "",
										"type": "text/plain"
									}
								},
								{
									"key": "Expires",
									"value": "",
									"description": {
										"content": "",
										"type": "text/plain"
									}
								},
								{
									"key": "ETag",
									"value": "",
									"description": {
										"content": "",
										"type": "text/plain"
									}
								},
								{
									"key": "Vary",
									"value": "",
									"description": {
										"content": "",
										"type": "text/plain"
									}
								},
								{
									"key": "Pragma",
									"value": "",
									"description": {
										"content": "",
										"type": "text/plain"
									}
								}
							],
							"cookie": [],
							"body": "[\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  },\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  }\n]"
						}
					]
				}
			]
		},
		{
			"name": "order",
			"item": [
				{
					"name": "{orderId}",
					"item": [
						{
							"name": "status",
							"item": [
								{
									"name": "Выдача актуального статуса заказа в системе ресторана",
									"request": {
										"auth": {
											"type": "oauth2",
											"oauth2": [
												{
													"key": "scope",
													"value": "read write",
													"type": "string"
												},
												{
													"key": "accessTokenUrl",
													"value": "/security/oauth/token",
													"type": "string"
												},
												{
													"key": "grant_type",
													"value": "client_credentials",
													"type": "string"
												}
											]
										},
										"method": "GET",
										"header": [
											{
												"key": "Accept",
												"value": "application/json"
											}
										],
										"url": {
											"raw": "{{baseUrl}}/order/:orderId/status",
											"host": [
												"{{baseUrl}}"
											],
											"path": [
												"order",
												":orderId",
												"status"
											],
											"variable": [
												{
													"key": "orderId",
													"value": "<string>"
												}
											]
										}
									},
									"response": [
										{
											"name": "Статус заказа успешно выдан",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: oauth2",
														"key": "Authorization",
														"value": "<token>"
													}
												],
												"url": {
													"raw": "{{baseUrl}}/order/:orderId/status",
													"host": [
														"{{baseUrl}}"
													],
													"path": [
														"order",
														":orderId",
														"status"
													],
													"variable": [
														{
															"key": "orderId"
														}
													]
												}
											},
											"status": "OK",
											"code": 200,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												}
											],
											"cookie": [],
											"body": "{\n  \"status\": \"POSTPONED\",\n  \"comment\": \"<string>\",\n  \"updatedAt\": \"<dateTime>\"\n}"
										},
										{
											"name": "Bad request. Ошибка в параметрах, в ответе список ошибок валидации",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: oauth2",
														"key": "Authorization",
														"value": "<token>"
													}
												],
												"url": {
													"raw": "{{baseUrl}}/order/:orderId/status",
													"host": [
														"{{baseUrl}}"
													],
													"path": [
														"order",
														":orderId",
														"status"
													],
													"variable": [
														{
															"key": "orderId"
														}
													]
												}
											},
											"status": "Bad Request",
											"code": 400,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "Cache-Control",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Expires",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "ETag",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Vary",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Pragma",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												}
											],
											"cookie": [],
											"body": "[\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  },\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  }\n]"
										},
										{
											"name": "Не пройдена авторизация - истек токен, либо не был передан в запросе",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: oauth2",
														"key": "Authorization",
														"value": "<token>"
													}
												],
												"url": {
													"raw": "{{baseUrl}}/order/:orderId/status",
													"host": [
														"{{baseUrl}}"
													],
													"path": [
														"order",
														":orderId",
														"status"
													],
													"variable": [
														{
															"key": "orderId"
														}
													]
												}
											},
											"status": "Unauthorized",
											"code": 401,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "Cache-Control",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Expires",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "ETag",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Vary",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Pragma",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												}
											],
											"cookie": [],
											"body": "{\n  \"reason\": \"<string>\"\n}"
										},
										{
											"name": "Заказ не найден в системе",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: oauth2",
														"key": "Authorization",
														"value": "<token>"
													}
												],
												"url": {
													"raw": "{{baseUrl}}/order/:orderId/status",
													"host": [
														"{{baseUrl}}"
													],
													"path": [
														"order",
														":orderId",
														"status"
													],
													"variable": [
														{
															"key": "orderId"
														}
													]
												}
											},
											"status": "Not Found",
											"code": 404,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "Cache-Control",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Expires",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "ETag",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Vary",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Pragma",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												}
											],
											"cookie": [],
											"body": "[\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  },\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  }\n]"
										},
										{
											"name": "Внутренние ошибки сервера",
											"originalRequest": {
												"method": "GET",
												"header": [
													{
														"key": "Accept",
														"value": "application/json"
													},
													{
														"description": "Added as a part of security scheme: oauth2",
														"key": "Authorization",
														"value": "<token>"
													}
												],
												"url": {
													"raw": "{{baseUrl}}/order/:orderId/status",
													"host": [
														"{{baseUrl}}"
													],
													"path": [
														"order",
														":orderId",
														"status"
													],
													"variable": [
														{
															"key": "orderId"
														}
													]
												}
											},
											"status": "Internal Server Error",
											"code": 500,
											"_postman_previewlanguage": "json",
											"header": [
												{
													"key": "Content-Type",
													"value": "application/json"
												},
												{
													"key": "Cache-Control",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Expires",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "ETag",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Vary",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												},
												{
													"key": "Pragma",
													"value": "",
													"description": {
														"content": "",
														"type": "text/plain"
													}
												}
											],
											"cookie": [],
											"body": "[\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  },\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  }\n]"
										}
									]
								}
							]
						},
						{
							"name": "Выдача актуальной информации о заказе в системе ресторана",
							"request": {
								"auth": {
									"type": "oauth2",
									"oauth2": [
										{
											"key": "scope",
											"value": "read write",
											"type": "string"
										},
										{
											"key": "accessTokenUrl",
											"value": "/security/oauth/token",
											"type": "string"
										},
										{
											"key": "grant_type",
											"value": "client_credentials",
											"type": "string"
										}
									]
								},
								"method": "GET",
								"header": [
									{
										"key": "Accept",
										"value": "application/vnd.eats.order.v2+json"
									}
								],
								"url": {
									"raw": "{{baseUrl}}/order/:orderId",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"order",
										":orderId"
									],
									"variable": [
										{
											"key": "orderId",
											"value": "<string>"
										}
									]
								},
								"description": "Актуальная версия модели ответа - application/vnd.eats.order.v2+json"
							},
							"response": [
								{
									"name": "Информация о заказе успешно выдана",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"key": "Accept",
												"value": "application/vnd.eats.order.v2+json"
											},
											{
												"description": "Added as a part of security scheme: oauth2",
												"key": "Authorization",
												"value": "<token>"
											}
										],
										"url": {
											"raw": "{{baseUrl}}/order/:orderId",
											"host": [
												"{{baseUrl}}"
											],
											"path": [
												"order",
												":orderId"
											],
											"variable": [
												{
													"key": "orderId"
												}
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										}
									],
									"cookie": [],
									"body": "{\n  \"discriminator\": \"<string>\",\n  \"comment\": \"<string>\",\n  \"eatsId\": \"<string>\",\n  \"items\": [\n    {\n      \"id\": \"<string>\",\n      \"modifications\": [\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        },\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        }\n      ],\n      \"price\": \"<double>\",\n      \"quantity\": \"<integer>\",\n      \"promos\": [\n        {\n          \"type\": \"GIFT\",\n          \"discount\": \"<number>\"\n        },\n        {\n          \"type\": \"GIFT\",\n          \"discount\": \"<number>\"\n        }\n      ],\n      \"name\": \"<string>\"\n    },\n    {\n      \"id\": \"<string>\",\n      \"modifications\": [\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        },\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        }\n      ],\n      \"price\": \"<double>\",\n      \"quantity\": \"<integer>\",\n      \"promos\": [\n        {\n          \"type\": \"PERCENTAGE\",\n          \"discount\": \"<number>\"\n        },\n        {\n          \"type\": \"FIXED\",\n          \"discount\": \"<number>\"\n        }\n      ],\n      \"name\": \"<string>\"\n    }\n  ],\n  \"promos\": [\n    {\n      \"type\": \"FIXED\",\n      \"discount\": \"<number>\"\n    },\n    {\n      \"type\": \"GIFT\",\n      \"discount\": \"<number>\"\n    }\n  ],\n  \"restaurantId\": \"<string>\",\n  \"deliveryInfo\": {\n    \"clientName\": \"<string>\",\n    \"deliveryAddress\": {\n      \"full\": \"<string>\",\n      \"latitude\": \"<string>\",\n      \"longitude\": \"<string>\"\n    },\n    \"deliveryDate\": \"<dateTime>\",\n    \"phoneNumber\": \"<string>\",\n    \"type\": true\n  },\n  \"paymentInfo\": {\n    \"change\": \"<double>\",\n    \"deliveryFee\": \"<double>\",\n    \"itemsCost\": \"<double>\",\n    \"paymentType\": \"CARD\",\n    \"total\": \"<double>\"\n  },\n  \"persons\": \"<integer>\"\n}"
								},
								{
									"name": "Bad request. Ошибка в параметрах, в ответе список ошибок валидации",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: oauth2",
												"key": "Authorization",
												"value": "<token>"
											}
										],
										"url": {
											"raw": "{{baseUrl}}/order/:orderId",
											"host": [
												"{{baseUrl}}"
											],
											"path": [
												"order",
												":orderId"
											],
											"variable": [
												{
													"key": "orderId"
												}
											]
										}
									},
									"status": "Bad Request",
									"code": 400,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "Cache-Control",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Expires",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "ETag",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Vary",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Pragma",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										}
									],
									"cookie": [],
									"body": "[\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  },\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  }\n]"
								},
								{
									"name": "Не пройдена авторизация - истек токен, либо не был передан в запросе",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: oauth2",
												"key": "Authorization",
												"value": "<token>"
											}
										],
										"url": {
											"raw": "{{baseUrl}}/order/:orderId",
											"host": [
												"{{baseUrl}}"
											],
											"path": [
												"order",
												":orderId"
											],
											"variable": [
												{
													"key": "orderId"
												}
											]
										}
									},
									"status": "Unauthorized",
									"code": 401,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "Cache-Control",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Expires",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "ETag",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Vary",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Pragma",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										}
									],
									"cookie": [],
									"body": "{\n  \"reason\": \"<string>\"\n}"
								},
								{
									"name": "Заказ не найден в системе",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: oauth2",
												"key": "Authorization",
												"value": "<token>"
											}
										],
										"url": {
											"raw": "{{baseUrl}}/order/:orderId",
											"host": [
												"{{baseUrl}}"
											],
											"path": [
												"order",
												":orderId"
											],
											"variable": [
												{
													"key": "orderId"
												}
											]
										}
									},
									"status": "Not Found",
									"code": 404,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "Cache-Control",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Expires",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "ETag",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Vary",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Pragma",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										}
									],
									"cookie": [],
									"body": "[\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  },\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  }\n]"
								},
								{
									"name": "Внутренние ошибки сервера",
									"originalRequest": {
										"method": "GET",
										"header": [
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: oauth2",
												"key": "Authorization",
												"value": "<token>"
											}
										],
										"url": {
											"raw": "{{baseUrl}}/order/:orderId",
											"host": [
												"{{baseUrl}}"
											],
											"path": [
												"order",
												":orderId"
											],
											"variable": [
												{
													"key": "orderId"
												}
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "Cache-Control",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Expires",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "ETag",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Vary",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Pragma",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										}
									],
									"cookie": [],
									"body": "[\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  },\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  }\n]"
								}
							]
						},
						{
							"name": "Отмена заказа в системе ресторана",
							"request": {
								"auth": {
									"type": "oauth2",
									"oauth2": [
										{
											"key": "scope",
											"value": "read write",
											"type": "string"
										},
										{
											"key": "accessTokenUrl",
											"value": "/security/oauth/token",
											"type": "string"
										},
										{
											"key": "grant_type",
											"value": "client_credentials",
											"type": "string"
										}
									]
								},
								"method": "DELETE",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"eatsId\": \"<string>\",\n  \"comment\": \"<string>\"\n}",
									"options": {
										"raw": {
											"headerFamily": "json",
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{baseUrl}}/order/:orderId",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"order",
										":orderId"
									],
									"variable": [
										{
											"key": "orderId",
											"value": "<string>"
										}
									]
								}
							},
							"response": [
								{
									"name": "Заказ успешно отменен в ресторане",
									"originalRequest": {
										"method": "DELETE",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: oauth2",
												"key": "Authorization",
												"value": "<token>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"eatsId\": \"<string>\",\n  \"comment\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{baseUrl}}/order/:orderId",
											"host": [
												"{{baseUrl}}"
											],
											"path": [
												"order",
												":orderId"
											],
											"variable": [
												{
													"key": "orderId"
												}
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "text",
									"header": [
										{
											"key": "Cache-Control",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Expires",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "ETag",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Vary",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Pragma",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										}
									],
									"cookie": [],
									"body": ""
								},
								{
									"name": "Bad request. Ошибка в параметрах, в ответе список ошибок валидации",
									"originalRequest": {
										"method": "DELETE",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: oauth2",
												"key": "Authorization",
												"value": "<token>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"eatsId\": \"<string>\",\n  \"comment\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{baseUrl}}/order/:orderId",
											"host": [
												"{{baseUrl}}"
											],
											"path": [
												"order",
												":orderId"
											],
											"variable": [
												{
													"key": "orderId"
												}
											]
										}
									},
									"status": "Bad Request",
									"code": 400,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "Cache-Control",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Expires",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "ETag",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Vary",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Pragma",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										}
									],
									"cookie": [],
									"body": "[\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  },\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  }\n]"
								},
								{
									"name": "Не пройдена авторизация - истек токен, либо не был передан в запросе",
									"originalRequest": {
										"method": "DELETE",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: oauth2",
												"key": "Authorization",
												"value": "<token>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"eatsId\": \"<string>\",\n  \"comment\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{baseUrl}}/order/:orderId",
											"host": [
												"{{baseUrl}}"
											],
											"path": [
												"order",
												":orderId"
											],
											"variable": [
												{
													"key": "orderId"
												}
											]
										}
									},
									"status": "Unauthorized",
									"code": 401,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "Cache-Control",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Expires",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "ETag",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Vary",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Pragma",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										}
									],
									"cookie": [],
									"body": "{\n  \"reason\": \"<string>\"\n}"
								},
								{
									"name": "Заказ не найден в системе",
									"originalRequest": {
										"method": "DELETE",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: oauth2",
												"key": "Authorization",
												"value": "<token>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"eatsId\": \"<string>\",\n  \"comment\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{baseUrl}}/order/:orderId",
											"host": [
												"{{baseUrl}}"
											],
											"path": [
												"order",
												":orderId"
											],
											"variable": [
												{
													"key": "orderId"
												}
											]
										}
									},
									"status": "Not Found",
									"code": 404,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "Cache-Control",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Expires",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "ETag",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Vary",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Pragma",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										}
									],
									"cookie": [],
									"body": "[\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  },\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  }\n]"
								},
								{
									"name": "Внутренние ошибки сервера",
									"originalRequest": {
										"method": "DELETE",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: oauth2",
												"key": "Authorization",
												"value": "<token>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"eatsId\": \"<string>\",\n  \"comment\": \"<string>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{baseUrl}}/order/:orderId",
											"host": [
												"{{baseUrl}}"
											],
											"path": [
												"order",
												":orderId"
											],
											"variable": [
												{
													"key": "orderId"
												}
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "Cache-Control",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Expires",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "ETag",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Vary",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Pragma",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										}
									],
									"cookie": [],
									"body": "[\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  },\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  }\n]"
								}
							]
						},
						{
							"name": "Обновление заказа в системе ресторана",
							"request": {
								"auth": {
									"type": "oauth2",
									"oauth2": [
										{
											"key": "scope",
											"value": "read write",
											"type": "string"
										},
										{
											"key": "accessTokenUrl",
											"value": "/security/oauth/token",
											"type": "string"
										},
										{
											"key": "grant_type",
											"value": "client_credentials",
											"type": "string"
										}
									]
								},
								"method": "PUT",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "Accept",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"discriminator\": \"<string>\",\n  \"comment\": \"<string>\",\n  \"eatsId\": \"<string>\",\n  \"items\": [\n    {\n      \"id\": \"<string>\",\n      \"modifications\": [\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        },\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        }\n      ],\n      \"price\": \"<double>\",\n      \"quantity\": \"<integer>\",\n      \"promos\": [\n        {\n          \"type\": \"GIFT\",\n          \"discount\": \"<number>\"\n        },\n        {\n          \"type\": \"GIFT\",\n          \"discount\": \"<number>\"\n        }\n      ],\n      \"name\": \"<string>\"\n    },\n    {\n      \"id\": \"<string>\",\n      \"modifications\": [\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        },\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        }\n      ],\n      \"price\": \"<double>\",\n      \"quantity\": \"<integer>\",\n      \"promos\": [\n        {\n          \"type\": \"PERCENTAGE\",\n          \"discount\": \"<number>\"\n        },\n        {\n          \"type\": \"FIXED\",\n          \"discount\": \"<number>\"\n        }\n      ],\n      \"name\": \"<string>\"\n    }\n  ],\n  \"promos\": [\n    {\n      \"type\": \"FIXED\",\n      \"discount\": \"<number>\"\n    },\n    {\n      \"type\": \"GIFT\",\n      \"discount\": \"<number>\"\n    }\n  ],\n  \"restaurantId\": \"<string>\",\n  \"deliveryInfo\": {\n    \"clientName\": \"<string>\",\n    \"deliveryAddress\": {\n      \"full\": \"<string>\",\n      \"latitude\": \"<string>\",\n      \"longitude\": \"<string>\"\n    },\n    \"deliveryDate\": \"<dateTime>\",\n    \"phoneNumber\": \"<string>\",\n    \"type\": true\n  },\n  \"paymentInfo\": {\n    \"change\": \"<double>\",\n    \"deliveryFee\": \"<double>\",\n    \"itemsCost\": \"<double>\",\n    \"paymentType\": \"CARD\",\n    \"total\": \"<double>\"\n  },\n  \"persons\": \"<integer>\"\n}",
									"options": {
										"raw": {
											"headerFamily": "json",
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{baseUrl}}/order/:orderId",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"order",
										":orderId"
									],
									"variable": [
										{
											"key": "orderId",
											"value": "<string>"
										}
									]
								},
								"description": "Передаётся объект заказа целиком. Актуальная версия модели запроса - application/vnd.eats.order.v2+json"
							},
							"response": [
								{
									"name": "Обновление заказа успешно обработано внутренней системой ресторана",
									"originalRequest": {
										"method": "PUT",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: oauth2",
												"key": "Authorization",
												"value": "<token>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"discriminator\": \"<string>\",\n  \"comment\": \"<string>\",\n  \"eatsId\": \"<string>\",\n  \"items\": [\n    {\n      \"id\": \"<string>\",\n      \"modifications\": [\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        },\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        }\n      ],\n      \"price\": \"<double>\",\n      \"quantity\": \"<integer>\",\n      \"promos\": [\n        {\n          \"type\": \"GIFT\",\n          \"discount\": \"<number>\"\n        },\n        {\n          \"type\": \"GIFT\",\n          \"discount\": \"<number>\"\n        }\n      ],\n      \"name\": \"<string>\"\n    },\n    {\n      \"id\": \"<string>\",\n      \"modifications\": [\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        },\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        }\n      ],\n      \"price\": \"<double>\",\n      \"quantity\": \"<integer>\",\n      \"promos\": [\n        {\n          \"type\": \"PERCENTAGE\",\n          \"discount\": \"<number>\"\n        },\n        {\n          \"type\": \"FIXED\",\n          \"discount\": \"<number>\"\n        }\n      ],\n      \"name\": \"<string>\"\n    }\n  ],\n  \"promos\": [\n    {\n      \"type\": \"FIXED\",\n      \"discount\": \"<number>\"\n    },\n    {\n      \"type\": \"GIFT\",\n      \"discount\": \"<number>\"\n    }\n  ],\n  \"restaurantId\": \"<string>\",\n  \"deliveryInfo\": {\n    \"clientName\": \"<string>\",\n    \"deliveryAddress\": {\n      \"full\": \"<string>\",\n      \"latitude\": \"<string>\",\n      \"longitude\": \"<string>\"\n    },\n    \"deliveryDate\": \"<dateTime>\",\n    \"phoneNumber\": \"<string>\",\n    \"type\": true\n  },\n  \"paymentInfo\": {\n    \"change\": \"<double>\",\n    \"deliveryFee\": \"<double>\",\n    \"itemsCost\": \"<double>\",\n    \"paymentType\": \"CARD\",\n    \"total\": \"<double>\"\n  },\n  \"persons\": \"<integer>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{baseUrl}}/order/:orderId",
											"host": [
												"{{baseUrl}}"
											],
											"path": [
												"order",
												":orderId"
											],
											"variable": [
												{
													"key": "orderId"
												}
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "Cache-Control",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Expires",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "ETag",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Vary",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Pragma",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										}
									],
									"cookie": [],
									"body": "{\n  \"result\": \"<string>\"\n}"
								},
								{
									"name": "Bad request. Ошибка в параметрах, в ответе список ошибок валидации",
									"originalRequest": {
										"method": "PUT",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: oauth2",
												"key": "Authorization",
												"value": "<token>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"discriminator\": \"<string>\",\n  \"comment\": \"<string>\",\n  \"eatsId\": \"<string>\",\n  \"items\": [\n    {\n      \"id\": \"<string>\",\n      \"modifications\": [\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        },\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        }\n      ],\n      \"price\": \"<double>\",\n      \"quantity\": \"<integer>\",\n      \"promos\": [\n        {\n          \"type\": \"GIFT\",\n          \"discount\": \"<number>\"\n        },\n        {\n          \"type\": \"GIFT\",\n          \"discount\": \"<number>\"\n        }\n      ],\n      \"name\": \"<string>\"\n    },\n    {\n      \"id\": \"<string>\",\n      \"modifications\": [\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        },\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        }\n      ],\n      \"price\": \"<double>\",\n      \"quantity\": \"<integer>\",\n      \"promos\": [\n        {\n          \"type\": \"PERCENTAGE\",\n          \"discount\": \"<number>\"\n        },\n        {\n          \"type\": \"FIXED\",\n          \"discount\": \"<number>\"\n        }\n      ],\n      \"name\": \"<string>\"\n    }\n  ],\n  \"promos\": [\n    {\n      \"type\": \"FIXED\",\n      \"discount\": \"<number>\"\n    },\n    {\n      \"type\": \"GIFT\",\n      \"discount\": \"<number>\"\n    }\n  ],\n  \"restaurantId\": \"<string>\",\n  \"deliveryInfo\": {\n    \"clientName\": \"<string>\",\n    \"deliveryAddress\": {\n      \"full\": \"<string>\",\n      \"latitude\": \"<string>\",\n      \"longitude\": \"<string>\"\n    },\n    \"deliveryDate\": \"<dateTime>\",\n    \"phoneNumber\": \"<string>\",\n    \"type\": true\n  },\n  \"paymentInfo\": {\n    \"change\": \"<double>\",\n    \"deliveryFee\": \"<double>\",\n    \"itemsCost\": \"<double>\",\n    \"paymentType\": \"CARD\",\n    \"total\": \"<double>\"\n  },\n  \"persons\": \"<integer>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{baseUrl}}/order/:orderId",
											"host": [
												"{{baseUrl}}"
											],
											"path": [
												"order",
												":orderId"
											],
											"variable": [
												{
													"key": "orderId"
												}
											]
										}
									},
									"status": "Bad Request",
									"code": 400,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "Cache-Control",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Expires",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "ETag",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Vary",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Pragma",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										}
									],
									"cookie": [],
									"body": "[\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  },\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  }\n]"
								},
								{
									"name": "Не пройдена авторизация - истек токен, либо не был передан в запросе",
									"originalRequest": {
										"method": "PUT",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: oauth2",
												"key": "Authorization",
												"value": "<token>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"discriminator\": \"<string>\",\n  \"comment\": \"<string>\",\n  \"eatsId\": \"<string>\",\n  \"items\": [\n    {\n      \"id\": \"<string>\",\n      \"modifications\": [\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        },\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        }\n      ],\n      \"price\": \"<double>\",\n      \"quantity\": \"<integer>\",\n      \"promos\": [\n        {\n          \"type\": \"GIFT\",\n          \"discount\": \"<number>\"\n        },\n        {\n          \"type\": \"GIFT\",\n          \"discount\": \"<number>\"\n        }\n      ],\n      \"name\": \"<string>\"\n    },\n    {\n      \"id\": \"<string>\",\n      \"modifications\": [\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        },\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        }\n      ],\n      \"price\": \"<double>\",\n      \"quantity\": \"<integer>\",\n      \"promos\": [\n        {\n          \"type\": \"PERCENTAGE\",\n          \"discount\": \"<number>\"\n        },\n        {\n          \"type\": \"FIXED\",\n          \"discount\": \"<number>\"\n        }\n      ],\n      \"name\": \"<string>\"\n    }\n  ],\n  \"promos\": [\n    {\n      \"type\": \"FIXED\",\n      \"discount\": \"<number>\"\n    },\n    {\n      \"type\": \"GIFT\",\n      \"discount\": \"<number>\"\n    }\n  ],\n  \"restaurantId\": \"<string>\",\n  \"deliveryInfo\": {\n    \"clientName\": \"<string>\",\n    \"deliveryAddress\": {\n      \"full\": \"<string>\",\n      \"latitude\": \"<string>\",\n      \"longitude\": \"<string>\"\n    },\n    \"deliveryDate\": \"<dateTime>\",\n    \"phoneNumber\": \"<string>\",\n    \"type\": true\n  },\n  \"paymentInfo\": {\n    \"change\": \"<double>\",\n    \"deliveryFee\": \"<double>\",\n    \"itemsCost\": \"<double>\",\n    \"paymentType\": \"CARD\",\n    \"total\": \"<double>\"\n  },\n  \"persons\": \"<integer>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{baseUrl}}/order/:orderId",
											"host": [
												"{{baseUrl}}"
											],
											"path": [
												"order",
												":orderId"
											],
											"variable": [
												{
													"key": "orderId"
												}
											]
										}
									},
									"status": "Unauthorized",
									"code": 401,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "Cache-Control",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Expires",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "ETag",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Vary",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Pragma",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										}
									],
									"cookie": [],
									"body": "{\n  \"reason\": \"<string>\"\n}"
								},
								{
									"name": "Заказ не найден в системе",
									"originalRequest": {
										"method": "PUT",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: oauth2",
												"key": "Authorization",
												"value": "<token>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"discriminator\": \"<string>\",\n  \"comment\": \"<string>\",\n  \"eatsId\": \"<string>\",\n  \"items\": [\n    {\n      \"id\": \"<string>\",\n      \"modifications\": [\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        },\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        }\n      ],\n      \"price\": \"<double>\",\n      \"quantity\": \"<integer>\",\n      \"promos\": [\n        {\n          \"type\": \"GIFT\",\n          \"discount\": \"<number>\"\n        },\n        {\n          \"type\": \"GIFT\",\n          \"discount\": \"<number>\"\n        }\n      ],\n      \"name\": \"<string>\"\n    },\n    {\n      \"id\": \"<string>\",\n      \"modifications\": [\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        },\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        }\n      ],\n      \"price\": \"<double>\",\n      \"quantity\": \"<integer>\",\n      \"promos\": [\n        {\n          \"type\": \"PERCENTAGE\",\n          \"discount\": \"<number>\"\n        },\n        {\n          \"type\": \"FIXED\",\n          \"discount\": \"<number>\"\n        }\n      ],\n      \"name\": \"<string>\"\n    }\n  ],\n  \"promos\": [\n    {\n      \"type\": \"FIXED\",\n      \"discount\": \"<number>\"\n    },\n    {\n      \"type\": \"GIFT\",\n      \"discount\": \"<number>\"\n    }\n  ],\n  \"restaurantId\": \"<string>\",\n  \"deliveryInfo\": {\n    \"clientName\": \"<string>\",\n    \"deliveryAddress\": {\n      \"full\": \"<string>\",\n      \"latitude\": \"<string>\",\n      \"longitude\": \"<string>\"\n    },\n    \"deliveryDate\": \"<dateTime>\",\n    \"phoneNumber\": \"<string>\",\n    \"type\": true\n  },\n  \"paymentInfo\": {\n    \"change\": \"<double>\",\n    \"deliveryFee\": \"<double>\",\n    \"itemsCost\": \"<double>\",\n    \"paymentType\": \"CARD\",\n    \"total\": \"<double>\"\n  },\n  \"persons\": \"<integer>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{baseUrl}}/order/:orderId",
											"host": [
												"{{baseUrl}}"
											],
											"path": [
												"order",
												":orderId"
											],
											"variable": [
												{
													"key": "orderId"
												}
											]
										}
									},
									"status": "Not Found",
									"code": 404,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "Cache-Control",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Expires",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "ETag",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Vary",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Pragma",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										}
									],
									"cookie": [],
									"body": "[\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  },\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  }\n]"
								},
								{
									"name": "Заказ не может быть обновлен",
									"originalRequest": {
										"method": "PUT",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: oauth2",
												"key": "Authorization",
												"value": "<token>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"discriminator\": \"<string>\",\n  \"comment\": \"<string>\",\n  \"eatsId\": \"<string>\",\n  \"items\": [\n    {\n      \"id\": \"<string>\",\n      \"modifications\": [\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        },\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        }\n      ],\n      \"price\": \"<double>\",\n      \"quantity\": \"<integer>\",\n      \"promos\": [\n        {\n          \"type\": \"GIFT\",\n          \"discount\": \"<number>\"\n        },\n        {\n          \"type\": \"GIFT\",\n          \"discount\": \"<number>\"\n        }\n      ],\n      \"name\": \"<string>\"\n    },\n    {\n      \"id\": \"<string>\",\n      \"modifications\": [\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        },\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        }\n      ],\n      \"price\": \"<double>\",\n      \"quantity\": \"<integer>\",\n      \"promos\": [\n        {\n          \"type\": \"PERCENTAGE\",\n          \"discount\": \"<number>\"\n        },\n        {\n          \"type\": \"FIXED\",\n          \"discount\": \"<number>\"\n        }\n      ],\n      \"name\": \"<string>\"\n    }\n  ],\n  \"promos\": [\n    {\n      \"type\": \"FIXED\",\n      \"discount\": \"<number>\"\n    },\n    {\n      \"type\": \"GIFT\",\n      \"discount\": \"<number>\"\n    }\n  ],\n  \"restaurantId\": \"<string>\",\n  \"deliveryInfo\": {\n    \"clientName\": \"<string>\",\n    \"deliveryAddress\": {\n      \"full\": \"<string>\",\n      \"latitude\": \"<string>\",\n      \"longitude\": \"<string>\"\n    },\n    \"deliveryDate\": \"<dateTime>\",\n    \"phoneNumber\": \"<string>\",\n    \"type\": true\n  },\n  \"paymentInfo\": {\n    \"change\": \"<double>\",\n    \"deliveryFee\": \"<double>\",\n    \"itemsCost\": \"<double>\",\n    \"paymentType\": \"CARD\",\n    \"total\": \"<double>\"\n  },\n  \"persons\": \"<integer>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{baseUrl}}/order/:orderId",
											"host": [
												"{{baseUrl}}"
											],
											"path": [
												"order",
												":orderId"
											],
											"variable": [
												{
													"key": "orderId"
												}
											]
										}
									},
									"status": "Unprocessable Entity (WebDAV) (RFC 4918)",
									"code": 422,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "Cache-Control",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Expires",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "ETag",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Vary",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Pragma",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										}
									],
									"cookie": [],
									"body": "[\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  },\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  }\n]"
								},
								{
									"name": "Внутренние ошибки сервера",
									"originalRequest": {
										"method": "PUT",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											},
											{
												"key": "Accept",
												"value": "application/json"
											},
											{
												"description": "Added as a part of security scheme: oauth2",
												"key": "Authorization",
												"value": "<token>"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n  \"discriminator\": \"<string>\",\n  \"comment\": \"<string>\",\n  \"eatsId\": \"<string>\",\n  \"items\": [\n    {\n      \"id\": \"<string>\",\n      \"modifications\": [\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        },\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        }\n      ],\n      \"price\": \"<double>\",\n      \"quantity\": \"<integer>\",\n      \"promos\": [\n        {\n          \"type\": \"GIFT\",\n          \"discount\": \"<number>\"\n        },\n        {\n          \"type\": \"GIFT\",\n          \"discount\": \"<number>\"\n        }\n      ],\n      \"name\": \"<string>\"\n    },\n    {\n      \"id\": \"<string>\",\n      \"modifications\": [\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        },\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        }\n      ],\n      \"price\": \"<double>\",\n      \"quantity\": \"<integer>\",\n      \"promos\": [\n        {\n          \"type\": \"PERCENTAGE\",\n          \"discount\": \"<number>\"\n        },\n        {\n          \"type\": \"FIXED\",\n          \"discount\": \"<number>\"\n        }\n      ],\n      \"name\": \"<string>\"\n    }\n  ],\n  \"promos\": [\n    {\n      \"type\": \"FIXED\",\n      \"discount\": \"<number>\"\n    },\n    {\n      \"type\": \"GIFT\",\n      \"discount\": \"<number>\"\n    }\n  ],\n  \"restaurantId\": \"<string>\",\n  \"deliveryInfo\": {\n    \"clientName\": \"<string>\",\n    \"deliveryAddress\": {\n      \"full\": \"<string>\",\n      \"latitude\": \"<string>\",\n      \"longitude\": \"<string>\"\n    },\n    \"deliveryDate\": \"<dateTime>\",\n    \"phoneNumber\": \"<string>\",\n    \"type\": true\n  },\n  \"paymentInfo\": {\n    \"change\": \"<double>\",\n    \"deliveryFee\": \"<double>\",\n    \"itemsCost\": \"<double>\",\n    \"paymentType\": \"CARD\",\n    \"total\": \"<double>\"\n  },\n  \"persons\": \"<integer>\"\n}",
											"options": {
												"raw": {
													"headerFamily": "json",
													"language": "json"
												}
											}
										},
										"url": {
											"raw": "{{baseUrl}}/order/:orderId",
											"host": [
												"{{baseUrl}}"
											],
											"path": [
												"order",
												":orderId"
											],
											"variable": [
												{
													"key": "orderId"
												}
											]
										}
									},
									"status": "Internal Server Error",
									"code": 500,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Content-Type",
											"value": "application/json"
										},
										{
											"key": "Cache-Control",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Expires",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "ETag",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Vary",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										},
										{
											"key": "Pragma",
											"value": "",
											"description": {
												"content": "",
												"type": "text/plain"
											}
										}
									],
									"cookie": [],
									"body": "[\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  },\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  }\n]"
								}
							]
						}
					]
				},
				{
					"name": "Создание заказа в системе ресторана",
					"request": {
						"auth": {
							"type": "oauth2",
							"oauth2": [
								{
									"key": "scope",
									"value": "read write",
									"type": "string"
								},
								{
									"key": "accessTokenUrl",
									"value": "/security/oauth/token",
									"type": "string"
								},
								{
									"key": "grant_type",
									"value": "client_credentials",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"discriminator\": \"<string>\",\n  \"comment\": \"<string>\",\n  \"eatsId\": \"<string>\",\n  \"items\": [\n    {\n      \"id\": \"<string>\",\n      \"modifications\": [\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        },\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        }\n      ],\n      \"price\": \"<double>\",\n      \"quantity\": \"<integer>\",\n      \"promos\": [\n        {\n          \"type\": \"GIFT\",\n          \"discount\": \"<number>\"\n        },\n        {\n          \"type\": \"GIFT\",\n          \"discount\": \"<number>\"\n        }\n      ],\n      \"name\": \"<string>\"\n    },\n    {\n      \"id\": \"<string>\",\n      \"modifications\": [\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        },\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        }\n      ],\n      \"price\": \"<double>\",\n      \"quantity\": \"<integer>\",\n      \"promos\": [\n        {\n          \"type\": \"PERCENTAGE\",\n          \"discount\": \"<number>\"\n        },\n        {\n          \"type\": \"FIXED\",\n          \"discount\": \"<number>\"\n        }\n      ],\n      \"name\": \"<string>\"\n    }\n  ],\n  \"promos\": [\n    {\n      \"type\": \"FIXED\",\n      \"discount\": \"<number>\"\n    },\n    {\n      \"type\": \"GIFT\",\n      \"discount\": \"<number>\"\n    }\n  ],\n  \"restaurantId\": \"<string>\",\n  \"deliveryInfo\": {\n    \"clientName\": \"<string>\",\n    \"deliveryAddress\": {\n      \"full\": \"<string>\",\n      \"latitude\": \"<string>\",\n      \"longitude\": \"<string>\"\n    },\n    \"deliveryDate\": \"<dateTime>\",\n    \"phoneNumber\": \"<string>\",\n    \"type\": true\n  },\n  \"paymentInfo\": {\n    \"change\": \"<double>\",\n    \"deliveryFee\": \"<double>\",\n    \"itemsCost\": \"<double>\",\n    \"paymentType\": \"CARD\",\n    \"total\": \"<double>\"\n  },\n  \"persons\": \"<integer>\"\n}",
							"options": {
								"raw": {
									"headerFamily": "json",
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseUrl}}/order",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"order"
							]
						},
						"description": "MarketplaceOrder - схема заказа при доставке силами партнера. YandexOrder - схема заказа при доставке силами Яндекс.Еда. Актуальная версия модели запроса - application/vnd.eats.order.v2+json"
					},
					"response": [
						{
							"name": "Заказ успешно обработан внутренней системой ресторана",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "Accept",
										"value": "application/json"
									},
									{
										"description": "Added as a part of security scheme: oauth2",
										"key": "Authorization",
										"value": "<token>"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"discriminator\": \"<string>\",\n  \"comment\": \"<string>\",\n  \"eatsId\": \"<string>\",\n  \"items\": [\n    {\n      \"id\": \"<string>\",\n      \"modifications\": [\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        },\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        }\n      ],\n      \"price\": \"<double>\",\n      \"quantity\": \"<integer>\",\n      \"promos\": [\n        {\n          \"type\": \"GIFT\",\n          \"discount\": \"<number>\"\n        },\n        {\n          \"type\": \"GIFT\",\n          \"discount\": \"<number>\"\n        }\n      ],\n      \"name\": \"<string>\"\n    },\n    {\n      \"id\": \"<string>\",\n      \"modifications\": [\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        },\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        }\n      ],\n      \"price\": \"<double>\",\n      \"quantity\": \"<integer>\",\n      \"promos\": [\n        {\n          \"type\": \"PERCENTAGE\",\n          \"discount\": \"<number>\"\n        },\n        {\n          \"type\": \"FIXED\",\n          \"discount\": \"<number>\"\n        }\n      ],\n      \"name\": \"<string>\"\n    }\n  ],\n  \"promos\": [\n    {\n      \"type\": \"FIXED\",\n      \"discount\": \"<number>\"\n    },\n    {\n      \"type\": \"GIFT\",\n      \"discount\": \"<number>\"\n    }\n  ],\n  \"restaurantId\": \"<string>\",\n  \"deliveryInfo\": {\n    \"clientName\": \"<string>\",\n    \"deliveryAddress\": {\n      \"full\": \"<string>\",\n      \"latitude\": \"<string>\",\n      \"longitude\": \"<string>\"\n    },\n    \"deliveryDate\": \"<dateTime>\",\n    \"phoneNumber\": \"<string>\",\n    \"type\": true\n  },\n  \"paymentInfo\": {\n    \"change\": \"<double>\",\n    \"deliveryFee\": \"<double>\",\n    \"itemsCost\": \"<double>\",\n    \"paymentType\": \"CARD\",\n    \"total\": \"<double>\"\n  },\n  \"persons\": \"<integer>\"\n}",
									"options": {
										"raw": {
											"headerFamily": "json",
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{baseUrl}}/order",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"order"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Cache-Control",
									"value": "",
									"description": {
										"content": "",
										"type": "text/plain"
									}
								},
								{
									"key": "Expires",
									"value": "",
									"description": {
										"content": "",
										"type": "text/plain"
									}
								},
								{
									"key": "ETag",
									"value": "",
									"description": {
										"content": "",
										"type": "text/plain"
									}
								},
								{
									"key": "Vary",
									"value": "",
									"description": {
										"content": "",
										"type": "text/plain"
									}
								},
								{
									"key": "Pragma",
									"value": "",
									"description": {
										"content": "",
										"type": "text/plain"
									}
								}
							],
							"cookie": [],
							"body": "{\n  \"result\": \"<string>\",\n  \"orderId\": \"<string>\"\n}"
						},
						{
							"name": "Bad request. Ошибка в параметрах, в ответе список ошибок валидации",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "Accept",
										"value": "application/json"
									},
									{
										"description": "Added as a part of security scheme: oauth2",
										"key": "Authorization",
										"value": "<token>"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"discriminator\": \"<string>\",\n  \"comment\": \"<string>\",\n  \"eatsId\": \"<string>\",\n  \"items\": [\n    {\n      \"id\": \"<string>\",\n      \"modifications\": [\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        },\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        }\n      ],\n      \"price\": \"<double>\",\n      \"quantity\": \"<integer>\",\n      \"promos\": [\n        {\n          \"type\": \"GIFT\",\n          \"discount\": \"<number>\"\n        },\n        {\n          \"type\": \"GIFT\",\n          \"discount\": \"<number>\"\n        }\n      ],\n      \"name\": \"<string>\"\n    },\n    {\n      \"id\": \"<string>\",\n      \"modifications\": [\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        },\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        }\n      ],\n      \"price\": \"<double>\",\n      \"quantity\": \"<integer>\",\n      \"promos\": [\n        {\n          \"type\": \"PERCENTAGE\",\n          \"discount\": \"<number>\"\n        },\n        {\n          \"type\": \"FIXED\",\n          \"discount\": \"<number>\"\n        }\n      ],\n      \"name\": \"<string>\"\n    }\n  ],\n  \"promos\": [\n    {\n      \"type\": \"FIXED\",\n      \"discount\": \"<number>\"\n    },\n    {\n      \"type\": \"GIFT\",\n      \"discount\": \"<number>\"\n    }\n  ],\n  \"restaurantId\": \"<string>\",\n  \"deliveryInfo\": {\n    \"clientName\": \"<string>\",\n    \"deliveryAddress\": {\n      \"full\": \"<string>\",\n      \"latitude\": \"<string>\",\n      \"longitude\": \"<string>\"\n    },\n    \"deliveryDate\": \"<dateTime>\",\n    \"phoneNumber\": \"<string>\",\n    \"type\": true\n  },\n  \"paymentInfo\": {\n    \"change\": \"<double>\",\n    \"deliveryFee\": \"<double>\",\n    \"itemsCost\": \"<double>\",\n    \"paymentType\": \"CARD\",\n    \"total\": \"<double>\"\n  },\n  \"persons\": \"<integer>\"\n}",
									"options": {
										"raw": {
											"headerFamily": "json",
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{baseUrl}}/order",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"order"
									]
								}
							},
							"status": "Bad Request",
							"code": 400,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Cache-Control",
									"value": "",
									"description": {
										"content": "",
										"type": "text/plain"
									}
								},
								{
									"key": "Expires",
									"value": "",
									"description": {
										"content": "",
										"type": "text/plain"
									}
								},
								{
									"key": "ETag",
									"value": "",
									"description": {
										"content": "",
										"type": "text/plain"
									}
								},
								{
									"key": "Vary",
									"value": "",
									"description": {
										"content": "",
										"type": "text/plain"
									}
								},
								{
									"key": "Pragma",
									"value": "",
									"description": {
										"content": "",
										"type": "text/plain"
									}
								}
							],
							"cookie": [],
							"body": "[\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  },\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  }\n]"
						},
						{
							"name": "Не пройдена авторизация - истек токен, либо не был передан в запросе",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "Accept",
										"value": "application/json"
									},
									{
										"description": "Added as a part of security scheme: oauth2",
										"key": "Authorization",
										"value": "<token>"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"discriminator\": \"<string>\",\n  \"comment\": \"<string>\",\n  \"eatsId\": \"<string>\",\n  \"items\": [\n    {\n      \"id\": \"<string>\",\n      \"modifications\": [\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        },\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        }\n      ],\n      \"price\": \"<double>\",\n      \"quantity\": \"<integer>\",\n      \"promos\": [\n        {\n          \"type\": \"GIFT\",\n          \"discount\": \"<number>\"\n        },\n        {\n          \"type\": \"GIFT\",\n          \"discount\": \"<number>\"\n        }\n      ],\n      \"name\": \"<string>\"\n    },\n    {\n      \"id\": \"<string>\",\n      \"modifications\": [\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        },\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        }\n      ],\n      \"price\": \"<double>\",\n      \"quantity\": \"<integer>\",\n      \"promos\": [\n        {\n          \"type\": \"PERCENTAGE\",\n          \"discount\": \"<number>\"\n        },\n        {\n          \"type\": \"FIXED\",\n          \"discount\": \"<number>\"\n        }\n      ],\n      \"name\": \"<string>\"\n    }\n  ],\n  \"promos\": [\n    {\n      \"type\": \"FIXED\",\n      \"discount\": \"<number>\"\n    },\n    {\n      \"type\": \"GIFT\",\n      \"discount\": \"<number>\"\n    }\n  ],\n  \"restaurantId\": \"<string>\",\n  \"deliveryInfo\": {\n    \"clientName\": \"<string>\",\n    \"deliveryAddress\": {\n      \"full\": \"<string>\",\n      \"latitude\": \"<string>\",\n      \"longitude\": \"<string>\"\n    },\n    \"deliveryDate\": \"<dateTime>\",\n    \"phoneNumber\": \"<string>\",\n    \"type\": true\n  },\n  \"paymentInfo\": {\n    \"change\": \"<double>\",\n    \"deliveryFee\": \"<double>\",\n    \"itemsCost\": \"<double>\",\n    \"paymentType\": \"CARD\",\n    \"total\": \"<double>\"\n  },\n  \"persons\": \"<integer>\"\n}",
									"options": {
										"raw": {
											"headerFamily": "json",
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{baseUrl}}/order",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"order"
									]
								}
							},
							"status": "Unauthorized",
							"code": 401,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Cache-Control",
									"value": "",
									"description": {
										"content": "",
										"type": "text/plain"
									}
								},
								{
									"key": "Expires",
									"value": "",
									"description": {
										"content": "",
										"type": "text/plain"
									}
								},
								{
									"key": "ETag",
									"value": "",
									"description": {
										"content": "",
										"type": "text/plain"
									}
								},
								{
									"key": "Vary",
									"value": "",
									"description": {
										"content": "",
										"type": "text/plain"
									}
								},
								{
									"key": "Pragma",
									"value": "",
									"description": {
										"content": "",
										"type": "text/plain"
									}
								}
							],
							"cookie": [],
							"body": "{\n  \"reason\": \"<string>\"\n}"
						},
						{
							"name": "Внутренние ошибки сервера",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									},
									{
										"key": "Accept",
										"value": "application/json"
									},
									{
										"description": "Added as a part of security scheme: oauth2",
										"key": "Authorization",
										"value": "<token>"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"discriminator\": \"<string>\",\n  \"comment\": \"<string>\",\n  \"eatsId\": \"<string>\",\n  \"items\": [\n    {\n      \"id\": \"<string>\",\n      \"modifications\": [\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        },\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        }\n      ],\n      \"price\": \"<double>\",\n      \"quantity\": \"<integer>\",\n      \"promos\": [\n        {\n          \"type\": \"GIFT\",\n          \"discount\": \"<number>\"\n        },\n        {\n          \"type\": \"GIFT\",\n          \"discount\": \"<number>\"\n        }\n      ],\n      \"name\": \"<string>\"\n    },\n    {\n      \"id\": \"<string>\",\n      \"modifications\": [\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        },\n        {\n          \"id\": \"<string>\",\n          \"price\": \"<double>\",\n          \"quantity\": \"<integer>\",\n          \"name\": \"<string>\"\n        }\n      ],\n      \"price\": \"<double>\",\n      \"quantity\": \"<integer>\",\n      \"promos\": [\n        {\n          \"type\": \"PERCENTAGE\",\n          \"discount\": \"<number>\"\n        },\n        {\n          \"type\": \"FIXED\",\n          \"discount\": \"<number>\"\n        }\n      ],\n      \"name\": \"<string>\"\n    }\n  ],\n  \"promos\": [\n    {\n      \"type\": \"FIXED\",\n      \"discount\": \"<number>\"\n    },\n    {\n      \"type\": \"GIFT\",\n      \"discount\": \"<number>\"\n    }\n  ],\n  \"restaurantId\": \"<string>\",\n  \"deliveryInfo\": {\n    \"clientName\": \"<string>\",\n    \"deliveryAddress\": {\n      \"full\": \"<string>\",\n      \"latitude\": \"<string>\",\n      \"longitude\": \"<string>\"\n    },\n    \"deliveryDate\": \"<dateTime>\",\n    \"phoneNumber\": \"<string>\",\n    \"type\": true\n  },\n  \"paymentInfo\": {\n    \"change\": \"<double>\",\n    \"deliveryFee\": \"<double>\",\n    \"itemsCost\": \"<double>\",\n    \"paymentType\": \"CARD\",\n    \"total\": \"<double>\"\n  },\n  \"persons\": \"<integer>\"\n}",
									"options": {
										"raw": {
											"headerFamily": "json",
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{baseUrl}}/order",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"order"
									]
								}
							},
							"status": "Internal Server Error",
							"code": 500,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								},
								{
									"key": "Cache-Control",
									"value": "",
									"description": {
										"content": "",
										"type": "text/plain"
									}
								},
								{
									"key": "Expires",
									"value": "",
									"description": {
										"content": "",
										"type": "text/plain"
									}
								},
								{
									"key": "ETag",
									"value": "",
									"description": {
										"content": "",
										"type": "text/plain"
									}
								},
								{
									"key": "Vary",
									"value": "",
									"description": {
										"content": "",
										"type": "text/plain"
									}
								},
								{
									"key": "Pragma",
									"value": "",
									"description": {
										"content": "",
										"type": "text/plain"
									}
								}
							],
							"cookie": [],
							"body": "[\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  },\n  {\n    \"code\": \"<integer>\",\n    \"description\": \"<string>\"\n  }\n]"
						}
					]
				}
			]
		}
	],
	"auth": {
		"type": "oauth2",
		"oauth2": [
			{
				"key": "scope",
				"value": "read write",
				"type": "string"
			},
			{
				"key": "accessTokenUrl",
				"value": "/security/oauth/token",
				"type": "string"
			},
			{
				"key": "grant_type",
				"value": "client_credentials",
				"type": "string"
			}
		]
	},
	"variable": [
		{
			"key": "baseUrl",
			"value": "/"
		}
	]
}