Download OpenAPI specification:Download
Аутентификация пользователя
Content-Type required | any Value: "application/json" |
grant_type | string Value: "password" Тип аутентификации |
username | string Логин пользователя |
password | string Пароль пользователя |
Аутентификационные данные
Невалидный токен, неверный логин или пароль
{- "grant_type": "password",
- "username": "string",
- "password": "string"
}
{- "access_token": "string",
- "token_type": "Bearer",
- "expires_in": 0,
- "refresh_token": "string",
- "server_time": "2024-07-30T14:07:50Z"
}
Удаление сессии
TransportCompanyAdmin
) Сессия удалена
Невалидный токен, неверный логин или пароль
{- "code": 401,
- "error": "Unauthorized",
- "error_description": "Unauthorized"
}
Список марок автомобилей и прицепов
vehicle_type | string Enum: "car" "trailer" Тип транспорта |
Марки транспортных средств
{- "items": [
- {
- "id": 0,
- "name": "string",
- "vehicle_types": [
- "car"
], - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z",
- "deleted_at": "2024-07-30T14:07:50Z"
}
]
}
Получить группы транспортных средств
TransportCompanyAdmin
) transport_type | string Enum: "lorry" "truck" "trailer" Тип транспорта |
transport_body_type | string Enum: "awning" "full_metal" "isothermal" "refrigerator" "dropside" "tanker" "container" Тип кузова |
Группы транспортных средств
Непредвиденная ошибка
{- "items": [
- {
- "id": "string",
- "tonnage": 0,
- "volume": 0,
- "transport_type": "lorry",
- "transport_body_type": "awning"
}
]
}
Поиск водителей
TransportCompanyAdmin
) company_id required | string <uuid> ID компании |
status | Array of strings Статусы водителя |
full_name | string ФИО водителя |
suitable_for_shipping | string UUID перевозки, для назначения в которую подходит водитель |
human_friendly_id | string |
updated_at | string <date-time> |
created_at | string <date-time> |
admitted_to | Array of strings Items Enum: "category_1" "category_2" Категории, к которым водитель имеет допуск |
sort | string Enum: "created_at" "updated_at" "full_name" |
order | string Enum: "asc" "desc" Тип упорядочивания элементов |
per_page | integer >= 1 Default: 10 Количество элементов на странице |
page | integer >= 1 Default: 1 Номер текущей страницы |
Неверные параметры запроса
Невалидный токен, неверный логин или пароль
Нет прав на выполнение действия
{- "kind": "DriverCollection",
- "items": [
- {
- "id": "string",
- "kind": "ResourceDriver",
- "human_friendly_id": "человекочитаемый id",
- "full_name": "string",
- "company_id": "string",
- "freezing": [
- {
- "kind": "ResourceFreezingValue",
- "code_name": "string",
- "name": "string",
- "end_time": "2024-07-30T14:07:50Z"
}
], - "prohibited_categories": [
- "category_1"
], - "delivery_allowed": true,
- "status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "driver_secret_info": {
- "common": {
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "country_id": 0,
- "first_name": "string",
- "last_name": "string",
- "middle_name": "string",
- "birth_date": "2024-07-30T14:07:50Z"
}, - "doc": {
- "type": "passport",
- "number": "string",
- "issued_at": "2024-07-30T14:07:50Z",
- "subdivision_code": "370-011",
- "who_issued": "string",
- "expired_at": "2024-07-30T14:07:50Z"
}, - "address": {
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "country_id": 0,
- "city": "string",
- "street": "string",
- "house_number": "string",
- "zip_code": "string",
- "room": "string"
}, - "inn": "string",
- "driver_license": {
- "number": "string",
- "who_issued": "string",
- "issued_at": "2024-07-30T14:07:50Z",
- "expired_at": "2024-07-30T14:07:50Z"
}, - "have_medical_book": true,
- "phones": [
- "string"
]
}, - "power_of_attorney": {
- "start": "2024-07-30T14:07:50Z",
- "end": "2024-07-30T14:07:50Z"
}, - "attorneys": {
- "cartegory_1": {
- "from": "2024-07-30T14:07:50Z",
- "until": "2024-07-30T14:07:50Z",
- "status": "new"
}, - "cartegory_2": {
- "from": "2024-07-30T14:07:50Z",
- "until": "2024-07-30T14:07:50Z",
- "status": "new"
}
}, - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
], - "page_info": {
- "total_results": 0,
- "results_per_page": 0,
- "current_page": 0
}
}
Создание водителей
TransportCompanyAdmin
) company_id required | string <uuid> ID компании |
Content-Type required | any Value: "application/json" |
prohibited_categories | Array of any Items Enum: "category_1" "category_2" "category_3" Категории клиентов на которые ресурс запрещен к назначению |
delivery_allowed | boolean Водитель допущен только к заявкам с почасовой оплатой. |
driver_secret_info required | object Эти данные должны храниться в защищённом сигменте |
OK
Неверные параметры запроса
Невалидный токен, неверный логин или пароль
Нет прав на выполнение действия
{- "prohibited_categories": [
- "category_1"
], - "delivery_allowed": true,
- "driver_secret_info": {
- "common": {
- "country_id": 0,
- "first_name": "string",
- "last_name": "string",
- "middle_name": "string",
- "birth_date": "2024-07-30T14:07:50Z"
}, - "doc": {
- "type": "passport",
- "number": "string",
- "issued_at": "2024-07-30T14:07:50Z",
- "subdivision_code": "370-011",
- "who_issued": "string",
- "expired_at": "2024-07-30T14:07:50Z"
}, - "address": {
- "country_id": 0,
- "city": "string",
- "street": "string",
- "house_number": "string",
- "zip_code": "string",
- "room": "string"
}, - "inn": "string",
- "driver_license": {
- "number": "string",
- "who_issued": "string",
- "issued_at": "2024-07-30T14:07:50Z",
- "expired_at": "2024-07-30T14:07:50Z"
}, - "have_medical_book": true,
- "phones": [
- "string"
]
}
}
{- "id": "string",
- "kind": "ResourceDriver",
- "human_friendly_id": "человекочитаемый id",
- "full_name": "string",
- "company_id": "string",
- "freezing": [
- {
- "kind": "ResourceFreezingValue",
- "code_name": "string",
- "name": "string",
- "end_time": "2024-07-30T14:07:50Z"
}
], - "prohibited_categories": [
- "category_1"
], - "delivery_allowed": true,
- "status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "driver_secret_info": {
- "common": {
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "country_id": 0,
- "first_name": "string",
- "last_name": "string",
- "middle_name": "string",
- "birth_date": "2024-07-30T14:07:50Z"
}, - "doc": {
- "type": "passport",
- "number": "string",
- "issued_at": "2024-07-30T14:07:50Z",
- "subdivision_code": "370-011",
- "who_issued": "string",
- "expired_at": "2024-07-30T14:07:50Z"
}, - "address": {
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "country_id": 0,
- "city": "string",
- "street": "string",
- "house_number": "string",
- "zip_code": "string",
- "room": "string"
}, - "inn": "string",
- "driver_license": {
- "number": "string",
- "who_issued": "string",
- "issued_at": "2024-07-30T14:07:50Z",
- "expired_at": "2024-07-30T14:07:50Z"
}, - "have_medical_book": true,
- "phones": [
- "string"
]
}, - "power_of_attorney": {
- "start": "2024-07-30T14:07:50Z",
- "end": "2024-07-30T14:07:50Z"
}, - "attorneys": {
- "cartegory_1": {
- "from": "2024-07-30T14:07:50Z",
- "until": "2024-07-30T14:07:50Z",
- "status": "new"
}, - "cartegory_2": {
- "from": "2024-07-30T14:07:50Z",
- "until": "2024-07-30T14:07:50Z",
- "status": "new"
}
}, - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
Получение водителя
TransportCompanyAdmin
) company_id required | string <uuid> ID компании |
driver_id required | string <uuid> ID водителя |
Неверные параметры запроса
Невалидный токен, неверный логин или пароль
Нет прав на выполнение действия
Объект не найден
{- "id": "string",
- "kind": "ResourceDriver",
- "human_friendly_id": "человекочитаемый id",
- "full_name": "string",
- "company_id": "string",
- "freezing": [
- {
- "kind": "ResourceFreezingValue",
- "code_name": "string",
- "name": "string",
- "end_time": "2024-07-30T14:07:50Z"
}
], - "prohibited_categories": [
- "category_1"
], - "delivery_allowed": true,
- "status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "driver_secret_info": {
- "common": {
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "country_id": 0,
- "first_name": "string",
- "last_name": "string",
- "middle_name": "string",
- "birth_date": "2024-07-30T14:07:50Z"
}, - "doc": {
- "type": "passport",
- "number": "string",
- "issued_at": "2024-07-30T14:07:50Z",
- "subdivision_code": "370-011",
- "who_issued": "string",
- "expired_at": "2024-07-30T14:07:50Z"
}, - "address": {
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "country_id": 0,
- "city": "string",
- "street": "string",
- "house_number": "string",
- "zip_code": "string",
- "room": "string"
}, - "inn": "string",
- "driver_license": {
- "number": "string",
- "who_issued": "string",
- "issued_at": "2024-07-30T14:07:50Z",
- "expired_at": "2024-07-30T14:07:50Z"
}, - "have_medical_book": true,
- "phones": [
- "string"
]
}, - "power_of_attorney": {
- "start": "2024-07-30T14:07:50Z",
- "end": "2024-07-30T14:07:50Z"
}, - "attorneys": {
- "cartegory_1": {
- "from": "2024-07-30T14:07:50Z",
- "until": "2024-07-30T14:07:50Z",
- "status": "new"
}, - "cartegory_2": {
- "from": "2024-07-30T14:07:50Z",
- "until": "2024-07-30T14:07:50Z",
- "status": "new"
}
}, - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
Изменение водителя
TransportCompanyAdmin
) company_id required | string <uuid> ID компании |
driver_id required | string <uuid> ID водителя |
Content-Type required | any Value: "application/json" |
prohibited_categories | Array of any Items Enum: "category_1" "category_2" "category_3" Категории клиентов на которые ресурс запрещен к назначению |
delivery_allowed | boolean Водитель допущен только к заявкам с почасовой оплатой. |
driver_secret_info required | object Эти данные должны храниться в защищённом сигменте |
Неверные параметры запроса
Невалидный токен, неверный логин или пароль
Нет прав на выполнение действия
Объект не найден
{- "prohibited_categories": [
- "category_1"
], - "delivery_allowed": true,
- "driver_secret_info": {
- "common": {
- "country_id": 0,
- "first_name": "string",
- "last_name": "string",
- "middle_name": "string",
- "birth_date": "2024-07-30T14:07:50Z"
}, - "doc": {
- "type": "passport",
- "number": "string",
- "issued_at": "2024-07-30T14:07:50Z",
- "subdivision_code": "370-011",
- "who_issued": "string",
- "expired_at": "2024-07-30T14:07:50Z"
}, - "address": {
- "country_id": 0,
- "city": "string",
- "street": "string",
- "house_number": "string",
- "zip_code": "string",
- "room": "string"
}, - "inn": "string",
- "driver_license": {
- "number": "string",
- "who_issued": "string",
- "issued_at": "2024-07-30T14:07:50Z",
- "expired_at": "2024-07-30T14:07:50Z"
}, - "have_medical_book": true,
- "phones": [
- "string"
]
}
}
{- "id": "string",
- "kind": "ResourceDriver",
- "human_friendly_id": "человекочитаемый id",
- "full_name": "string",
- "company_id": "string",
- "freezing": [
- {
- "kind": "ResourceFreezingValue",
- "code_name": "string",
- "name": "string",
- "end_time": "2024-07-30T14:07:50Z"
}
], - "prohibited_categories": [
- "category_1"
], - "delivery_allowed": true,
- "status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "driver_secret_info": {
- "common": {
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "country_id": 0,
- "first_name": "string",
- "last_name": "string",
- "middle_name": "string",
- "birth_date": "2024-07-30T14:07:50Z"
}, - "doc": {
- "type": "passport",
- "number": "string",
- "issued_at": "2024-07-30T14:07:50Z",
- "subdivision_code": "370-011",
- "who_issued": "string",
- "expired_at": "2024-07-30T14:07:50Z"
}, - "address": {
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "country_id": 0,
- "city": "string",
- "street": "string",
- "house_number": "string",
- "zip_code": "string",
- "room": "string"
}, - "inn": "string",
- "driver_license": {
- "number": "string",
- "who_issued": "string",
- "issued_at": "2024-07-30T14:07:50Z",
- "expired_at": "2024-07-30T14:07:50Z"
}, - "have_medical_book": true,
- "phones": [
- "string"
]
}, - "power_of_attorney": {
- "start": "2024-07-30T14:07:50Z",
- "end": "2024-07-30T14:07:50Z"
}, - "attorneys": {
- "cartegory_1": {
- "from": "2024-07-30T14:07:50Z",
- "until": "2024-07-30T14:07:50Z",
- "status": "new"
}, - "cartegory_2": {
- "from": "2024-07-30T14:07:50Z",
- "until": "2024-07-30T14:07:50Z",
- "status": "new"
}
}, - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
Удаление водителя
TransportCompanyAdmin
) company_id required | string <uuid> ID компании |
driver_id required | string <uuid> ID водителя |
Водитель удален
Неверные параметры запроса
Невалидный токен, неверный логин или пароль
Нет прав на выполнение действия
Объект не найден
{- "code": 400,
- "error": "BadRequest",
- "error_description": "BadRequest"
}
Получение информации о необходимых документах
TransportCompanyAdmin
) OK
Неверные параметры запроса
Невалидный токен, неверный логин или пароль
Нет прав на выполнение действия
{- "kind": "DriverDocumentTypeCollection",
- "items": [
- {
- "kind": "ResourceDocumentType",
- "id": 0,
- "name": "string",
- "description": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
]
}
Получения списка созданных документов
TransportCompanyAdmin
) page | integer >= 1 Default: 1 Номер текущей страницы |
per_page | integer >= 1 Default: 10 Количество элементов на странице |
OK
Неверные параметры запроса
Невалидный токен, неверный логин или пароль
Нет прав на выполнение действия
null
Создание документа
TransportCompanyAdmin
) Content-Type required | any Value: "application/json" |
document_type_id | integer Тип документа |
comment | string Nullable Комментарий |
Ok
Неверные параметры запроса
Невалидный токен, неверный логин или пароль
Нет прав на выполнение действия
{- "document_type_id": 0,
- "comment": "string"
}
{- "id": "string",
- "comment": "string",
- "entity_id": "string",
- "company_id": "string",
- "document_type_id": 0,
- "files": [
- {
- "id": "string",
- "url": "string",
- "signed_url": "string",
- "file_name": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
], - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
Получение информации о документе
TransportCompanyAdmin
) Ok
Неверные параметры запроса
Невалидный токен, неверный логин или пароль
Нет прав на выполнение действия
Объект не найден
{- "id": "string",
- "comment": "string",
- "entity_id": "string",
- "company_id": "string",
- "document_type_id": 0,
- "files": [
- {
- "id": "string",
- "url": "string",
- "signed_url": "string",
- "file_name": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
], - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
Добавление файла к документу
TransportCompanyAdmin
) Content-Type required | any Value: "multipart/form-data" |
file | string <binary> Файл |
Ok
Неверные параметры запроса
Невалидный токен, неверный логин или пароль
Нет прав на выполнение действия
{- "id": "string",
- "url": "string",
- "signed_url": "string",
- "file_name": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
Удаление файла который прикреплен к документу
TransportCompanyAdmin
) Deleted
Неверные параметры запроса
Невалидный токен, неверный логин или пароль
Нет прав на выполнение действия
Объект не найден
{- "code": 400,
- "error": "BadRequest",
- "error_description": "BadRequest"
}
Скачивание файла
TransportCompanyAdmin
) Ok
Создание автомобиля
TransportCompanyAdmin
) kind required | string Enum: "ResourceCarLorryAwning" "ResourceCarLorryRefrigerator" "ResourceCarLorryFullMetal" "ResourceCarLorryIsothermal" "ResourceCarLorryDropside" "ResourceCarTruck" |
Content-Type required | any Value: "application/json" |
loading_option | object Вариант погрузки |
lifting_capacity_id | string |
brand | string |
car_additional_info | object |
car_number | string |
car_phone | string |
dimensions_cargo_hold | object Габариты грузового отсека |
max_lifting_capacity | number |
number_sts | string |
owner_sts | string |
owning_type | string |
Автомобиль
{- "loading_option": {
- "full": true,
- "rear": true,
- "lateral": true,
- "upper": true,
- "removable_upper_beam": true,
- "removable_side_racks": true,
- "rigid_board": true,
- "number_of_belts": 0
}, - "lifting_capacity_id": "string",
- "brand": "string",
- "car_additional_info": {
- "body_number": "string",
- "chassis_number": "string",
- "engine_number": "string",
- "vin": "string"
}, - "car_number": "string",
- "car_phone": "string",
- "dimensions_cargo_hold": {
- "length": 0,
- "width": 0,
- "height": 0
}, - "max_lifting_capacity": 0,
- "number_sts": "string",
- "owner_sts": "string",
- "owning_type": "string"
}
{- "loading_option": {
- "full": true,
- "rear": true,
- "lateral": true,
- "upper": true,
- "removable_upper_beam": true,
- "removable_side_racks": true,
- "rigid_board": true,
- "number_of_belts": 0
}, - "id": "string",
- "human_friendly_id": "человекочитаемый id",
- "kind": "ResourceCarLorryAwning",
- "lifting_capacity_id": "string",
- "lifting_capacity": {
- "id": "string",
- "tonnage": 0,
- "volume": 0,
- "transport_type": "lorry",
- "transport_body_type": "awning"
}, - "company_id": "string",
- "status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "freezing": [
- {
- "kind": "ResourceFreezingValue",
- "code_name": "string",
- "name": "string",
- "end_time": "2024-07-30T14:07:50Z"
}
], - "brand": "string",
- "car_additional_info": {
- "body_number": "string",
- "chassis_number": "string",
- "engine_number": "string",
- "vin": "string"
}, - "car_number": "string",
- "car_phone": "string",
- "dimensions_cargo_hold": {
- "length": 0,
- "width": 0,
- "height": 0
}, - "max_lifting_capacity": 0,
- "number_sts": "string",
- "owner_sts": "string",
- "owning_type": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
Получение автомобиля
TransportCompanyAdmin
) car_id required | string <uuid> ID машины |
Автомобиль
{- "loading_option": {
- "full": true,
- "rear": true,
- "lateral": true,
- "upper": true,
- "removable_upper_beam": true,
- "removable_side_racks": true,
- "rigid_board": true,
- "number_of_belts": 0
}, - "id": "string",
- "human_friendly_id": "человекочитаемый id",
- "kind": "ResourceCarLorryAwning",
- "lifting_capacity_id": "string",
- "lifting_capacity": {
- "id": "string",
- "tonnage": 0,
- "volume": 0,
- "transport_type": "lorry",
- "transport_body_type": "awning"
}, - "company_id": "string",
- "status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "freezing": [
- {
- "kind": "ResourceFreezingValue",
- "code_name": "string",
- "name": "string",
- "end_time": "2024-07-30T14:07:50Z"
}
], - "brand": "string",
- "car_additional_info": {
- "body_number": "string",
- "chassis_number": "string",
- "engine_number": "string",
- "vin": "string"
}, - "car_number": "string",
- "car_phone": "string",
- "dimensions_cargo_hold": {
- "length": 0,
- "width": 0,
- "height": 0
}, - "max_lifting_capacity": 0,
- "number_sts": "string",
- "owner_sts": "string",
- "owning_type": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
Обновление автомобиля
TransportCompanyAdmin
) car_id required | string <uuid> ID машины |
Content-Type required | any Value: "application/json" |
loading_option | object Вариант погрузки |
lifting_capacity_id | string |
brand | string |
car_additional_info | object |
car_number | string |
car_phone | string |
dimensions_cargo_hold | object Габариты грузового отсека |
max_lifting_capacity | number |
number_sts | string |
owner_sts | string |
owning_type | string |
Автомобиль
{- "loading_option": {
- "full": true,
- "rear": true,
- "lateral": true,
- "upper": true,
- "removable_upper_beam": true,
- "removable_side_racks": true,
- "rigid_board": true,
- "number_of_belts": 0
}, - "lifting_capacity_id": "string",
- "brand": "string",
- "car_additional_info": {
- "body_number": "string",
- "chassis_number": "string",
- "engine_number": "string",
- "vin": "string"
}, - "car_number": "string",
- "car_phone": "string",
- "dimensions_cargo_hold": {
- "length": 0,
- "width": 0,
- "height": 0
}, - "max_lifting_capacity": 0,
- "number_sts": "string",
- "owner_sts": "string",
- "owning_type": "string"
}
{- "loading_option": {
- "full": true,
- "rear": true,
- "lateral": true,
- "upper": true,
- "removable_upper_beam": true,
- "removable_side_racks": true,
- "rigid_board": true,
- "number_of_belts": 0
}, - "id": "string",
- "human_friendly_id": "человекочитаемый id",
- "kind": "ResourceCarLorryAwning",
- "lifting_capacity_id": "string",
- "lifting_capacity": {
- "id": "string",
- "tonnage": 0,
- "volume": 0,
- "transport_type": "lorry",
- "transport_body_type": "awning"
}, - "company_id": "string",
- "status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "freezing": [
- {
- "kind": "ResourceFreezingValue",
- "code_name": "string",
- "name": "string",
- "end_time": "2024-07-30T14:07:50Z"
}
], - "brand": "string",
- "car_additional_info": {
- "body_number": "string",
- "chassis_number": "string",
- "engine_number": "string",
- "vin": "string"
}, - "car_number": "string",
- "car_phone": "string",
- "dimensions_cargo_hold": {
- "length": 0,
- "width": 0,
- "height": 0
}, - "max_lifting_capacity": 0,
- "number_sts": "string",
- "owner_sts": "string",
- "owning_type": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
Поиск по машинам
TransportCompanyAdmin
) company_id required | string <uuid> ID компании |
query | string Госномер или марка машины |
status | Array of strings Статусы машины |
human_friendly_id | string |
brand | string Марка |
number_sts | string Номер по СТС |
car_number | string Государственный регистрационный номер |
suitable_for_shipping | string UUID перевозки, для назначения в которую подходит автомобиль |
updated_at | string <date-time> |
created_at | string <date-time> |
sort | string Enum: "created_at" "updated_at" "brand" |
order | string Enum: "asc" "desc" Тип упорядочивания элементов |
page | integer >= 1 Default: 1 Номер текущей страницы |
per_page | integer >= 1 Default: 10 Количество элементов на странице |
Неверные параметры запроса
Невалидный токен, неверный логин или пароль
Нет прав на выполнение действия
Объект не найден
{- "kind": "Collection",
- "items": [
- {
- "id": "string",
- "human_friendly_id": "человекочитаемый id",
- "kind": "ResourceCar",
- "brand": "string",
- "company_id": "string",
- "status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "lifting_capacity": {
- "id": "string",
- "tonnage": 0,
- "volume": 0,
- "transport_type": "lorry",
- "transport_body_type": "awning"
}, - "freezing": [
- {
- "kind": "ResourceFreezingValue",
- "code_name": "string",
- "name": "string",
- "end_time": "2024-07-30T14:07:50Z"
}
], - "number_sts": "string",
- "owner_sts": "string",
- "owning_type": "own",
- "max_lifting_capacity": 5.2,
- "car_number": "string",
- "car_additional_info": {
- "vin": "string",
- "engine_number": "string",
- "chassis_number": "string",
- "body_number": "string"
}, - "car_phone": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z",
- "additional": {
- "disinfected_from": "2024-07-30T14:07:50Z",
- "disinfected_until": "2024-07-30T14:07:50Z",
- "is_disinfected": true,
- "has_temperature_check": true
}, - "loading_option": {
- "full": true,
- "lateral": true,
- "rear": true,
- "upper": true,
- "removable_side_racks": true,
- "removable_upper_beam": true,
- "rigid_board": true,
- "number_of_belts": 0
}
}
], - "page_info": {
- "total_results": 0,
- "results_per_page": 0,
- "current_page": 0
}
}
Получение информации о необходимых документах
TransportCompanyAdmin
) Ok
Неверные параметры запроса
Невалидный токен, неверный логин или пароль
Нет прав на выполнение действия
{- "kind": "DriverDocumentTypeCollection",
- "items": [
- {
- "kind": "ResourceDocumentType",
- "id": 0,
- "name": "string",
- "description": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
]
}
Получения списка созданных документов
TransportCompanyAdmin
) page | integer >= 1 Default: 1 Номер текущей страницы |
per_page | integer >= 1 Default: 10 Количество элементов на странице |
Документы
Неверные параметры запроса
Невалидный токен, неверный логин или пароль
Нет прав на выполнение действия
{- "items": [
- {
- "id": "string",
- "comment": "string",
- "entity_id": "string",
- "company_id": "string",
- "document_type_id": 0,
- "files": [
- {
- "id": "string",
- "url": "string",
- "signed_url": "string",
- "file_name": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
], - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
]
}
Создание документа
TransportCompanyAdmin
) Content-Type required | any Value: "application/json" |
document_type_id | integer Тип документа |
comment | string Nullable Комментарий |
Ok
Неверные параметры запроса
Невалидный токен, неверный логин или пароль
Нет прав на выполнение действия
{- "document_type_id": 0,
- "comment": "string"
}
{- "id": "string",
- "comment": "string",
- "entity_id": "string",
- "company_id": "string",
- "document_type_id": 0,
- "files": [
- {
- "id": "string",
- "url": "string",
- "signed_url": "string",
- "file_name": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
], - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
Получение информации о документе
TransportCompanyAdmin
) Ok
Неверные параметры запроса
Невалидный токен, неверный логин или пароль
Нет прав на выполнение действия
Объект не найден
{- "id": "string",
- "comment": "string",
- "entity_id": "string",
- "company_id": "string",
- "document_type_id": 0,
- "files": [
- {
- "id": "string",
- "url": "string",
- "signed_url": "string",
- "file_name": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
], - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
Добавление файла к документу
TransportCompanyAdmin
) Content-Type required | any Value: "multipart/form-data" |
file | string <binary> Файл |
Ok
Неверные параметры запроса
Невалидный токен, неверный логин или пароль
Нет прав на выполнение действия
{- "id": "string",
- "url": "string",
- "signed_url": "string",
- "file_name": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
Удаление файла который прикреплен к документу
TransportCompanyAdmin
) Deleted
Неверные параметры запроса
Невалидный токен, неверный логин или пароль
Нет прав на выполнение действия
Объект не найден
{- "code": 400,
- "error": "BadRequest",
- "error_description": "BadRequest"
}
Скачивание файла
TransportCompanyAdmin
) Ok
Создание прицепа по типу
TransportCompanyAdmin
) kind required | string Enum: "ResourceTrailerDropside" "ResourceTrailerAwning" "ResourceTrailerFullMetal" "ResourceTrailerRefrigerator" |
Content-Type required | any Value: "application/json" |
loading_option | object Вариант погрузки |
lifting_capacity_id | string |
brand | string |
trailer_additional_info | object |
trailer_number | string |
dimensions_cargo_hold | object Габариты грузового отсека |
max_lifting_capacity | number |
number_sts | string |
owner_sts | string |
owning_type | string |
OK
{- "loading_option": {
- "full": true,
- "rear": true,
- "lateral": true,
- "rigid_board": true,
- "number_of_belts": 0
}, - "lifting_capacity_id": "string",
- "brand": "string",
- "trailer_additional_info": {
- "chassis_number": "string",
- "vin": "string"
}, - "trailer_number": "string",
- "dimensions_cargo_hold": {
- "length": 0,
- "width": 0,
- "height": 0
}, - "max_lifting_capacity": 0,
- "number_sts": "string",
- "owner_sts": "string",
- "owning_type": "string"
}
{- "loading_option": {
- "full": true,
- "rear": true,
- "lateral": true,
- "rigid_board": true,
- "number_of_belts": 0
}, - "id": "string",
- "human_friendly_id": "человекочитаемый id",
- "kind": "ResourceCarLorryAwning",
- "lifting_capacity_id": "string",
- "lifting_capacity": {
- "id": "string",
- "tonnage": 0,
- "volume": 0,
- "transport_type": "lorry",
- "transport_body_type": "awning"
}, - "company_id": "string",
- "status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "freezing": [
- {
- "kind": "ResourceFreezingValue",
- "code_name": "string",
- "name": "string",
- "end_time": "2024-07-30T14:07:50Z"
}
], - "brand": "string",
- "trailer_additional_info": {
- "chassis_number": "string",
- "vin": "string"
}, - "trailer_number": "string",
- "dimensions_cargo_hold": {
- "length": 0,
- "width": 0,
- "height": 0
}, - "max_lifting_capacity": 0,
- "number_sts": "string",
- "owner_sts": "string",
- "owning_type": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
Получение информации о прицепе
TransportCompanyAdmin
) trailer_id required | string <uuid> ID прицепа |
OK
{- "loading_option": {
- "full": true,
- "rear": true,
- "lateral": true,
- "rigid_board": true,
- "number_of_belts": 0
}, - "id": "string",
- "human_friendly_id": "человекочитаемый id",
- "kind": "ResourceCarLorryAwning",
- "lifting_capacity_id": "string",
- "lifting_capacity": {
- "id": "string",
- "tonnage": 0,
- "volume": 0,
- "transport_type": "lorry",
- "transport_body_type": "awning"
}, - "company_id": "string",
- "status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "freezing": [
- {
- "kind": "ResourceFreezingValue",
- "code_name": "string",
- "name": "string",
- "end_time": "2024-07-30T14:07:50Z"
}
], - "brand": "string",
- "trailer_additional_info": {
- "chassis_number": "string",
- "vin": "string"
}, - "trailer_number": "string",
- "dimensions_cargo_hold": {
- "length": 0,
- "width": 0,
- "height": 0
}, - "max_lifting_capacity": 0,
- "number_sts": "string",
- "owner_sts": "string",
- "owning_type": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
Обновление информации о прицепе
TransportCompanyAdmin
) trailer_id required | string <uuid> ID прицепа |
Content-Type required | any Value: "application/json" |
loading_option | object Вариант погрузки |
lifting_capacity_id | string |
brand | string |
trailer_additional_info | object |
trailer_number | string |
dimensions_cargo_hold | object Габариты грузового отсека |
max_lifting_capacity | number |
number_sts | string |
owner_sts | string |
owning_type | string |
OK
{- "loading_option": {
- "full": true,
- "rear": true,
- "lateral": true,
- "rigid_board": true,
- "number_of_belts": 0
}, - "lifting_capacity_id": "string",
- "brand": "string",
- "trailer_additional_info": {
- "chassis_number": "string",
- "vin": "string"
}, - "trailer_number": "string",
- "dimensions_cargo_hold": {
- "length": 0,
- "width": 0,
- "height": 0
}, - "max_lifting_capacity": 0,
- "number_sts": "string",
- "owner_sts": "string",
- "owning_type": "string"
}
{- "loading_option": {
- "full": true,
- "rear": true,
- "lateral": true,
- "rigid_board": true,
- "number_of_belts": 0
}, - "id": "string",
- "human_friendly_id": "человекочитаемый id",
- "kind": "ResourceCarLorryAwning",
- "lifting_capacity_id": "string",
- "lifting_capacity": {
- "id": "string",
- "tonnage": 0,
- "volume": 0,
- "transport_type": "lorry",
- "transport_body_type": "awning"
}, - "company_id": "string",
- "status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "freezing": [
- {
- "kind": "ResourceFreezingValue",
- "code_name": "string",
- "name": "string",
- "end_time": "2024-07-30T14:07:50Z"
}
], - "brand": "string",
- "trailer_additional_info": {
- "chassis_number": "string",
- "vin": "string"
}, - "trailer_number": "string",
- "dimensions_cargo_hold": {
- "length": 0,
- "width": 0,
- "height": 0
}, - "max_lifting_capacity": 0,
- "number_sts": "string",
- "owner_sts": "string",
- "owning_type": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
Поиск по прицепам
TransportCompanyAdmin
) company_id required | string <uuid> id компании ( можно получить из JWT token ) |
query | string Госномер или марка прицепа |
status | Array of strings Статус прицепа |
human_friendly_id | string |
brand | string Марка |
vin | string VIN номер |
trailer_number | string Государственный регистрационный номер |
suitable_for_shipping | string UUID перевозки, для назначения в которую подходит автомобиль |
updated_at | string <date-time> |
created_at | string <date-time> |
sort | string Enum: "created_at" "updated_at" "brand" |
order | string Enum: "asc" "desc" Тип упорядочивания элементов |
page | integer >= 1 Default: 1 Номер текущей страницы |
per_page | integer >= 1 Default: 10 Количество элементов на странице |
Неверные параметры запроса
Невалидный токен, неверный логин или пароль
Нет прав на выполнение действия
Объект не найден
{- "kind": "Collection",
- "items": [
- {
- "id": "string",
- "human_friendly_id": "человекочитаемый id",
- "kind": "ResourceTrailer",
- "brand": "string",
- "company_id": "string",
- "status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "lifting_capacity": {
- "id": "string",
- "tonnage": 0,
- "volume": 0,
- "transport_type": "lorry",
- "transport_body_type": "awning"
}, - "freezing": [
- {
- "kind": "ResourceFreezingValue",
- "code_name": "string",
- "name": "string",
- "end_time": "2024-07-30T14:07:50Z"
}
], - "number_sts": "string",
- "owner_sts": "string",
- "owning_type": "own",
- "trailer_number": "string",
- "trailer_additional_info": {
- "vin": "string",
- "chassis_number": "string"
}, - "lifting_capacity_id": "string",
- "max_lifting_capacity": 5.2,
- "dimensions_cargo_hold": {
- "length": 0,
- "width": 0,
- "height": 0
}, - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z",
- "additional": {
- "disinfected_from": "2024-07-30T14:07:50Z",
- "disinfected_until": "2024-07-30T14:07:50Z",
- "is_disinfected": true,
- "has_temperature_check": true
}, - "loading_option": {
- "full": true,
- "lateral": true,
- "rear": true,
- "upper": true,
- "removable_side_racks": true,
- "removable_upper_beam": true,
- "rigid_board": true,
- "number_of_belts": 0
}
}
], - "page_info": {
- "total_results": 0,
- "results_per_page": 0,
- "current_page": 0
}
}
Получение информации о необходимых документах
TransportCompanyAdmin
) Ok
Неверные параметры запроса
Невалидный токен, неверный логин или пароль
Нет прав на выполнение действия
{- "kind": "DriverDocumentTypeCollection",
- "items": [
- {
- "kind": "ResourceDocumentType",
- "id": 0,
- "name": "string",
- "description": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
]
}
Получения списка созданных документов
TransportCompanyAdmin
) page | integer >= 1 Default: 1 Номер текущей страницы |
per_page | integer >= 1 Default: 10 Количество элементов на странице |
Документы
Неверные параметры запроса
Невалидный токен, неверный логин или пароль
Нет прав на выполнение действия
{- "items": [
- {
- "id": "string",
- "comment": "string",
- "entity_id": "string",
- "company_id": "string",
- "document_type_id": 0,
- "files": [
- {
- "id": "string",
- "url": "string",
- "signed_url": "string",
- "file_name": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
], - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
]
}
Создание документа
TransportCompanyAdmin
) Content-Type required | any Value: "application/json" |
document_type_id | integer Тип документа |
comment | string Nullable Комментарий |
Ok
Неверные параметры запроса
Невалидный токен, неверный логин или пароль
Нет прав на выполнение действия
{- "document_type_id": 0,
- "comment": "string"
}
{- "id": "string",
- "comment": "string",
- "entity_id": "string",
- "company_id": "string",
- "document_type_id": 0,
- "files": [
- {
- "id": "string",
- "url": "string",
- "signed_url": "string",
- "file_name": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
], - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
Получение информации о документе
TransportCompanyAdmin
) Ok
Неверные параметры запроса
Невалидный токен, неверный логин или пароль
Нет прав на выполнение действия
Объект не найден
{- "id": "string",
- "comment": "string",
- "entity_id": "string",
- "company_id": "string",
- "document_type_id": 0,
- "files": [
- {
- "id": "string",
- "url": "string",
- "signed_url": "string",
- "file_name": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
], - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
Добавление файла к документу
TransportCompanyAdmin
) Content-Type required | any Value: "multipart/form-data" |
file | string <binary> Файл |
Ok
Неверные параметры запроса
Невалидный токен, неверный логин или пароль
Нет прав на выполнение действия
{- "id": "string",
- "url": "string",
- "signed_url": "string",
- "file_name": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
Удаление файла который прикреплен к документу
TransportCompanyAdmin
) Deleted
Неверные параметры запроса
Невалидный токен, неверный логин или пароль
Нет прав на выполнение действия
Объект не найден
{- "code": 400,
- "error": "BadRequest",
- "error_description": "BadRequest"
}
Скачивание файла
TransportCompanyAdmin
) Ok
Получить список заявок
TransportCompanyAdmin
) human_friendly_id | string Человекочитаемый ID |
type | Array of strings Items Enum: "shipping_request" "contract" "delivery" "city_delivery" |
body_type | any Enum: "awning" "full_metal" "isothermal" "refrigerator" "dropside" Тип кузово ТС |
circular_route | boolean |
max_tonnage | number <double> Тоннаж по заявке |
begin_from | string <date> Дата начала заявки - ОТ |
begin_until | string <date> Дата начала заявки - ДО |
status | string Enum: "new" "winner_selection" "reserved" "approval_waiting" "trip_waiting" "in_progress" "done" "canceled" "canceled_by_transport_company" "canceled_by_cargo_owning_company" "failed_by_transport_company" "failed_by_cargo_owning_company" "expired" "waiting_forwarder" Статус заявки:
|
target_company_id | any UUID компании, для которой отобразить "целевые" предложения (теневой торг) |
from_location_id | string ID места начала заявки |
from_radius | integer Радиус вокруг места начала заявки в километрах |
direction_location_id | string ID места направления заявки |
direction_radius | integer Радиус вокруг места направления заявки в километрах |
set_bid | boolean Только те заявки на которые сделана ставка |
kind | any Value: "ShippingRequest" Тип объекта |
sort required | any Enum: "created_at" "updated_at" "car_supply_at" |
order | string Enum: "asc" "desc" Тип упорядочивания элементов |
{- "kind": "ShippingRequestCollection",
- "items": [
- {
- "id": "string",
- "human_friendly_id": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z",
- "kind": "ShippingRequest",
- "status": {
- "code_name": "new",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "status_history": [
- {
- "status": {
- "code_name": "new",
- "comment": "string"
}, - "created_at": "2024-07-30T14:07:50Z"
}
], - "type": "shipping_request",
- "cargo_owning_company_id": "string",
- "author_id": "string",
- "shipping_order_id": "string",
- "contract_id": "string",
- "contract_hfid": "string",
- "client_category": "category_1",
- "comment": "string",
- "resource_assignment_time": 30,
- "completed_at": "2024-07-30T14:07:50Z",
- "contract_begins_at": "2024-07-30T14:07:50Z",
- "contract_ends_at": "2024-07-30T14:07:50Z",
- "contract_type": "by_shippings_count",
- "shippings_count": 1,
- "max_shippings_per_day": 1,
- "max_shippings_per_week": 1,
- "shipping_available_in": 0,
- "resource_requirements": {
- "transport_body_type": [
- "awning"
], - "transport_type": [
- "lorry"
], - "lifting_capacity": [
- "string"
], - "lifting_capacities": [
- {
- "id": "string",
- "kind": "string",
- "tonnage": 0,
- "volume": 0,
- "transport_body_type": "awning",
- "transport_type": "lorry"
}
], - "has_russian_citizen": true,
- "has_driver_coveralls": true,
- "has_no_criminal_records": true,
- "has_rigid_board": true,
- "has_medical_book": true,
- "has_removable_upper_beam": true,
- "has_removable_side_racks": true,
- "is_express": true,
- "number_of_belts": 0,
- "has_shipping_power_of_attorney_original": true,
- "is_disinfected": true,
- "has_temperature_check": true,
- "temperature_condition": {
- "min": 0,
- "max": 0
}, - "own_transport_only": true,
- "timber_bunks": true,
- "tir_document": true,
- "cmr_document": true
}, - "cargo_description": "string",
- "cargo_tonnage": 0,
- "cargo_volume": 0,
- "cargo_cost": 0,
- "cargo_adr": "1",
- "cargo_length": 0.5,
- "cargo_width": 0.5,
- "cargo_height": 0.5,
- "cargo_places": 0,
- "cargo_packing": "reels",
- "route_segments": [
- {
- "id": 0,
- "from_route_point_id": 0,
- "to_route_point_id": 0,
- "distance": 0,
- "unloading": {
- "type": [
- "full"
], - "duration": 300
}, - "loading": {
- "type": [
- "full"
], - "duration": 300
}
}
], - "route_points": [
- {
- "id": 0,
- "car_supply_range": [
- {
- "from": "2024-07-30T14:07:50Z",
- "until": "2024-07-30T14:07:50Z"
}
], - "car_supply_grouped_range": [
- [
- {
- "date": "2018-04-16T00:00:00+00:00",
- "times": [
- {
- "from": "2018-04-16T10:00:00+00:00",
- "until": "2018-04-16T12:00:00+00:00"
}, - {
- "from": "2018-04-16T13:00:00+00:00",
- "until": "2018-04-16T18:00:00+00:00"
}
]
}, - {
- "date": "2018-04-16T00:00:00+00:00",
- "times": [
- {
- "from": "2018-04-17T10:00:00+00:00",
- "until": "2018-04-17T12:00:00+00:00"
}, - {
- "from": "2018-04-17T13:00:00+00:00",
- "until": "2018-04-17T18:00:00+00:00"
}
]
}
]
], - "car_supply_at": "2024-07-30T14:07:50Z",
- "need_document_work": true,
- "additional_services": [
- {
- "id": "string",
- "name": "string",
- "count": 1,
- "price": 0
}
], - "counter_agent": {
- "private_person": true,
- "legal_entity_title": "string",
- "legal_entity_inn": "string",
- "legal_entity_kpp": "string",
- "legal_entity_opf_name": "string",
- "private_person_full_name": "string",
- "private_person_passport_type": "passport",
- "private_person_passport_number": "string",
- "private_person_passport_issuer": "string",
- "private_person_passport_issued_at": "2024-07-30",
- "private_person_passport_info": "2024-07-30"
}, - "cargo_receiver_sender_info": {
- "address": "string",
- "phone": "string",
- "company_name": "string",
- "contact_name": "string",
- "contact_inn": "string",
- "contact_kpp": "string",
- "contact_opf_code": "string",
- "contact_opf_name": "string",
- "passport_number": "string",
- "passport_issued_at": null,
- "passport_who_issued": "string"
}, - "location": {
- "country": "Россия",
- "country_iso_code": "RU",
- "federal_district": "Северо-Западный",
- "region": "Санкт-Петербург",
- "region_type": "г",
- "region_with_type": "г Санкт-Петербург",
- "region_fias_id": "c2deb16a-0330-4f05-821f-1d09c93331e6",
- "region_kladr_id": "7800000000000",
- "region_iso_code": "RU-SPE",
- "area": "Краснокамский",
- "area_type": "р-н",
- "area_with_type": "Краснокамский р-н",
- "area_fias_id": "c278cbbc-e209-4b0f-b20e-9c19ed6f6802",
- "area_kladr_id": "0203100000000",
- "city": "Санкт-Петербург",
- "city_type": "г",
- "city_with_type": "г Санкт-Петербург",
- "city_fias_id": "c2deb16a-0330-4f05-821f-1d09c93331e6",
- "city_kladr_id": "7800000000000",
- "settlement": "Жилгородок",
- "settlement_type": "п",
- "settlement_with_type": "п Жилгородок",
- "settlement_fias_id": "8eab754d-38df-4fac-bebd-b27a46f45ea2",
- "settlement_kladr_id": "4701200005100",
- "street": "Московский",
- "street_type": "пр-кт",
- "street_with_type": "Московский пр-кт",
- "street_fias_id": "01b3acfc-5a4d-4d0f-a2de-67aef6effe31",
- "street_kladr_id": "78000000000085200",
- "house": "дом 1А/2 строение 3 корпус 4 литера Б",
- "house_fias_id": "315a5cc2-7676-460f-ab44-a85c38eea89a",
- "house_kladr_id": "7800000000013430010",
- "office": "офис 1 помещение 2",
- "fias_id": "315a5cc2-7676-460f-ab44-a85c38eea89a",
- "kladr_id": "7800000000013430010",
- "lat": 59.9017959,
- "lng": 30.3194694,
- "zip_code": "196084",
- "timezone_name": "Europe/Moscow",
- "level": "country",
- "country_id": 643,
- "locality": "Жилгородок п",
- "fraction": 0,
- "housing": 0,
- "structure": 0,
- "literature": "string",
- "apartment": "string",
- "latitude": 0,
- "longitude": 0,
- "local_time_zone": 0,
- "comment": "string",
- "id": "string",
- "code": "string",
- "full_string_address": "string",
- "value": "string",
- "is_canonical": true
}, - "radius": 1
}
], - "route_direction_id": "string",
- "route_direction": {
- "country": "Россия",
- "country_iso_code": "RU",
- "federal_district": "Северо-Западный",
- "region": "Санкт-Петербург",
- "region_type": "г",
- "region_with_type": "г Санкт-Петербург",
- "region_fias_id": "c2deb16a-0330-4f05-821f-1d09c93331e6",
- "region_kladr_id": "7800000000000",
- "region_iso_code": "RU-SPE",
- "area": "Краснокамский",
- "area_type": "р-н",
- "area_with_type": "Краснокамский р-н",
- "area_fias_id": "c278cbbc-e209-4b0f-b20e-9c19ed6f6802",
- "area_kladr_id": "0203100000000",
- "city": "Санкт-Петербург",
- "city_type": "г",
- "city_with_type": "г Санкт-Петербург",
- "city_fias_id": "c2deb16a-0330-4f05-821f-1d09c93331e6",
- "city_kladr_id": "7800000000000",
- "settlement": "Жилгородок",
- "settlement_type": "п",
- "settlement_with_type": "п Жилгородок",
- "settlement_fias_id": "8eab754d-38df-4fac-bebd-b27a46f45ea2",
- "settlement_kladr_id": "4701200005100",
- "street": "Московский",
- "street_type": "пр-кт",
- "street_with_type": "Московский пр-кт",
- "street_fias_id": "01b3acfc-5a4d-4d0f-a2de-67aef6effe31",
- "street_kladr_id": "78000000000085200",
- "house": "дом 1А/2 строение 3 корпус 4 литера Б",
- "house_fias_id": "315a5cc2-7676-460f-ab44-a85c38eea89a",
- "house_kladr_id": "7800000000013430010",
- "office": "офис 1 помещение 2",
- "fias_id": "315a5cc2-7676-460f-ab44-a85c38eea89a",
- "kladr_id": "7800000000013430010",
- "lat": 59.9017959,
- "lng": 30.3194694,
- "zip_code": "196084",
- "timezone_name": "Europe/Moscow",
- "level": "country",
- "country_id": 643,
- "locality": "Жилгородок п",
- "fraction": 0,
- "housing": 0,
- "structure": 0,
- "literature": "string",
- "apartment": "string",
- "latitude": 0,
- "longitude": 0,
- "local_time_zone": 0,
- "comment": "string",
- "id": "string",
- "code": "string",
- "full_string_address": "string",
- "value": "string",
- "is_canonical": true
}, - "circular_route": true,
- "is_interval": true,
- "offer_deadline": "2024-07-30T14:07:50Z",
- "intermediate_results_at": "2024-07-30T14:07:50Z",
- "auction_type": "instant_reservation",
- "many_executors_allowed": false,
- "bid_step": 0,
- "bids": [
- {
- "id": "string",
- "ntk_id": "string",
- "author": {
- "id": "string",
- "human_friendly_id": "string",
- "title": "string",
- "country_id": 0,
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "inn": "string",
- "kpp": "string",
- "tax_type": "with_vat",
- "opf_id": 0,
- "opf": {
- "id": 1,
- "code": "12300",
- "name": "ООО"
}, - "rating": 0,
- "logo_url": "string"
}, - "shipping_request_id": "string",
- "shipping_order_id": "string",
- "value": 1,
- "status": "current",
- "tax_type": "with_vat",
- "expedited_payment": false,
- "shippings_count": 1,
- "auction_stage_number": 1,
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
], - "expedited_payment_available": true,
- "shipping_order_contract_id": "string",
- "shipping_order_contract_hfid": "string",
- "contract_shipping_id": "string",
- "contract_shipping_price": 0,
- "dynamic_pricing": true,
- "document_flow": [
- "scancopy"
], - "closing_documents_period": 1,
- "closing_documents_period_type": "calendar",
- "closing_documents": [
- {
- "name": "string",
- "count": 0
}
], - "agreement_type": "shipping_agreement",
- "change_requests_allowed": true,
- "terms_by_partnership_contract": true,
- "idle_time_cost_without_vat": 50,
- "documents_for_payment": [
- "bill_of_lading"
], - "payment_procedure": "prepayment",
- "payment_period": 1,
- "payment_period_type": "calendar",
- "payment_type": "per_hour",
- "min_work_hours": 0,
- "cancellation_without_penalty_before": "2024-07-30T14:07:50Z",
- "cancellation_penalty_percent": 0,
- "minimum_cancellation_penalty_without_vat": 0,
- "price": 0,
- "expedited_payment_fee": 0,
- "min_bid": 0,
- "max_bid": 0,
- "winning_bid": 0,
- "expedited_payment_winning_bid": 0,
- "is_bid_winning": true,
- "tc_requirements_changes": [
- {
- "id": "string",
- "status": "string",
- "price": 0,
- "car_supply_at": null
}
], - "tc_requirements_change": {
- "id": "string",
- "status": "string",
- "price": 0,
- "car_supply_at": null
}, - "contact": {
- "full_name": "string",
- "phone": "stringstrin",
- "extension_number": "string",
- "email": "string"
}
}
], - "page_info": {
- "total_results": 0,
- "results_per_page": 0,
- "current_page": 0
}
}
Получить заявку по ID
TransportCompanyAdmin
) id required | string <uuid> ID заявки |
OK
{- "id": "string",
- "human_friendly_id": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z",
- "kind": "ShippingRequest",
- "status": {
- "code_name": "new",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "status_history": [
- {
- "status": {
- "code_name": "new",
- "comment": "string"
}, - "created_at": "2024-07-30T14:07:50Z"
}
], - "type": "shipping_request",
- "cargo_owning_company_id": "string",
- "author_id": "string",
- "shipping_order_id": "string",
- "contract_id": "string",
- "contract_hfid": "string",
- "client_category": "category_1",
- "comment": "string",
- "resource_assignment_time": 30,
- "completed_at": "2024-07-30T14:07:50Z",
- "contract_begins_at": "2024-07-30T14:07:50Z",
- "contract_ends_at": "2024-07-30T14:07:50Z",
- "contract_type": "by_shippings_count",
- "shippings_count": 1,
- "max_shippings_per_day": 1,
- "max_shippings_per_week": 1,
- "shipping_available_in": 0,
- "resource_requirements": {
- "transport_body_type": [
- "awning"
], - "transport_type": [
- "lorry"
], - "lifting_capacity": [
- "string"
], - "lifting_capacities": [
- {
- "id": "string",
- "kind": "string",
- "tonnage": 0,
- "volume": 0,
- "transport_body_type": "awning",
- "transport_type": "lorry"
}
], - "has_russian_citizen": true,
- "has_driver_coveralls": true,
- "has_no_criminal_records": true,
- "has_rigid_board": true,
- "has_medical_book": true,
- "has_removable_upper_beam": true,
- "has_removable_side_racks": true,
- "is_express": true,
- "number_of_belts": 0,
- "has_shipping_power_of_attorney_original": true,
- "is_disinfected": true,
- "has_temperature_check": true,
- "temperature_condition": {
- "min": 0,
- "max": 0
}, - "own_transport_only": true,
- "timber_bunks": true,
- "tir_document": true,
- "cmr_document": true
}, - "cargo_description": "string",
- "cargo_tonnage": 0,
- "cargo_volume": 0,
- "cargo_cost": 0,
- "cargo_adr": "1",
- "cargo_length": 0.5,
- "cargo_width": 0.5,
- "cargo_height": 0.5,
- "cargo_places": 0,
- "cargo_packing": "reels",
- "route_segments": [
- {
- "id": 0,
- "from_route_point_id": 0,
- "to_route_point_id": 0,
- "distance": 0,
- "unloading": {
- "type": [
- "full"
], - "duration": 300
}, - "loading": {
- "type": [
- "full"
], - "duration": 300
}
}
], - "route_points": [
- {
- "id": 0,
- "car_supply_range": [
- {
- "from": "2024-07-30T14:07:50Z",
- "until": "2024-07-30T14:07:50Z"
}
], - "car_supply_grouped_range": [
- [
- {
- "date": "2018-04-16T00:00:00+00:00",
- "times": [
- {
- "from": "2018-04-16T10:00:00+00:00",
- "until": "2018-04-16T12:00:00+00:00"
}, - {
- "from": "2018-04-16T13:00:00+00:00",
- "until": "2018-04-16T18:00:00+00:00"
}
]
}, - {
- "date": "2018-04-16T00:00:00+00:00",
- "times": [
- {
- "from": "2018-04-17T10:00:00+00:00",
- "until": "2018-04-17T12:00:00+00:00"
}, - {
- "from": "2018-04-17T13:00:00+00:00",
- "until": "2018-04-17T18:00:00+00:00"
}
]
}
]
], - "car_supply_at": "2024-07-30T14:07:50Z",
- "need_document_work": true,
- "additional_services": [
- {
- "id": "string",
- "name": "string",
- "count": 1,
- "price": 0
}
], - "counter_agent": {
- "private_person": true,
- "legal_entity_title": "string",
- "legal_entity_inn": "string",
- "legal_entity_kpp": "string",
- "legal_entity_opf_name": "string",
- "private_person_full_name": "string",
- "private_person_passport_type": "passport",
- "private_person_passport_number": "string",
- "private_person_passport_issuer": "string",
- "private_person_passport_issued_at": "2024-07-30",
- "private_person_passport_info": "2024-07-30"
}, - "cargo_receiver_sender_info": {
- "address": "string",
- "phone": "string",
- "company_name": "string",
- "contact_name": "string",
- "contact_inn": "string",
- "contact_kpp": "string",
- "contact_opf_code": "string",
- "contact_opf_name": "string",
- "passport_number": "string",
- "passport_issued_at": null,
- "passport_who_issued": "string"
}, - "location": {
- "country": "Россия",
- "country_iso_code": "RU",
- "federal_district": "Северо-Западный",
- "region": "Санкт-Петербург",
- "region_type": "г",
- "region_with_type": "г Санкт-Петербург",
- "region_fias_id": "c2deb16a-0330-4f05-821f-1d09c93331e6",
- "region_kladr_id": "7800000000000",
- "region_iso_code": "RU-SPE",
- "area": "Краснокамский",
- "area_type": "р-н",
- "area_with_type": "Краснокамский р-н",
- "area_fias_id": "c278cbbc-e209-4b0f-b20e-9c19ed6f6802",
- "area_kladr_id": "0203100000000",
- "city": "Санкт-Петербург",
- "city_type": "г",
- "city_with_type": "г Санкт-Петербург",
- "city_fias_id": "c2deb16a-0330-4f05-821f-1d09c93331e6",
- "city_kladr_id": "7800000000000",
- "settlement": "Жилгородок",
- "settlement_type": "п",
- "settlement_with_type": "п Жилгородок",
- "settlement_fias_id": "8eab754d-38df-4fac-bebd-b27a46f45ea2",
- "settlement_kladr_id": "4701200005100",
- "street": "Московский",
- "street_type": "пр-кт",
- "street_with_type": "Московский пр-кт",
- "street_fias_id": "01b3acfc-5a4d-4d0f-a2de-67aef6effe31",
- "street_kladr_id": "78000000000085200",
- "house": "дом 1А/2 строение 3 корпус 4 литера Б",
- "house_fias_id": "315a5cc2-7676-460f-ab44-a85c38eea89a",
- "house_kladr_id": "7800000000013430010",
- "office": "офис 1 помещение 2",
- "fias_id": "315a5cc2-7676-460f-ab44-a85c38eea89a",
- "kladr_id": "7800000000013430010",
- "lat": 59.9017959,
- "lng": 30.3194694,
- "zip_code": "196084",
- "timezone_name": "Europe/Moscow",
- "level": "country",
- "country_id": 643,
- "locality": "Жилгородок п",
- "fraction": 0,
- "housing": 0,
- "structure": 0,
- "literature": "string",
- "apartment": "string",
- "latitude": 0,
- "longitude": 0,
- "local_time_zone": 0,
- "comment": "string",
- "id": "string",
- "code": "string",
- "full_string_address": "string",
- "value": "string",
- "is_canonical": true
}, - "radius": 1
}
], - "route_direction_id": "string",
- "route_direction": {
- "country": "Россия",
- "country_iso_code": "RU",
- "federal_district": "Северо-Западный",
- "region": "Санкт-Петербург",
- "region_type": "г",
- "region_with_type": "г Санкт-Петербург",
- "region_fias_id": "c2deb16a-0330-4f05-821f-1d09c93331e6",
- "region_kladr_id": "7800000000000",
- "region_iso_code": "RU-SPE",
- "area": "Краснокамский",
- "area_type": "р-н",
- "area_with_type": "Краснокамский р-н",
- "area_fias_id": "c278cbbc-e209-4b0f-b20e-9c19ed6f6802",
- "area_kladr_id": "0203100000000",
- "city": "Санкт-Петербург",
- "city_type": "г",
- "city_with_type": "г Санкт-Петербург",
- "city_fias_id": "c2deb16a-0330-4f05-821f-1d09c93331e6",
- "city_kladr_id": "7800000000000",
- "settlement": "Жилгородок",
- "settlement_type": "п",
- "settlement_with_type": "п Жилгородок",
- "settlement_fias_id": "8eab754d-38df-4fac-bebd-b27a46f45ea2",
- "settlement_kladr_id": "4701200005100",
- "street": "Московский",
- "street_type": "пр-кт",
- "street_with_type": "Московский пр-кт",
- "street_fias_id": "01b3acfc-5a4d-4d0f-a2de-67aef6effe31",
- "street_kladr_id": "78000000000085200",
- "house": "дом 1А/2 строение 3 корпус 4 литера Б",
- "house_fias_id": "315a5cc2-7676-460f-ab44-a85c38eea89a",
- "house_kladr_id": "7800000000013430010",
- "office": "офис 1 помещение 2",
- "fias_id": "315a5cc2-7676-460f-ab44-a85c38eea89a",
- "kladr_id": "7800000000013430010",
- "lat": 59.9017959,
- "lng": 30.3194694,
- "zip_code": "196084",
- "timezone_name": "Europe/Moscow",
- "level": "country",
- "country_id": 643,
- "locality": "Жилгородок п",
- "fraction": 0,
- "housing": 0,
- "structure": 0,
- "literature": "string",
- "apartment": "string",
- "latitude": 0,
- "longitude": 0,
- "local_time_zone": 0,
- "comment": "string",
- "id": "string",
- "code": "string",
- "full_string_address": "string",
- "value": "string",
- "is_canonical": true
}, - "circular_route": true,
- "is_interval": true,
- "offer_deadline": "2024-07-30T14:07:50Z",
- "intermediate_results_at": "2024-07-30T14:07:50Z",
- "auction_type": "instant_reservation",
- "many_executors_allowed": false,
- "bid_step": 0,
- "bids": [
- {
- "id": "string",
- "ntk_id": "string",
- "author": {
- "id": "string",
- "human_friendly_id": "string",
- "title": "string",
- "country_id": 0,
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "inn": "string",
- "kpp": "string",
- "tax_type": "with_vat",
- "opf_id": 0,
- "opf": {
- "id": 1,
- "code": "12300",
- "name": "ООО"
}, - "rating": 0,
- "logo_url": "string"
}, - "shipping_request_id": "string",
- "shipping_order_id": "string",
- "value": 1,
- "status": "current",
- "tax_type": "with_vat",
- "expedited_payment": false,
- "shippings_count": 1,
- "auction_stage_number": 1,
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
], - "expedited_payment_available": true,
- "shipping_order_contract_id": "string",
- "shipping_order_contract_hfid": "string",
- "contract_shipping_id": "string",
- "contract_shipping_price": 0,
- "dynamic_pricing": true,
- "document_flow": [
- "scancopy"
], - "closing_documents_period": 1,
- "closing_documents_period_type": "calendar",
- "closing_documents": [
- {
- "name": "string",
- "count": 0
}
], - "agreement_type": "shipping_agreement",
- "change_requests_allowed": true,
- "terms_by_partnership_contract": true,
- "idle_time_cost_without_vat": 50,
- "documents_for_payment": [
- "bill_of_lading"
], - "payment_procedure": "prepayment",
- "payment_period": 1,
- "payment_period_type": "calendar",
- "payment_type": "per_hour",
- "min_work_hours": 0,
- "cancellation_without_penalty_before": "2024-07-30T14:07:50Z",
- "cancellation_penalty_percent": 0,
- "minimum_cancellation_penalty_without_vat": 0,
- "price": 0,
- "expedited_payment_fee": 0,
- "min_bid": 0,
- "max_bid": 0,
- "winning_bid": 0,
- "expedited_payment_winning_bid": 0,
- "is_bid_winning": true,
- "tc_requirements_changes": [
- {
- "id": "string",
- "status": "string",
- "price": 0,
- "car_supply_at": null
}
], - "tc_requirements_change": {
- "id": "string",
- "status": "string",
- "price": 0,
- "car_supply_at": null
}, - "contact": {
- "full_name": "string",
- "phone": "stringstrin",
- "extension_number": "string",
- "email": "string"
}
}
Бронирование заявки на перевозку
TransportCompanyAdmin
) shipping_request_id required | string <uuid> ID заявки |
Content-Type required | any Value: "application/json" |
price | number <double> Своя цена заявки (Толко для ДЛ-Транс) |
expedited_payment | boolean Бронирование заявки по условиям ускоренной оплаты |
Неверные параметры запроса
Невалидный токен, неверный логин или пароль
Нет прав на выполнение действия
Объект не найден
{- "price": 0,
- "expedited_payment": true
}
{- "shipping_request_info": {
- "id": "string",
- "human_friendly_id": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z",
- "kind": "ShippingRequest",
- "status": {
- "code_name": "new",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "status_history": [
- {
- "status": {
- "code_name": "new",
- "comment": "string"
}, - "created_at": "2024-07-30T14:07:50Z"
}
], - "type": "shipping_request",
- "cargo_owning_company_id": "string",
- "author_id": "string",
- "shipping_order_id": "string",
- "contract_id": "string",
- "contract_hfid": "string",
- "client_category": "category_1",
- "comment": "string",
- "resource_assignment_time": 30,
- "completed_at": "2024-07-30T14:07:50Z",
- "contract_begins_at": "2024-07-30T14:07:50Z",
- "contract_ends_at": "2024-07-30T14:07:50Z",
- "contract_type": "by_shippings_count",
- "shippings_count": 1,
- "max_shippings_per_day": 1,
- "max_shippings_per_week": 1,
- "shipping_available_in": 0,
- "resource_requirements": {
- "transport_body_type": [
- "awning"
], - "transport_type": [
- "lorry"
], - "lifting_capacity": [
- "string"
], - "lifting_capacities": [
- {
- "id": "string",
- "kind": "string",
- "tonnage": 0,
- "volume": 0,
- "transport_body_type": "awning",
- "transport_type": "lorry"
}
], - "has_russian_citizen": true,
- "has_driver_coveralls": true,
- "has_no_criminal_records": true,
- "has_rigid_board": true,
- "has_medical_book": true,
- "has_removable_upper_beam": true,
- "has_removable_side_racks": true,
- "is_express": true,
- "number_of_belts": 0,
- "has_shipping_power_of_attorney_original": true,
- "is_disinfected": true,
- "has_temperature_check": true,
- "temperature_condition": {
- "min": 0,
- "max": 0
}, - "own_transport_only": true,
- "timber_bunks": true,
- "tir_document": true,
- "cmr_document": true
}, - "cargo_description": "string",
- "cargo_tonnage": 0,
- "cargo_volume": 0,
- "cargo_cost": 0,
- "cargo_adr": "1",
- "cargo_length": 0.5,
- "cargo_width": 0.5,
- "cargo_height": 0.5,
- "cargo_places": 0,
- "cargo_packing": "reels",
- "route_segments": [
- {
- "id": 0,
- "from_route_point_id": 0,
- "to_route_point_id": 0,
- "distance": 0,
- "unloading": {
- "type": [
- "full"
], - "duration": 300
}, - "loading": {
- "type": [
- "full"
], - "duration": 300
}
}
], - "route_points": [
- {
- "id": 0,
- "car_supply_range": [
- {
- "from": "2024-07-30T14:07:50Z",
- "until": "2024-07-30T14:07:50Z"
}
], - "car_supply_grouped_range": [
- [
- {
- "date": "2018-04-16T00:00:00+00:00",
- "times": [
- {
- "from": "2018-04-16T10:00:00+00:00",
- "until": "2018-04-16T12:00:00+00:00"
}, - {
- "from": "2018-04-16T13:00:00+00:00",
- "until": "2018-04-16T18:00:00+00:00"
}
]
}, - {
- "date": "2018-04-16T00:00:00+00:00",
- "times": [
- {
- "from": "2018-04-17T10:00:00+00:00",
- "until": "2018-04-17T12:00:00+00:00"
}, - {
- "from": "2018-04-17T13:00:00+00:00",
- "until": "2018-04-17T18:00:00+00:00"
}
]
}
]
], - "car_supply_at": "2024-07-30T14:07:50Z",
- "need_document_work": true,
- "additional_services": [
- {
- "id": "string",
- "name": "string",
- "count": 1,
- "price": 0
}
], - "counter_agent": {
- "private_person": true,
- "legal_entity_title": "string",
- "legal_entity_inn": "string",
- "legal_entity_kpp": "string",
- "legal_entity_opf_name": "string",
- "private_person_full_name": "string",
- "private_person_passport_type": "passport",
- "private_person_passport_number": "string",
- "private_person_passport_issuer": "string",
- "private_person_passport_issued_at": "2024-07-30",
- "private_person_passport_info": "2024-07-30"
}, - "cargo_receiver_sender_info": {
- "address": "string",
- "phone": "string",
- "company_name": "string",
- "contact_name": "string",
- "contact_inn": "string",
- "contact_kpp": "string",
- "contact_opf_code": "string",
- "contact_opf_name": "string",
- "passport_number": "string",
- "passport_issued_at": null,
- "passport_who_issued": "string"
}, - "location": {
- "country": "Россия",
- "country_iso_code": "RU",
- "federal_district": "Северо-Западный",
- "region": "Санкт-Петербург",
- "region_type": "г",
- "region_with_type": "г Санкт-Петербург",
- "region_fias_id": "c2deb16a-0330-4f05-821f-1d09c93331e6",
- "region_kladr_id": "7800000000000",
- "region_iso_code": "RU-SPE",
- "area": "Краснокамский",
- "area_type": "р-н",
- "area_with_type": "Краснокамский р-н",
- "area_fias_id": "c278cbbc-e209-4b0f-b20e-9c19ed6f6802",
- "area_kladr_id": "0203100000000",
- "city": "Санкт-Петербург",
- "city_type": "г",
- "city_with_type": "г Санкт-Петербург",
- "city_fias_id": "c2deb16a-0330-4f05-821f-1d09c93331e6",
- "city_kladr_id": "7800000000000",
- "settlement": "Жилгородок",
- "settlement_type": "п",
- "settlement_with_type": "п Жилгородок",
- "settlement_fias_id": "8eab754d-38df-4fac-bebd-b27a46f45ea2",
- "settlement_kladr_id": "4701200005100",
- "street": "Московский",
- "street_type": "пр-кт",
- "street_with_type": "Московский пр-кт",
- "street_fias_id": "01b3acfc-5a4d-4d0f-a2de-67aef6effe31",
- "street_kladr_id": "78000000000085200",
- "house": "дом 1А/2 строение 3 корпус 4 литера Б",
- "house_fias_id": "315a5cc2-7676-460f-ab44-a85c38eea89a",
- "house_kladr_id": "7800000000013430010",
- "office": "офис 1 помещение 2",
- "fias_id": "315a5cc2-7676-460f-ab44-a85c38eea89a",
- "kladr_id": "7800000000013430010",
- "lat": 59.9017959,
- "lng": 30.3194694,
- "zip_code": "196084",
- "timezone_name": "Europe/Moscow",
- "level": "country",
- "country_id": 643,
- "locality": "Жилгородок п",
- "fraction": 0,
- "housing": 0,
- "structure": 0,
- "literature": "string",
- "apartment": "string",
- "latitude": 0,
- "longitude": 0,
- "local_time_zone": 0,
- "comment": "string",
- "id": "string",
- "code": "string",
- "full_string_address": "string",
- "value": "string",
- "is_canonical": true
}, - "radius": 1
}
], - "route_direction_id": "string",
- "route_direction": {
- "country": "Россия",
- "country_iso_code": "RU",
- "federal_district": "Северо-Западный",
- "region": "Санкт-Петербург",
- "region_type": "г",
- "region_with_type": "г Санкт-Петербург",
- "region_fias_id": "c2deb16a-0330-4f05-821f-1d09c93331e6",
- "region_kladr_id": "7800000000000",
- "region_iso_code": "RU-SPE",
- "area": "Краснокамский",
- "area_type": "р-н",
- "area_with_type": "Краснокамский р-н",
- "area_fias_id": "c278cbbc-e209-4b0f-b20e-9c19ed6f6802",
- "area_kladr_id": "0203100000000",
- "city": "Санкт-Петербург",
- "city_type": "г",
- "city_with_type": "г Санкт-Петербург",
- "city_fias_id": "c2deb16a-0330-4f05-821f-1d09c93331e6",
- "city_kladr_id": "7800000000000",
- "settlement": "Жилгородок",
- "settlement_type": "п",
- "settlement_with_type": "п Жилгородок",
- "settlement_fias_id": "8eab754d-38df-4fac-bebd-b27a46f45ea2",
- "settlement_kladr_id": "4701200005100",
- "street": "Московский",
- "street_type": "пр-кт",
- "street_with_type": "Московский пр-кт",
- "street_fias_id": "01b3acfc-5a4d-4d0f-a2de-67aef6effe31",
- "street_kladr_id": "78000000000085200",
- "house": "дом 1А/2 строение 3 корпус 4 литера Б",
- "house_fias_id": "315a5cc2-7676-460f-ab44-a85c38eea89a",
- "house_kladr_id": "7800000000013430010",
- "office": "офис 1 помещение 2",
- "fias_id": "315a5cc2-7676-460f-ab44-a85c38eea89a",
- "kladr_id": "7800000000013430010",
- "lat": 59.9017959,
- "lng": 30.3194694,
- "zip_code": "196084",
- "timezone_name": "Europe/Moscow",
- "level": "country",
- "country_id": 643,
- "locality": "Жилгородок п",
- "fraction": 0,
- "housing": 0,
- "structure": 0,
- "literature": "string",
- "apartment": "string",
- "latitude": 0,
- "longitude": 0,
- "local_time_zone": 0,
- "comment": "string",
- "id": "string",
- "code": "string",
- "full_string_address": "string",
- "value": "string",
- "is_canonical": true
}, - "circular_route": true,
- "is_interval": true,
- "offer_deadline": "2024-07-30T14:07:50Z",
- "intermediate_results_at": "2024-07-30T14:07:50Z",
- "auction_type": "instant_reservation",
- "many_executors_allowed": false,
- "bid_step": 0,
- "bids": [
- {
- "id": "string",
- "ntk_id": "string",
- "author": {
- "id": "string",
- "human_friendly_id": "string",
- "title": "string",
- "country_id": 0,
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "inn": "string",
- "kpp": "string",
- "tax_type": "with_vat",
- "opf_id": 0,
- "opf": {
- "id": 1,
- "code": "12300",
- "name": "ООО"
}, - "rating": 0,
- "logo_url": "string"
}, - "shipping_request_id": "string",
- "shipping_order_id": "string",
- "value": 1,
- "status": "current",
- "tax_type": "with_vat",
- "expedited_payment": false,
- "shippings_count": 1,
- "auction_stage_number": 1,
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
], - "expedited_payment_available": true,
- "shipping_order_contract_id": "string",
- "shipping_order_contract_hfid": "string",
- "contract_shipping_id": "string",
- "contract_shipping_price": 0,
- "dynamic_pricing": true,
- "document_flow": [
- "scancopy"
], - "closing_documents_period": 1,
- "closing_documents_period_type": "calendar",
- "closing_documents": [
- {
- "name": "string",
- "count": 0
}
], - "agreement_type": "shipping_agreement",
- "change_requests_allowed": true,
- "terms_by_partnership_contract": true,
- "idle_time_cost_without_vat": 50,
- "documents_for_payment": [
- "bill_of_lading"
], - "payment_procedure": "prepayment",
- "payment_period": 1,
- "payment_period_type": "calendar",
- "payment_type": "per_hour",
- "min_work_hours": 0,
- "cancellation_without_penalty_before": "2024-07-30T14:07:50Z",
- "cancellation_penalty_percent": 0,
- "minimum_cancellation_penalty_without_vat": 0,
- "price": 0,
- "expedited_payment_fee": 0,
- "min_bid": 0,
- "max_bid": 0,
- "winning_bid": 0,
- "expedited_payment_winning_bid": 0,
- "is_bid_winning": true,
- "tc_requirements_changes": [
- {
- "id": "string",
- "status": "string",
- "price": 0,
- "car_supply_at": null
}
], - "tc_requirements_change": {
- "id": "string",
- "status": "string",
- "price": 0,
- "car_supply_at": null
}, - "contact": {
- "full_name": "string",
- "phone": "stringstrin",
- "extension_number": "string",
- "email": "string"
}
}, - "assigned_resources": [
- {
- "driver_contact_info": "string",
- "route_segment_id": 0,
- "drivers_ids": [
- "string"
], - "car_id": "string",
- "trailer_id": "string"
}
], - "selected_car_supply": [
- {
- "route_point_id": 0,
- "car_supply_at": "2024-07-30T14:07:50Z"
}
], - "completed_at": "2024-07-30T14:07:50Z",
- "resource_assignment_deadline": "2024-07-30T14:07:50Z",
- "kind": "ShippingOutput",
- "id": "string",
- "human_friendly_id": "Человеко понятный id",
- "status": {
- "code_name": "resources_waiting",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "status_history": [
- [
- {
- "status": "blacklisted",
- "status_comment": "string",
- "created_at": "2024-07-30T14:07:50Z"
}
]
], - "scancopy_status": "cargo_owner_signing",
- "scancopy_status_comment": "string",
- "contract_id": "string",
- "contract_hfid": "string",
- "shipping_order_contract_id": "string",
- "shipping_order_contract_hfid": "string",
- "contract_shipping_id": "string",
- "company_id": "string",
- "company": {
- "id": "string",
- "human_friendly_id": "string",
- "title": "string",
- "country_id": 0,
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "inn": "string",
- "kpp": "string",
- "tax_type": "with_vat",
- "opf_id": 0,
- "opf": {
- "id": 1,
- "code": "12300",
- "name": "ООО"
}, - "rating": 0,
- "logo_url": "string"
}, - "shipping_request_id": "string",
- "shipping_order_id": "string",
- "assigned_resource_objects": {
- "drivers": [
- {
- "id": "string",
- "kind": "ResourceDriver",
- "human_friendly_id": "человекочитаемый id",
- "full_name": "string",
- "company_id": "string",
- "freezing": [
- {
- "kind": "ResourceFreezingValue",
- "code_name": "string",
- "name": "string",
- "end_time": "2024-07-30T14:07:50Z"
}
], - "prohibited_categories": [
- "category_1"
], - "delivery_allowed": true,
- "status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "driver_secret_info": {
- "common": {
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "country_id": 0,
- "first_name": "string",
- "last_name": "string",
- "middle_name": "string",
- "birth_date": "2024-07-30T14:07:50Z"
}, - "doc": {
- "type": "passport",
- "number": "string",
- "issued_at": "2024-07-30T14:07:50Z",
- "subdivision_code": "370-011",
- "who_issued": "string",
- "expired_at": "2024-07-30T14:07:50Z"
}, - "address": {
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "country_id": 0,
- "city": "string",
- "street": "string",
- "house_number": "string",
- "zip_code": "string",
- "room": "string"
}, - "inn": "string",
- "driver_license": {
- "number": "string",
- "who_issued": "string",
- "issued_at": "2024-07-30T14:07:50Z",
- "expired_at": "2024-07-30T14:07:50Z"
}, - "have_medical_book": true,
- "phones": [
- "string"
]
}, - "power_of_attorney": {
- "start": "2024-07-30T14:07:50Z",
- "end": "2024-07-30T14:07:50Z"
}, - "attorneys": {
- "cartegory_1": {
- "from": "2024-07-30T14:07:50Z",
- "until": "2024-07-30T14:07:50Z",
- "status": "new"
}, - "cartegory_2": {
- "from": "2024-07-30T14:07:50Z",
- "until": "2024-07-30T14:07:50Z",
- "status": "new"
}
}, - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
], - "cars": [
- {
- "id": "string",
- "human_friendly_id": "человекочитаемый id",
- "kind": "ResourceCar",
- "brand": "string",
- "company_id": "string",
- "status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "lifting_capacity": {
- "id": "string",
- "tonnage": 0,
- "volume": 0,
- "transport_type": "lorry",
- "transport_body_type": "awning"
}, - "freezing": [
- {
- "kind": "ResourceFreezingValue",
- "code_name": "string",
- "name": "string",
- "end_time": "2024-07-30T14:07:50Z"
}
], - "number_sts": "string",
- "owner_sts": "string",
- "owning_type": "own",
- "max_lifting_capacity": 5.2,
- "car_number": "string",
- "car_additional_info": {
- "vin": "string",
- "engine_number": "string",
- "chassis_number": "string",
- "body_number": "string"
}, - "car_phone": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z",
- "additional": {
- "disinfected_from": "2024-07-30T14:07:50Z",
- "disinfected_until": "2024-07-30T14:07:50Z",
- "is_disinfected": true,
- "has_temperature_check": true
}, - "loading_option": {
- "full": true,
- "lateral": true,
- "rear": true,
- "upper": true,
- "removable_side_racks": true,
- "removable_upper_beam": true,
- "rigid_board": true,
- "number_of_belts": 0
}
}
], - "trailers": [
- {
- "id": "string",
- "human_friendly_id": "человекочитаемый id",
- "kind": "ResourceTrailer",
- "brand": "string",
- "company_id": "string",
- "status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "lifting_capacity": {
- "id": "string",
- "tonnage": 0,
- "volume": 0,
- "transport_type": "lorry",
- "transport_body_type": "awning"
}, - "freezing": [
- {
- "kind": "ResourceFreezingValue",
- "code_name": "string",
- "name": "string",
- "end_time": "2024-07-30T14:07:50Z"
}
], - "number_sts": "string",
- "owner_sts": "string",
- "owning_type": "own",
- "trailer_number": "string",
- "trailer_additional_info": {
- "vin": "string",
- "chassis_number": "string"
}, - "lifting_capacity_id": "string",
- "max_lifting_capacity": 5.2,
- "dimensions_cargo_hold": {
- "length": 0,
- "width": 0,
- "height": 0
}, - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z",
- "additional": {
- "disinfected_from": "2024-07-30T14:07:50Z",
- "disinfected_until": "2024-07-30T14:07:50Z",
- "is_disinfected": true,
- "has_temperature_check": true
}, - "loading_option": {
- "full": true,
- "lateral": true,
- "rear": true,
- "upper": true,
- "removable_side_racks": true,
- "removable_upper_beam": true,
- "rigid_board": true,
- "number_of_belts": 0
}
}
]
}, - "expedited_payment": true,
- "document_flow": "scancopy",
- "shippings_count": 1,
- "scancopy_attachment_deadline": "2024-07-30T14:07:50Z",
- "requirements_changes_deadline": "2024-07-30T14:07:50Z",
- "reserved_at": "2024-07-30T14:07:50Z",
- "important_changes_at": "2024-07-30T14:07:50Z",
- "requirements_accepted_at": "2024-07-30T14:07:50Z",
- "closing_ttd_documents_accepted_at": "string",
- "closing_ttd_documents_rejected_at": "string",
- "closing_ttd_documents_rejection_comment": "string",
- "closing_ttd_forwarder_documents_accepted_at": "string",
- "closing_ttd_forwarder_documents_rejected_at": "string",
- "closing_ttd_forwarder_documents_rejection_comment": "string",
- "closing_bd_documents_accepted_at": "string",
- "closing_bd_documents_rejected_at": "string",
- "closing_bd_documents_rejection_comment": "string",
- "closing_status": "documents_accepted",
- "planned_payment_date": "2024-07-30",
- "actual_payment_date": "2024-07-30",
- "contact": {
- "id": "string",
- "full_name": "string",
- "email": "string",
- "phone": "string"
}, - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
Сделать ставку на заявку
TransportCompanyAdmin
) shipping_request_id required | string ID заявки |
Content-Type required | any Value: "application/json" |
value | integer Значение ставки |
expedited_payment | boolean Сделана ли ставка по условиям ускоренной оплаты |
Неверные параметры запроса
{- "value": 0,
- "expedited_payment": true
}
{- "id": "string",
- "ntk_id": "string",
- "author": {
- "id": "string",
- "human_friendly_id": "string",
- "title": "string",
- "country_id": 0,
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "inn": "string",
- "kpp": "string",
- "tax_type": "with_vat",
- "opf_id": 0,
- "opf": {
- "id": 1,
- "code": "12300",
- "name": "ООО"
}, - "rating": 0,
- "logo_url": "string"
}, - "shipping_request_id": "string",
- "shipping_order_id": "string",
- "value": 1,
- "status": "current",
- "tax_type": "with_vat",
- "expedited_payment": false,
- "shippings_count": 1,
- "auction_stage_number": 1,
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
Получить список ставок на заявку
TransportCompanyAdmin
) status | string Enum: "current" "archived" "won" "cancelled" |
ntk_id | string |
Коллекция ставок на заявку
{- "items": [
- {
- "id": "string",
- "ntk_id": "string",
- "author": {
- "id": "string",
- "human_friendly_id": "string",
- "title": "string",
- "country_id": 0,
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "inn": "string",
- "kpp": "string",
- "tax_type": "with_vat",
- "opf_id": 0,
- "opf": {
- "id": 1,
- "code": "12300",
- "name": "ООО"
}, - "rating": 0,
- "logo_url": "string"
}, - "shipping_request_id": "string",
- "shipping_order_id": "string",
- "value": 1,
- "status": "current",
- "tax_type": "with_vat",
- "expedited_payment": false,
- "shippings_count": 1,
- "auction_stage_number": 1,
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
]
}
Сделать ставку на заявку неактивной
TransportCompanyAdmin
) shipping_request_id required | string <uuid> ID заявки |
bid_id required | string <uuid> ID ставки |
Неверные параметры запроса
Нет прав на выполнение действия
{- "id": "string",
- "ntk_id": "string",
- "author": {
- "id": "string",
- "human_friendly_id": "string",
- "title": "string",
- "country_id": 0,
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "inn": "string",
- "kpp": "string",
- "tax_type": "with_vat",
- "opf_id": 0,
- "opf": {
- "id": 1,
- "code": "12300",
- "name": "ООО"
}, - "rating": 0,
- "logo_url": "string"
}, - "shipping_request_id": "string",
- "shipping_order_id": "string",
- "value": 1,
- "status": "current",
- "tax_type": "with_vat",
- "expedited_payment": false,
- "shippings_count": 1,
- "auction_stage_number": 1,
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
Сделать ставку на заявку
TransportCompanyAdmin
) shipping_request_id required | string ID заявки |
Content-Type required | any Value: "application/json" |
value | integer Значение ставки |
expedited_payment | boolean Сделана ли ставка по условиям ускоренной оплаты |
Неверные параметры запроса
{- "value": 0,
- "expedited_payment": true
}
{- "id": "string",
- "ntk_id": "string",
- "author": {
- "id": "string",
- "human_friendly_id": "string",
- "title": "string",
- "country_id": 0,
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "inn": "string",
- "kpp": "string",
- "tax_type": "with_vat",
- "opf_id": 0,
- "opf": {
- "id": 1,
- "code": "12300",
- "name": "ООО"
}, - "rating": 0,
- "logo_url": "string"
}, - "shipping_request_id": "string",
- "shipping_order_id": "string",
- "value": 1,
- "status": "current",
- "tax_type": "with_vat",
- "expedited_payment": false,
- "shippings_count": 1,
- "auction_stage_number": 1,
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
Получить список ставок на заявку
TransportCompanyAdmin
) status | string Enum: "current" "archived" "won" "cancelled" |
ntk_id | string |
Коллекция ставок на заявку
{- "items": [
- {
- "id": "string",
- "ntk_id": "string",
- "author": {
- "id": "string",
- "human_friendly_id": "string",
- "title": "string",
- "country_id": 0,
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "inn": "string",
- "kpp": "string",
- "tax_type": "with_vat",
- "opf_id": 0,
- "opf": {
- "id": 1,
- "code": "12300",
- "name": "ООО"
}, - "rating": 0,
- "logo_url": "string"
}, - "shipping_request_id": "string",
- "shipping_order_id": "string",
- "value": 1,
- "status": "current",
- "tax_type": "with_vat",
- "expedited_payment": false,
- "shippings_count": 1,
- "auction_stage_number": 1,
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
]
}
Сделать ставку на заявку неактивной
TransportCompanyAdmin
) shipping_request_id required | string <uuid> ID заявки |
bid_id required | string <uuid> ID ставки |
Неверные параметры запроса
Нет прав на выполнение действия
{- "id": "string",
- "ntk_id": "string",
- "author": {
- "id": "string",
- "human_friendly_id": "string",
- "title": "string",
- "country_id": 0,
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "inn": "string",
- "kpp": "string",
- "tax_type": "with_vat",
- "opf_id": 0,
- "opf": {
- "id": 1,
- "code": "12300",
- "name": "ООО"
}, - "rating": 0,
- "logo_url": "string"
}, - "shipping_request_id": "string",
- "shipping_order_id": "string",
- "value": 1,
- "status": "current",
- "tax_type": "with_vat",
- "expedited_payment": false,
- "shippings_count": 1,
- "auction_stage_number": 1,
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
Получение списка перевозок
TransportCompanyAdmin
) query | string Человекочитаемый ID перевозки или графика, на основе которого была создана перевозка |
status | string Enum: "resources_waiting" "trip_waiting" "in_way" "done" "canceled" |
contract_id | string Идентификатор графика на площадке |
company_id | string <uuid> ID Компании |
only_regular | boolean Показать перевозки по разовым заявкам |
only_by_contract | boolean Показать перевозки по графикам |
from_location_id | string ID места начала перевозки |
from_radius | integer Радиус вокруг места начала перевозки в километрах |
direction_location_id | string ID места направления перевозки |
direction_radius | integer Радиус вокруг места направления перевозки в километрах |
begin_from | string <date> Дата начала перевозки - ОТ |
begin_until | string <date> Дата начала перевозки - ДО |
order | string Enum: "asc" "desc" Тип упорядочивания элементов |
sort required | string Value: "created_at" |
page | integer >= 1 Default: 1 Номер текущей страницы |
per_page | integer >= 1 Default: 10 Количество элементов на странице |
Перевозки
Неверные параметры запроса
{- "items": [
- {
- "shipping_request_info": {
- "id": "string",
- "human_friendly_id": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z",
- "kind": "ShippingRequest",
- "status": {
- "code_name": "new",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "status_history": [
- {
- "status": {
- "code_name": "new",
- "comment": "string"
}, - "created_at": "2024-07-30T14:07:50Z"
}
], - "type": "shipping_request",
- "cargo_owning_company_id": "string",
- "author_id": "string",
- "shipping_order_id": "string",
- "contract_id": "string",
- "contract_hfid": "string",
- "client_category": "category_1",
- "comment": "string",
- "resource_assignment_time": 30,
- "completed_at": "2024-07-30T14:07:50Z",
- "contract_begins_at": "2024-07-30T14:07:50Z",
- "contract_ends_at": "2024-07-30T14:07:50Z",
- "contract_type": "by_shippings_count",
- "shippings_count": 1,
- "max_shippings_per_day": 1,
- "max_shippings_per_week": 1,
- "shipping_available_in": 0,
- "resource_requirements": {
- "transport_body_type": [
- "awning"
], - "transport_type": [
- "lorry"
], - "lifting_capacity": [
- "string"
], - "lifting_capacities": [
- {
- "id": "string",
- "kind": "string",
- "tonnage": 0,
- "volume": 0,
- "transport_body_type": "awning",
- "transport_type": "lorry"
}
], - "has_russian_citizen": true,
- "has_driver_coveralls": true,
- "has_no_criminal_records": true,
- "has_rigid_board": true,
- "has_medical_book": true,
- "has_removable_upper_beam": true,
- "has_removable_side_racks": true,
- "is_express": true,
- "number_of_belts": 0,
- "has_shipping_power_of_attorney_original": true,
- "is_disinfected": true,
- "has_temperature_check": true,
- "temperature_condition": {
- "min": 0,
- "max": 0
}, - "own_transport_only": true,
- "timber_bunks": true,
- "tir_document": true,
- "cmr_document": true
}, - "cargo_description": "string",
- "cargo_tonnage": 0,
- "cargo_volume": 0,
- "cargo_cost": 0,
- "cargo_adr": "1",
- "cargo_length": 0.5,
- "cargo_width": 0.5,
- "cargo_height": 0.5,
- "cargo_places": 0,
- "cargo_packing": "reels",
- "route_segments": [
- {
- "id": 0,
- "from_route_point_id": 0,
- "to_route_point_id": 0,
- "distance": 0,
- "unloading": {
- "type": [
- "full"
], - "duration": 300
}, - "loading": {
- "type": [
- "full"
], - "duration": 300
}
}
], - "route_points": [
- {
- "id": 0,
- "car_supply_range": [
- {
- "from": "2024-07-30T14:07:50Z",
- "until": "2024-07-30T14:07:50Z"
}
], - "car_supply_grouped_range": [
- [
- {
- "date": "2018-04-16T00:00:00+00:00",
- "times": [
- {
- "from": "2018-04-16T10:00:00+00:00",
- "until": "2018-04-16T12:00:00+00:00"
}, - {
- "from": "2018-04-16T13:00:00+00:00",
- "until": "2018-04-16T18:00:00+00:00"
}
]
}, - {
- "date": "2018-04-16T00:00:00+00:00",
- "times": [
- {
- "from": "2018-04-17T10:00:00+00:00",
- "until": "2018-04-17T12:00:00+00:00"
}, - {
- "from": "2018-04-17T13:00:00+00:00",
- "until": "2018-04-17T18:00:00+00:00"
}
]
}
]
], - "car_supply_at": "2024-07-30T14:07:50Z",
- "need_document_work": true,
- "additional_services": [
- {
- "id": "string",
- "name": "string",
- "count": 1,
- "price": 0
}
], - "counter_agent": {
- "private_person": true,
- "legal_entity_title": "string",
- "legal_entity_inn": "string",
- "legal_entity_kpp": "string",
- "legal_entity_opf_name": "string",
- "private_person_full_name": "string",
- "private_person_passport_type": "passport",
- "private_person_passport_number": "string",
- "private_person_passport_issuer": "string",
- "private_person_passport_issued_at": "2024-07-30",
- "private_person_passport_info": "2024-07-30"
}, - "cargo_receiver_sender_info": {
- "address": "string",
- "phone": "string",
- "company_name": "string",
- "contact_name": "string",
- "contact_inn": "string",
- "contact_kpp": "string",
- "contact_opf_code": "string",
- "contact_opf_name": "string",
- "passport_number": "string",
- "passport_issued_at": null,
- "passport_who_issued": "string"
}, - "location": {
- "country": "Россия",
- "country_iso_code": "RU",
- "federal_district": "Северо-Западный",
- "region": "Санкт-Петербург",
- "region_type": "г",
- "region_with_type": "г Санкт-Петербург",
- "region_fias_id": "c2deb16a-0330-4f05-821f-1d09c93331e6",
- "region_kladr_id": "7800000000000",
- "region_iso_code": "RU-SPE",
- "area": "Краснокамский",
- "area_type": "р-н",
- "area_with_type": "Краснокамский р-н",
- "area_fias_id": "c278cbbc-e209-4b0f-b20e-9c19ed6f6802",
- "area_kladr_id": "0203100000000",
- "city": "Санкт-Петербург",
- "city_type": "г",
- "city_with_type": "г Санкт-Петербург",
- "city_fias_id": "c2deb16a-0330-4f05-821f-1d09c93331e6",
- "city_kladr_id": "7800000000000",
- "settlement": "Жилгородок",
- "settlement_type": "п",
- "settlement_with_type": "п Жилгородок",
- "settlement_fias_id": "8eab754d-38df-4fac-bebd-b27a46f45ea2",
- "settlement_kladr_id": "4701200005100",
- "street": "Московский",
- "street_type": "пр-кт",
- "street_with_type": "Московский пр-кт",
- "street_fias_id": "01b3acfc-5a4d-4d0f-a2de-67aef6effe31",
- "street_kladr_id": "78000000000085200",
- "house": "дом 1А/2 строение 3 корпус 4 литера Б",
- "house_fias_id": "315a5cc2-7676-460f-ab44-a85c38eea89a",
- "house_kladr_id": "7800000000013430010",
- "office": "офис 1 помещение 2",
- "fias_id": "315a5cc2-7676-460f-ab44-a85c38eea89a",
- "kladr_id": "7800000000013430010",
- "lat": 59.9017959,
- "lng": 30.3194694,
- "zip_code": "196084",
- "timezone_name": "Europe/Moscow",
- "level": "country",
- "country_id": 643,
- "locality": "Жилгородок п",
- "fraction": 0,
- "housing": 0,
- "structure": 0,
- "literature": "string",
- "apartment": "string",
- "latitude": 0,
- "longitude": 0,
- "local_time_zone": 0,
- "comment": "string",
- "id": "string",
- "code": "string",
- "full_string_address": "string",
- "value": "string",
- "is_canonical": true
}, - "radius": 1
}
], - "route_direction_id": "string",
- "route_direction": {
- "country": "Россия",
- "country_iso_code": "RU",
- "federal_district": "Северо-Западный",
- "region": "Санкт-Петербург",
- "region_type": "г",
- "region_with_type": "г Санкт-Петербург",
- "region_fias_id": "c2deb16a-0330-4f05-821f-1d09c93331e6",
- "region_kladr_id": "7800000000000",
- "region_iso_code": "RU-SPE",
- "area": "Краснокамский",
- "area_type": "р-н",
- "area_with_type": "Краснокамский р-н",
- "area_fias_id": "c278cbbc-e209-4b0f-b20e-9c19ed6f6802",
- "area_kladr_id": "0203100000000",
- "city": "Санкт-Петербург",
- "city_type": "г",
- "city_with_type": "г Санкт-Петербург",
- "city_fias_id": "c2deb16a-0330-4f05-821f-1d09c93331e6",
- "city_kladr_id": "7800000000000",
- "settlement": "Жилгородок",
- "settlement_type": "п",
- "settlement_with_type": "п Жилгородок",
- "settlement_fias_id": "8eab754d-38df-4fac-bebd-b27a46f45ea2",
- "settlement_kladr_id": "4701200005100",
- "street": "Московский",
- "street_type": "пр-кт",
- "street_with_type": "Московский пр-кт",
- "street_fias_id": "01b3acfc-5a4d-4d0f-a2de-67aef6effe31",
- "street_kladr_id": "78000000000085200",
- "house": "дом 1А/2 строение 3 корпус 4 литера Б",
- "house_fias_id": "315a5cc2-7676-460f-ab44-a85c38eea89a",
- "house_kladr_id": "7800000000013430010",
- "office": "офис 1 помещение 2",
- "fias_id": "315a5cc2-7676-460f-ab44-a85c38eea89a",
- "kladr_id": "7800000000013430010",
- "lat": 59.9017959,
- "lng": 30.3194694,
- "zip_code": "196084",
- "timezone_name": "Europe/Moscow",
- "level": "country",
- "country_id": 643,
- "locality": "Жилгородок п",
- "fraction": 0,
- "housing": 0,
- "structure": 0,
- "literature": "string",
- "apartment": "string",
- "latitude": 0,
- "longitude": 0,
- "local_time_zone": 0,
- "comment": "string",
- "id": "string",
- "code": "string",
- "full_string_address": "string",
- "value": "string",
- "is_canonical": true
}, - "circular_route": true,
- "is_interval": true,
- "offer_deadline": "2024-07-30T14:07:50Z",
- "intermediate_results_at": "2024-07-30T14:07:50Z",
- "auction_type": "instant_reservation",
- "many_executors_allowed": false,
- "bid_step": 0,
- "bids": [
- {
- "id": "string",
- "ntk_id": "string",
- "author": {
- "id": "string",
- "human_friendly_id": "string",
- "title": "string",
- "country_id": 0,
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "inn": "string",
- "kpp": "string",
- "tax_type": "with_vat",
- "opf_id": 0,
- "opf": {
- "id": 1,
- "code": "12300",
- "name": "ООО"
}, - "rating": 0,
- "logo_url": "string"
}, - "shipping_request_id": "string",
- "shipping_order_id": "string",
- "value": 1,
- "status": "current",
- "tax_type": "with_vat",
- "expedited_payment": false,
- "shippings_count": 1,
- "auction_stage_number": 1,
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
], - "expedited_payment_available": true,
- "shipping_order_contract_id": "string",
- "shipping_order_contract_hfid": "string",
- "contract_shipping_id": "string",
- "contract_shipping_price": 0,
- "dynamic_pricing": true,
- "document_flow": [
- "scancopy"
], - "closing_documents_period": 1,
- "closing_documents_period_type": "calendar",
- "closing_documents": [
- {
- "name": "string",
- "count": 0
}
], - "agreement_type": "shipping_agreement",
- "change_requests_allowed": true,
- "terms_by_partnership_contract": true,
- "idle_time_cost_without_vat": 50,
- "documents_for_payment": [
- "bill_of_lading"
], - "payment_procedure": "prepayment",
- "payment_period": 1,
- "payment_period_type": "calendar",
- "payment_type": "per_hour",
- "min_work_hours": 0,
- "cancellation_without_penalty_before": "2024-07-30T14:07:50Z",
- "cancellation_penalty_percent": 0,
- "minimum_cancellation_penalty_without_vat": 0,
- "price": 0,
- "expedited_payment_fee": 0,
- "min_bid": 0,
- "max_bid": 0,
- "winning_bid": 0,
- "expedited_payment_winning_bid": 0,
- "is_bid_winning": true,
- "tc_requirements_changes": [
- {
- "id": "string",
- "status": "string",
- "price": 0,
- "car_supply_at": null
}
], - "tc_requirements_change": {
- "id": "string",
- "status": "string",
- "price": 0,
- "car_supply_at": null
}, - "contact": {
- "full_name": "string",
- "phone": "stringstrin",
- "extension_number": "string",
- "email": "string"
}
}, - "assigned_resources": [
- {
- "driver_contact_info": "string",
- "route_segment_id": 0,
- "drivers_ids": [
- "string"
], - "car_id": "string",
- "trailer_id": "string"
}
], - "selected_car_supply": [
- {
- "route_point_id": 0,
- "car_supply_at": "2024-07-30T14:07:50Z"
}
], - "completed_at": "2024-07-30T14:07:50Z",
- "resource_assignment_deadline": "2024-07-30T14:07:50Z",
- "kind": "ShippingOutput",
- "id": "string",
- "human_friendly_id": "Человеко понятный id",
- "status": {
- "code_name": "resources_waiting",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "status_history": [
- [
- {
- "status": "blacklisted",
- "status_comment": "string",
- "created_at": "2024-07-30T14:07:50Z"
}
]
], - "scancopy_status": "cargo_owner_signing",
- "scancopy_status_comment": "string",
- "contract_id": "string",
- "contract_hfid": "string",
- "shipping_order_contract_id": "string",
- "shipping_order_contract_hfid": "string",
- "contract_shipping_id": "string",
- "company_id": "string",
- "company": {
- "id": "string",
- "human_friendly_id": "string",
- "title": "string",
- "country_id": 0,
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "inn": "string",
- "kpp": "string",
- "tax_type": "with_vat",
- "opf_id": 0,
- "opf": {
- "id": 1,
- "code": "12300",
- "name": "ООО"
}, - "rating": 0,
- "logo_url": "string"
}, - "shipping_request_id": "string",
- "shipping_order_id": "string",
- "assigned_resource_objects": {
- "drivers": [
- {
- "id": "string",
- "kind": "ResourceDriver",
- "human_friendly_id": "человекочитаемый id",
- "full_name": "string",
- "company_id": "string",
- "freezing": [
- {
- "kind": "ResourceFreezingValue",
- "code_name": "string",
- "name": "string",
- "end_time": "2024-07-30T14:07:50Z"
}
], - "prohibited_categories": [
- "category_1"
], - "delivery_allowed": true,
- "status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "driver_secret_info": {
- "common": {
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "country_id": 0,
- "first_name": "string",
- "last_name": "string",
- "middle_name": "string",
- "birth_date": "2024-07-30T14:07:50Z"
}, - "doc": {
- "type": "passport",
- "number": "string",
- "issued_at": "2024-07-30T14:07:50Z",
- "subdivision_code": "370-011",
- "who_issued": "string",
- "expired_at": "2024-07-30T14:07:50Z"
}, - "address": {
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "country_id": 0,
- "city": "string",
- "street": "string",
- "house_number": "string",
- "zip_code": "string",
- "room": "string"
}, - "inn": "string",
- "driver_license": {
- "number": "string",
- "who_issued": "string",
- "issued_at": "2024-07-30T14:07:50Z",
- "expired_at": "2024-07-30T14:07:50Z"
}, - "have_medical_book": true,
- "phones": [
- "string"
]
}, - "power_of_attorney": {
- "start": "2024-07-30T14:07:50Z",
- "end": "2024-07-30T14:07:50Z"
}, - "attorneys": {
- "cartegory_1": {
- "from": "2024-07-30T14:07:50Z",
- "until": "2024-07-30T14:07:50Z",
- "status": "new"
}, - "cartegory_2": {
- "from": "2024-07-30T14:07:50Z",
- "until": "2024-07-30T14:07:50Z",
- "status": "new"
}
}, - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
], - "cars": [
- {
- "id": "string",
- "human_friendly_id": "человекочитаемый id",
- "kind": "ResourceCar",
- "brand": "string",
- "company_id": "string",
- "status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "lifting_capacity": {
- "id": "string",
- "tonnage": 0,
- "volume": 0,
- "transport_type": "lorry",
- "transport_body_type": "awning"
}, - "freezing": [
- {
- "kind": "ResourceFreezingValue",
- "code_name": "string",
- "name": "string",
- "end_time": "2024-07-30T14:07:50Z"
}
], - "number_sts": "string",
- "owner_sts": "string",
- "owning_type": "own",
- "max_lifting_capacity": 5.2,
- "car_number": "string",
- "car_additional_info": {
- "vin": "string",
- "engine_number": "string",
- "chassis_number": "string",
- "body_number": "string"
}, - "car_phone": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z",
- "additional": {
- "disinfected_from": "2024-07-30T14:07:50Z",
- "disinfected_until": "2024-07-30T14:07:50Z",
- "is_disinfected": true,
- "has_temperature_check": true
}, - "loading_option": {
- "full": true,
- "lateral": true,
- "rear": true,
- "upper": true,
- "removable_side_racks": true,
- "removable_upper_beam": true,
- "rigid_board": true,
- "number_of_belts": 0
}
}
], - "trailers": [
- {
- "id": "string",
- "human_friendly_id": "человекочитаемый id",
- "kind": "ResourceTrailer",
- "brand": "string",
- "company_id": "string",
- "status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "lifting_capacity": {
- "id": "string",
- "tonnage": 0,
- "volume": 0,
- "transport_type": "lorry",
- "transport_body_type": "awning"
}, - "freezing": [
- {
- "kind": "ResourceFreezingValue",
- "code_name": "string",
- "name": "string",
- "end_time": "2024-07-30T14:07:50Z"
}
], - "number_sts": "string",
- "owner_sts": "string",
- "owning_type": "own",
- "trailer_number": "string",
- "trailer_additional_info": {
- "vin": "string",
- "chassis_number": "string"
}, - "lifting_capacity_id": "string",
- "max_lifting_capacity": 5.2,
- "dimensions_cargo_hold": {
- "length": 0,
- "width": 0,
- "height": 0
}, - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z",
- "additional": {
- "disinfected_from": "2024-07-30T14:07:50Z",
- "disinfected_until": "2024-07-30T14:07:50Z",
- "is_disinfected": true,
- "has_temperature_check": true
}, - "loading_option": {
- "full": true,
- "lateral": true,
- "rear": true,
- "upper": true,
- "removable_side_racks": true,
- "removable_upper_beam": true,
- "rigid_board": true,
- "number_of_belts": 0
}
}
]
}, - "expedited_payment": true,
- "document_flow": "scancopy",
- "shippings_count": 1,
- "scancopy_attachment_deadline": "2024-07-30T14:07:50Z",
- "requirements_changes_deadline": "2024-07-30T14:07:50Z",
- "reserved_at": "2024-07-30T14:07:50Z",
- "important_changes_at": "2024-07-30T14:07:50Z",
- "requirements_accepted_at": "2024-07-30T14:07:50Z",
- "closing_ttd_documents_accepted_at": "string",
- "closing_ttd_documents_rejected_at": "string",
- "closing_ttd_documents_rejection_comment": "string",
- "closing_ttd_forwarder_documents_accepted_at": "string",
- "closing_ttd_forwarder_documents_rejected_at": "string",
- "closing_ttd_forwarder_documents_rejection_comment": "string",
- "closing_bd_documents_accepted_at": "string",
- "closing_bd_documents_rejected_at": "string",
- "closing_bd_documents_rejection_comment": "string",
- "closing_status": "documents_accepted",
- "planned_payment_date": "2024-07-30",
- "actual_payment_date": "2024-07-30",
- "contact": {
- "id": "string",
- "full_name": "string",
- "email": "string",
- "phone": "string"
}, - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
], - "page_info": {
- "total_results": 0,
- "results_per_page": 0,
- "current_page": 0
}
}
Получение информации о перевозке
TransportCompanyAdmin
) shipping_id required | string <uuid> ID перевозки |
Нет прав на выполнение действия
Объект не найден
{- "shipping_request_info": {
- "id": "string",
- "human_friendly_id": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z",
- "kind": "ShippingRequest",
- "status": {
- "code_name": "new",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "status_history": [
- {
- "status": {
- "code_name": "new",
- "comment": "string"
}, - "created_at": "2024-07-30T14:07:50Z"
}
], - "type": "shipping_request",
- "cargo_owning_company_id": "string",
- "author_id": "string",
- "shipping_order_id": "string",
- "contract_id": "string",
- "contract_hfid": "string",
- "client_category": "category_1",
- "comment": "string",
- "resource_assignment_time": 30,
- "completed_at": "2024-07-30T14:07:50Z",
- "contract_begins_at": "2024-07-30T14:07:50Z",
- "contract_ends_at": "2024-07-30T14:07:50Z",
- "contract_type": "by_shippings_count",
- "shippings_count": 1,
- "max_shippings_per_day": 1,
- "max_shippings_per_week": 1,
- "shipping_available_in": 0,
- "resource_requirements": {
- "transport_body_type": [
- "awning"
], - "transport_type": [
- "lorry"
], - "lifting_capacity": [
- "string"
], - "lifting_capacities": [
- {
- "id": "string",
- "kind": "string",
- "tonnage": 0,
- "volume": 0,
- "transport_body_type": "awning",
- "transport_type": "lorry"
}
], - "has_russian_citizen": true,
- "has_driver_coveralls": true,
- "has_no_criminal_records": true,
- "has_rigid_board": true,
- "has_medical_book": true,
- "has_removable_upper_beam": true,
- "has_removable_side_racks": true,
- "is_express": true,
- "number_of_belts": 0,
- "has_shipping_power_of_attorney_original": true,
- "is_disinfected": true,
- "has_temperature_check": true,
- "temperature_condition": {
- "min": 0,
- "max": 0
}, - "own_transport_only": true,
- "timber_bunks": true,
- "tir_document": true,
- "cmr_document": true
}, - "cargo_description": "string",
- "cargo_tonnage": 0,
- "cargo_volume": 0,
- "cargo_cost": 0,
- "cargo_adr": "1",
- "cargo_length": 0.5,
- "cargo_width": 0.5,
- "cargo_height": 0.5,
- "cargo_places": 0,
- "cargo_packing": "reels",
- "route_segments": [
- {
- "id": 0,
- "from_route_point_id": 0,
- "to_route_point_id": 0,
- "distance": 0,
- "unloading": {
- "type": [
- "full"
], - "duration": 300
}, - "loading": {
- "type": [
- "full"
], - "duration": 300
}
}
], - "route_points": [
- {
- "id": 0,
- "car_supply_range": [
- {
- "from": "2024-07-30T14:07:50Z",
- "until": "2024-07-30T14:07:50Z"
}
], - "car_supply_grouped_range": [
- [
- {
- "date": "2018-04-16T00:00:00+00:00",
- "times": [
- {
- "from": "2018-04-16T10:00:00+00:00",
- "until": "2018-04-16T12:00:00+00:00"
}, - {
- "from": "2018-04-16T13:00:00+00:00",
- "until": "2018-04-16T18:00:00+00:00"
}
]
}, - {
- "date": "2018-04-16T00:00:00+00:00",
- "times": [
- {
- "from": "2018-04-17T10:00:00+00:00",
- "until": "2018-04-17T12:00:00+00:00"
}, - {
- "from": "2018-04-17T13:00:00+00:00",
- "until": "2018-04-17T18:00:00+00:00"
}
]
}
]
], - "car_supply_at": "2024-07-30T14:07:50Z",
- "need_document_work": true,
- "additional_services": [
- {
- "id": "string",
- "name": "string",
- "count": 1,
- "price": 0
}
], - "counter_agent": {
- "private_person": true,
- "legal_entity_title": "string",
- "legal_entity_inn": "string",
- "legal_entity_kpp": "string",
- "legal_entity_opf_name": "string",
- "private_person_full_name": "string",
- "private_person_passport_type": "passport",
- "private_person_passport_number": "string",
- "private_person_passport_issuer": "string",
- "private_person_passport_issued_at": "2024-07-30",
- "private_person_passport_info": "2024-07-30"
}, - "cargo_receiver_sender_info": {
- "address": "string",
- "phone": "string",
- "company_name": "string",
- "contact_name": "string",
- "contact_inn": "string",
- "contact_kpp": "string",
- "contact_opf_code": "string",
- "contact_opf_name": "string",
- "passport_number": "string",
- "passport_issued_at": null,
- "passport_who_issued": "string"
}, - "location": {
- "country": "Россия",
- "country_iso_code": "RU",
- "federal_district": "Северо-Западный",
- "region": "Санкт-Петербург",
- "region_type": "г",
- "region_with_type": "г Санкт-Петербург",
- "region_fias_id": "c2deb16a-0330-4f05-821f-1d09c93331e6",
- "region_kladr_id": "7800000000000",
- "region_iso_code": "RU-SPE",
- "area": "Краснокамский",
- "area_type": "р-н",
- "area_with_type": "Краснокамский р-н",
- "area_fias_id": "c278cbbc-e209-4b0f-b20e-9c19ed6f6802",
- "area_kladr_id": "0203100000000",
- "city": "Санкт-Петербург",
- "city_type": "г",
- "city_with_type": "г Санкт-Петербург",
- "city_fias_id": "c2deb16a-0330-4f05-821f-1d09c93331e6",
- "city_kladr_id": "7800000000000",
- "settlement": "Жилгородок",
- "settlement_type": "п",
- "settlement_with_type": "п Жилгородок",
- "settlement_fias_id": "8eab754d-38df-4fac-bebd-b27a46f45ea2",
- "settlement_kladr_id": "4701200005100",
- "street": "Московский",
- "street_type": "пр-кт",
- "street_with_type": "Московский пр-кт",
- "street_fias_id": "01b3acfc-5a4d-4d0f-a2de-67aef6effe31",
- "street_kladr_id": "78000000000085200",
- "house": "дом 1А/2 строение 3 корпус 4 литера Б",
- "house_fias_id": "315a5cc2-7676-460f-ab44-a85c38eea89a",
- "house_kladr_id": "7800000000013430010",
- "office": "офис 1 помещение 2",
- "fias_id": "315a5cc2-7676-460f-ab44-a85c38eea89a",
- "kladr_id": "7800000000013430010",
- "lat": 59.9017959,
- "lng": 30.3194694,
- "zip_code": "196084",
- "timezone_name": "Europe/Moscow",
- "level": "country",
- "country_id": 643,
- "locality": "Жилгородок п",
- "fraction": 0,
- "housing": 0,
- "structure": 0,
- "literature": "string",
- "apartment": "string",
- "latitude": 0,
- "longitude": 0,
- "local_time_zone": 0,
- "comment": "string",
- "id": "string",
- "code": "string",
- "full_string_address": "string",
- "value": "string",
- "is_canonical": true
}, - "radius": 1
}
], - "route_direction_id": "string",
- "route_direction": {
- "country": "Россия",
- "country_iso_code": "RU",
- "federal_district": "Северо-Западный",
- "region": "Санкт-Петербург",
- "region_type": "г",
- "region_with_type": "г Санкт-Петербург",
- "region_fias_id": "c2deb16a-0330-4f05-821f-1d09c93331e6",
- "region_kladr_id": "7800000000000",
- "region_iso_code": "RU-SPE",
- "area": "Краснокамский",
- "area_type": "р-н",
- "area_with_type": "Краснокамский р-н",
- "area_fias_id": "c278cbbc-e209-4b0f-b20e-9c19ed6f6802",
- "area_kladr_id": "0203100000000",
- "city": "Санкт-Петербург",
- "city_type": "г",
- "city_with_type": "г Санкт-Петербург",
- "city_fias_id": "c2deb16a-0330-4f05-821f-1d09c93331e6",
- "city_kladr_id": "7800000000000",
- "settlement": "Жилгородок",
- "settlement_type": "п",
- "settlement_with_type": "п Жилгородок",
- "settlement_fias_id": "8eab754d-38df-4fac-bebd-b27a46f45ea2",
- "settlement_kladr_id": "4701200005100",
- "street": "Московский",
- "street_type": "пр-кт",
- "street_with_type": "Московский пр-кт",
- "street_fias_id": "01b3acfc-5a4d-4d0f-a2de-67aef6effe31",
- "street_kladr_id": "78000000000085200",
- "house": "дом 1А/2 строение 3 корпус 4 литера Б",
- "house_fias_id": "315a5cc2-7676-460f-ab44-a85c38eea89a",
- "house_kladr_id": "7800000000013430010",
- "office": "офис 1 помещение 2",
- "fias_id": "315a5cc2-7676-460f-ab44-a85c38eea89a",
- "kladr_id": "7800000000013430010",
- "lat": 59.9017959,
- "lng": 30.3194694,
- "zip_code": "196084",
- "timezone_name": "Europe/Moscow",
- "level": "country",
- "country_id": 643,
- "locality": "Жилгородок п",
- "fraction": 0,
- "housing": 0,
- "structure": 0,
- "literature": "string",
- "apartment": "string",
- "latitude": 0,
- "longitude": 0,
- "local_time_zone": 0,
- "comment": "string",
- "id": "string",
- "code": "string",
- "full_string_address": "string",
- "value": "string",
- "is_canonical": true
}, - "circular_route": true,
- "is_interval": true,
- "offer_deadline": "2024-07-30T14:07:50Z",
- "intermediate_results_at": "2024-07-30T14:07:50Z",
- "auction_type": "instant_reservation",
- "many_executors_allowed": false,
- "bid_step": 0,
- "bids": [
- {
- "id": "string",
- "ntk_id": "string",
- "author": {
- "id": "string",
- "human_friendly_id": "string",
- "title": "string",
- "country_id": 0,
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "inn": "string",
- "kpp": "string",
- "tax_type": "with_vat",
- "opf_id": 0,
- "opf": {
- "id": 1,
- "code": "12300",
- "name": "ООО"
}, - "rating": 0,
- "logo_url": "string"
}, - "shipping_request_id": "string",
- "shipping_order_id": "string",
- "value": 1,
- "status": "current",
- "tax_type": "with_vat",
- "expedited_payment": false,
- "shippings_count": 1,
- "auction_stage_number": 1,
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
], - "expedited_payment_available": true,
- "shipping_order_contract_id": "string",
- "shipping_order_contract_hfid": "string",
- "contract_shipping_id": "string",
- "contract_shipping_price": 0,
- "dynamic_pricing": true,
- "document_flow": [
- "scancopy"
], - "closing_documents_period": 1,
- "closing_documents_period_type": "calendar",
- "closing_documents": [
- {
- "name": "string",
- "count": 0
}
], - "agreement_type": "shipping_agreement",
- "change_requests_allowed": true,
- "terms_by_partnership_contract": true,
- "idle_time_cost_without_vat": 50,
- "documents_for_payment": [
- "bill_of_lading"
], - "payment_procedure": "prepayment",
- "payment_period": 1,
- "payment_period_type": "calendar",
- "payment_type": "per_hour",
- "min_work_hours": 0,
- "cancellation_without_penalty_before": "2024-07-30T14:07:50Z",
- "cancellation_penalty_percent": 0,
- "minimum_cancellation_penalty_without_vat": 0,
- "price": 0,
- "expedited_payment_fee": 0,
- "min_bid": 0,
- "max_bid": 0,
- "winning_bid": 0,
- "expedited_payment_winning_bid": 0,
- "is_bid_winning": true,
- "tc_requirements_changes": [
- {
- "id": "string",
- "status": "string",
- "price": 0,
- "car_supply_at": null
}
], - "tc_requirements_change": {
- "id": "string",
- "status": "string",
- "price": 0,
- "car_supply_at": null
}, - "contact": {
- "full_name": "string",
- "phone": "stringstrin",
- "extension_number": "string",
- "email": "string"
}
}, - "assigned_resources": [
- {
- "driver_contact_info": "string",
- "route_segment_id": 0,
- "drivers_ids": [
- "string"
], - "car_id": "string",
- "trailer_id": "string"
}
], - "selected_car_supply": [
- {
- "route_point_id": 0,
- "car_supply_at": "2024-07-30T14:07:50Z"
}
], - "completed_at": "2024-07-30T14:07:50Z",
- "resource_assignment_deadline": "2024-07-30T14:07:50Z",
- "kind": "ShippingOutput",
- "id": "string",
- "human_friendly_id": "Человеко понятный id",
- "status": {
- "code_name": "resources_waiting",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "status_history": [
- [
- {
- "status": "blacklisted",
- "status_comment": "string",
- "created_at": "2024-07-30T14:07:50Z"
}
]
], - "scancopy_status": "cargo_owner_signing",
- "scancopy_status_comment": "string",
- "contract_id": "string",
- "contract_hfid": "string",
- "shipping_order_contract_id": "string",
- "shipping_order_contract_hfid": "string",
- "contract_shipping_id": "string",
- "company_id": "string",
- "company": {
- "id": "string",
- "human_friendly_id": "string",
- "title": "string",
- "country_id": 0,
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "inn": "string",
- "kpp": "string",
- "tax_type": "with_vat",
- "opf_id": 0,
- "opf": {
- "id": 1,
- "code": "12300",
- "name": "ООО"
}, - "rating": 0,
- "logo_url": "string"
}, - "shipping_request_id": "string",
- "shipping_order_id": "string",
- "assigned_resource_objects": {
- "drivers": [
- {
- "id": "string",
- "kind": "ResourceDriver",
- "human_friendly_id": "человекочитаемый id",
- "full_name": "string",
- "company_id": "string",
- "freezing": [
- {
- "kind": "ResourceFreezingValue",
- "code_name": "string",
- "name": "string",
- "end_time": "2024-07-30T14:07:50Z"
}
], - "prohibited_categories": [
- "category_1"
], - "delivery_allowed": true,
- "status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "driver_secret_info": {
- "common": {
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "country_id": 0,
- "first_name": "string",
- "last_name": "string",
- "middle_name": "string",
- "birth_date": "2024-07-30T14:07:50Z"
}, - "doc": {
- "type": "passport",
- "number": "string",
- "issued_at": "2024-07-30T14:07:50Z",
- "subdivision_code": "370-011",
- "who_issued": "string",
- "expired_at": "2024-07-30T14:07:50Z"
}, - "address": {
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "country_id": 0,
- "city": "string",
- "street": "string",
- "house_number": "string",
- "zip_code": "string",
- "room": "string"
}, - "inn": "string",
- "driver_license": {
- "number": "string",
- "who_issued": "string",
- "issued_at": "2024-07-30T14:07:50Z",
- "expired_at": "2024-07-30T14:07:50Z"
}, - "have_medical_book": true,
- "phones": [
- "string"
]
}, - "power_of_attorney": {
- "start": "2024-07-30T14:07:50Z",
- "end": "2024-07-30T14:07:50Z"
}, - "attorneys": {
- "cartegory_1": {
- "from": "2024-07-30T14:07:50Z",
- "until": "2024-07-30T14:07:50Z",
- "status": "new"
}, - "cartegory_2": {
- "from": "2024-07-30T14:07:50Z",
- "until": "2024-07-30T14:07:50Z",
- "status": "new"
}
}, - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
], - "cars": [
- {
- "id": "string",
- "human_friendly_id": "человекочитаемый id",
- "kind": "ResourceCar",
- "brand": "string",
- "company_id": "string",
- "status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "lifting_capacity": {
- "id": "string",
- "tonnage": 0,
- "volume": 0,
- "transport_type": "lorry",
- "transport_body_type": "awning"
}, - "freezing": [
- {
- "kind": "ResourceFreezingValue",
- "code_name": "string",
- "name": "string",
- "end_time": "2024-07-30T14:07:50Z"
}
], - "number_sts": "string",
- "owner_sts": "string",
- "owning_type": "own",
- "max_lifting_capacity": 5.2,
- "car_number": "string",
- "car_additional_info": {
- "vin": "string",
- "engine_number": "string",
- "chassis_number": "string",
- "body_number": "string"
}, - "car_phone": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z",
- "additional": {
- "disinfected_from": "2024-07-30T14:07:50Z",
- "disinfected_until": "2024-07-30T14:07:50Z",
- "is_disinfected": true,
- "has_temperature_check": true
}, - "loading_option": {
- "full": true,
- "lateral": true,
- "rear": true,
- "upper": true,
- "removable_side_racks": true,
- "removable_upper_beam": true,
- "rigid_board": true,
- "number_of_belts": 0
}
}
], - "trailers": [
- {
- "id": "string",
- "human_friendly_id": "человекочитаемый id",
- "kind": "ResourceTrailer",
- "brand": "string",
- "company_id": "string",
- "status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "lifting_capacity": {
- "id": "string",
- "tonnage": 0,
- "volume": 0,
- "transport_type": "lorry",
- "transport_body_type": "awning"
}, - "freezing": [
- {
- "kind": "ResourceFreezingValue",
- "code_name": "string",
- "name": "string",
- "end_time": "2024-07-30T14:07:50Z"
}
], - "number_sts": "string",
- "owner_sts": "string",
- "owning_type": "own",
- "trailer_number": "string",
- "trailer_additional_info": {
- "vin": "string",
- "chassis_number": "string"
}, - "lifting_capacity_id": "string",
- "max_lifting_capacity": 5.2,
- "dimensions_cargo_hold": {
- "length": 0,
- "width": 0,
- "height": 0
}, - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z",
- "additional": {
- "disinfected_from": "2024-07-30T14:07:50Z",
- "disinfected_until": "2024-07-30T14:07:50Z",
- "is_disinfected": true,
- "has_temperature_check": true
}, - "loading_option": {
- "full": true,
- "lateral": true,
- "rear": true,
- "upper": true,
- "removable_side_racks": true,
- "removable_upper_beam": true,
- "rigid_board": true,
- "number_of_belts": 0
}
}
]
}, - "expedited_payment": true,
- "document_flow": "scancopy",
- "shippings_count": 1,
- "scancopy_attachment_deadline": "2024-07-30T14:07:50Z",
- "requirements_changes_deadline": "2024-07-30T14:07:50Z",
- "reserved_at": "2024-07-30T14:07:50Z",
- "important_changes_at": "2024-07-30T14:07:50Z",
- "requirements_accepted_at": "2024-07-30T14:07:50Z",
- "closing_ttd_documents_accepted_at": "string",
- "closing_ttd_documents_rejected_at": "string",
- "closing_ttd_documents_rejection_comment": "string",
- "closing_ttd_forwarder_documents_accepted_at": "string",
- "closing_ttd_forwarder_documents_rejected_at": "string",
- "closing_ttd_forwarder_documents_rejection_comment": "string",
- "closing_bd_documents_accepted_at": "string",
- "closing_bd_documents_rejected_at": "string",
- "closing_bd_documents_rejection_comment": "string",
- "closing_status": "documents_accepted",
- "planned_payment_date": "2024-07-30",
- "actual_payment_date": "2024-07-30",
- "contact": {
- "id": "string",
- "full_name": "string",
- "email": "string",
- "phone": "string"
}, - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
Установить время подачи автомобиля для точки
TransportCompanyAdmin
) shipping_id required | string <uuid> ID перевозки |
route_point_id required | integer ID точки маршрута |
Content-Type required | any Value: "application/json" |
car_supply_at | string <date-time> Выбранная перевозчиком дата подачи автомобиля для интервальных заявок |
Неверные параметры запроса
Нет прав на выполнение действия
Объект не найден
{- "car_supply_at": "2024-07-30T14:07:50Z"
}
{- "shipping_request_info": {
- "id": "string",
- "human_friendly_id": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z",
- "kind": "ShippingRequest",
- "status": {
- "code_name": "new",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "status_history": [
- {
- "status": {
- "code_name": "new",
- "comment": "string"
}, - "created_at": "2024-07-30T14:07:50Z"
}
], - "type": "shipping_request",
- "cargo_owning_company_id": "string",
- "author_id": "string",
- "shipping_order_id": "string",
- "contract_id": "string",
- "contract_hfid": "string",
- "client_category": "category_1",
- "comment": "string",
- "resource_assignment_time": 30,
- "completed_at": "2024-07-30T14:07:50Z",
- "contract_begins_at": "2024-07-30T14:07:50Z",
- "contract_ends_at": "2024-07-30T14:07:50Z",
- "contract_type": "by_shippings_count",
- "shippings_count": 1,
- "max_shippings_per_day": 1,
- "max_shippings_per_week": 1,
- "shipping_available_in": 0,
- "resource_requirements": {
- "transport_body_type": [
- "awning"
], - "transport_type": [
- "lorry"
], - "lifting_capacity": [
- "string"
], - "lifting_capacities": [
- {
- "id": "string",
- "kind": "string",
- "tonnage": 0,
- "volume": 0,
- "transport_body_type": "awning",
- "transport_type": "lorry"
}
], - "has_russian_citizen": true,
- "has_driver_coveralls": true,
- "has_no_criminal_records": true,
- "has_rigid_board": true,
- "has_medical_book": true,
- "has_removable_upper_beam": true,
- "has_removable_side_racks": true,
- "is_express": true,
- "number_of_belts": 0,
- "has_shipping_power_of_attorney_original": true,
- "is_disinfected": true,
- "has_temperature_check": true,
- "temperature_condition": {
- "min": 0,
- "max": 0
}, - "own_transport_only": true,
- "timber_bunks": true,
- "tir_document": true,
- "cmr_document": true
}, - "cargo_description": "string",
- "cargo_tonnage": 0,
- "cargo_volume": 0,
- "cargo_cost": 0,
- "cargo_adr": "1",
- "cargo_length": 0.5,
- "cargo_width": 0.5,
- "cargo_height": 0.5,
- "cargo_places": 0,
- "cargo_packing": "reels",
- "route_segments": [
- {
- "id": 0,
- "from_route_point_id": 0,
- "to_route_point_id": 0,
- "distance": 0,
- "unloading": {
- "type": [
- "full"
], - "duration": 300
}, - "loading": {
- "type": [
- "full"
], - "duration": 300
}
}
], - "route_points": [
- {
- "id": 0,
- "car_supply_range": [
- {
- "from": "2024-07-30T14:07:50Z",
- "until": "2024-07-30T14:07:50Z"
}
], - "car_supply_grouped_range": [
- [
- {
- "date": "2018-04-16T00:00:00+00:00",
- "times": [
- {
- "from": "2018-04-16T10:00:00+00:00",
- "until": "2018-04-16T12:00:00+00:00"
}, - {
- "from": "2018-04-16T13:00:00+00:00",
- "until": "2018-04-16T18:00:00+00:00"
}
]
}, - {
- "date": "2018-04-16T00:00:00+00:00",
- "times": [
- {
- "from": "2018-04-17T10:00:00+00:00",
- "until": "2018-04-17T12:00:00+00:00"
}, - {
- "from": "2018-04-17T13:00:00+00:00",
- "until": "2018-04-17T18:00:00+00:00"
}
]
}
]
], - "car_supply_at": "2024-07-30T14:07:50Z",
- "need_document_work": true,
- "additional_services": [
- {
- "id": "string",
- "name": "string",
- "count": 1,
- "price": 0
}
], - "counter_agent": {
- "private_person": true,
- "legal_entity_title": "string",
- "legal_entity_inn": "string",
- "legal_entity_kpp": "string",
- "legal_entity_opf_name": "string",
- "private_person_full_name": "string",
- "private_person_passport_type": "passport",
- "private_person_passport_number": "string",
- "private_person_passport_issuer": "string",
- "private_person_passport_issued_at": "2024-07-30",
- "private_person_passport_info": "2024-07-30"
}, - "cargo_receiver_sender_info": {
- "address": "string",
- "phone": "string",
- "company_name": "string",
- "contact_name": "string",
- "contact_inn": "string",
- "contact_kpp": "string",
- "contact_opf_code": "string",
- "contact_opf_name": "string",
- "passport_number": "string",
- "passport_issued_at": null,
- "passport_who_issued": "string"
}, - "location": {
- "country": "Россия",
- "country_iso_code": "RU",
- "federal_district": "Северо-Западный",
- "region": "Санкт-Петербург",
- "region_type": "г",
- "region_with_type": "г Санкт-Петербург",
- "region_fias_id": "c2deb16a-0330-4f05-821f-1d09c93331e6",
- "region_kladr_id": "7800000000000",
- "region_iso_code": "RU-SPE",
- "area": "Краснокамский",
- "area_type": "р-н",
- "area_with_type": "Краснокамский р-н",
- "area_fias_id": "c278cbbc-e209-4b0f-b20e-9c19ed6f6802",
- "area_kladr_id": "0203100000000",
- "city": "Санкт-Петербург",
- "city_type": "г",
- "city_with_type": "г Санкт-Петербург",
- "city_fias_id": "c2deb16a-0330-4f05-821f-1d09c93331e6",
- "city_kladr_id": "7800000000000",
- "settlement": "Жилгородок",
- "settlement_type": "п",
- "settlement_with_type": "п Жилгородок",
- "settlement_fias_id": "8eab754d-38df-4fac-bebd-b27a46f45ea2",
- "settlement_kladr_id": "4701200005100",
- "street": "Московский",
- "street_type": "пр-кт",
- "street_with_type": "Московский пр-кт",
- "street_fias_id": "01b3acfc-5a4d-4d0f-a2de-67aef6effe31",
- "street_kladr_id": "78000000000085200",
- "house": "дом 1А/2 строение 3 корпус 4 литера Б",
- "house_fias_id": "315a5cc2-7676-460f-ab44-a85c38eea89a",
- "house_kladr_id": "7800000000013430010",
- "office": "офис 1 помещение 2",
- "fias_id": "315a5cc2-7676-460f-ab44-a85c38eea89a",
- "kladr_id": "7800000000013430010",
- "lat": 59.9017959,
- "lng": 30.3194694,
- "zip_code": "196084",
- "timezone_name": "Europe/Moscow",
- "level": "country",
- "country_id": 643,
- "locality": "Жилгородок п",
- "fraction": 0,
- "housing": 0,
- "structure": 0,
- "literature": "string",
- "apartment": "string",
- "latitude": 0,
- "longitude": 0,
- "local_time_zone": 0,
- "comment": "string",
- "id": "string",
- "code": "string",
- "full_string_address": "string",
- "value": "string",
- "is_canonical": true
}, - "radius": 1
}
], - "route_direction_id": "string",
- "route_direction": {
- "country": "Россия",
- "country_iso_code": "RU",
- "federal_district": "Северо-Западный",
- "region": "Санкт-Петербург",
- "region_type": "г",
- "region_with_type": "г Санкт-Петербург",
- "region_fias_id": "c2deb16a-0330-4f05-821f-1d09c93331e6",
- "region_kladr_id": "7800000000000",
- "region_iso_code": "RU-SPE",
- "area": "Краснокамский",
- "area_type": "р-н",
- "area_with_type": "Краснокамский р-н",
- "area_fias_id": "c278cbbc-e209-4b0f-b20e-9c19ed6f6802",
- "area_kladr_id": "0203100000000",
- "city": "Санкт-Петербург",
- "city_type": "г",
- "city_with_type": "г Санкт-Петербург",
- "city_fias_id": "c2deb16a-0330-4f05-821f-1d09c93331e6",
- "city_kladr_id": "7800000000000",
- "settlement": "Жилгородок",
- "settlement_type": "п",
- "settlement_with_type": "п Жилгородок",
- "settlement_fias_id": "8eab754d-38df-4fac-bebd-b27a46f45ea2",
- "settlement_kladr_id": "4701200005100",
- "street": "Московский",
- "street_type": "пр-кт",
- "street_with_type": "Московский пр-кт",
- "street_fias_id": "01b3acfc-5a4d-4d0f-a2de-67aef6effe31",
- "street_kladr_id": "78000000000085200",
- "house": "дом 1А/2 строение 3 корпус 4 литера Б",
- "house_fias_id": "315a5cc2-7676-460f-ab44-a85c38eea89a",
- "house_kladr_id": "7800000000013430010",
- "office": "офис 1 помещение 2",
- "fias_id": "315a5cc2-7676-460f-ab44-a85c38eea89a",
- "kladr_id": "7800000000013430010",
- "lat": 59.9017959,
- "lng": 30.3194694,
- "zip_code": "196084",
- "timezone_name": "Europe/Moscow",
- "level": "country",
- "country_id": 643,
- "locality": "Жилгородок п",
- "fraction": 0,
- "housing": 0,
- "structure": 0,
- "literature": "string",
- "apartment": "string",
- "latitude": 0,
- "longitude": 0,
- "local_time_zone": 0,
- "comment": "string",
- "id": "string",
- "code": "string",
- "full_string_address": "string",
- "value": "string",
- "is_canonical": true
}, - "circular_route": true,
- "is_interval": true,
- "offer_deadline": "2024-07-30T14:07:50Z",
- "intermediate_results_at": "2024-07-30T14:07:50Z",
- "auction_type": "instant_reservation",
- "many_executors_allowed": false,
- "bid_step": 0,
- "bids": [
- {
- "id": "string",
- "ntk_id": "string",
- "author": {
- "id": "string",
- "human_friendly_id": "string",
- "title": "string",
- "country_id": 0,
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "inn": "string",
- "kpp": "string",
- "tax_type": "with_vat",
- "opf_id": 0,
- "opf": {
- "id": 1,
- "code": "12300",
- "name": "ООО"
}, - "rating": 0,
- "logo_url": "string"
}, - "shipping_request_id": "string",
- "shipping_order_id": "string",
- "value": 1,
- "status": "current",
- "tax_type": "with_vat",
- "expedited_payment": false,
- "shippings_count": 1,
- "auction_stage_number": 1,
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
], - "expedited_payment_available": true,
- "shipping_order_contract_id": "string",
- "shipping_order_contract_hfid": "string",
- "contract_shipping_id": "string",
- "contract_shipping_price": 0,
- "dynamic_pricing": true,
- "document_flow": [
- "scancopy"
], - "closing_documents_period": 1,
- "closing_documents_period_type": "calendar",
- "closing_documents": [
- {
- "name": "string",
- "count": 0
}
], - "agreement_type": "shipping_agreement",
- "change_requests_allowed": true,
- "terms_by_partnership_contract": true,
- "idle_time_cost_without_vat": 50,
- "documents_for_payment": [
- "bill_of_lading"
], - "payment_procedure": "prepayment",
- "payment_period": 1,
- "payment_period_type": "calendar",
- "payment_type": "per_hour",
- "min_work_hours": 0,
- "cancellation_without_penalty_before": "2024-07-30T14:07:50Z",
- "cancellation_penalty_percent": 0,
- "minimum_cancellation_penalty_without_vat": 0,
- "price": 0,
- "expedited_payment_fee": 0,
- "min_bid": 0,
- "max_bid": 0,
- "winning_bid": 0,
- "expedited_payment_winning_bid": 0,
- "is_bid_winning": true,
- "tc_requirements_changes": [
- {
- "id": "string",
- "status": "string",
- "price": 0,
- "car_supply_at": null
}
], - "tc_requirements_change": {
- "id": "string",
- "status": "string",
- "price": 0,
- "car_supply_at": null
}, - "contact": {
- "full_name": "string",
- "phone": "stringstrin",
- "extension_number": "string",
- "email": "string"
}
}, - "assigned_resources": [
- {
- "driver_contact_info": "string",
- "route_segment_id": 0,
- "drivers_ids": [
- "string"
], - "car_id": "string",
- "trailer_id": "string"
}
], - "selected_car_supply": [
- {
- "route_point_id": 0,
- "car_supply_at": "2024-07-30T14:07:50Z"
}
], - "completed_at": "2024-07-30T14:07:50Z",
- "resource_assignment_deadline": "2024-07-30T14:07:50Z",
- "kind": "ShippingOutput",
- "id": "string",
- "human_friendly_id": "Человеко понятный id",
- "status": {
- "code_name": "resources_waiting",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "status_history": [
- [
- {
- "status": "blacklisted",
- "status_comment": "string",
- "created_at": "2024-07-30T14:07:50Z"
}
]
], - "scancopy_status": "cargo_owner_signing",
- "scancopy_status_comment": "string",
- "contract_id": "string",
- "contract_hfid": "string",
- "shipping_order_contract_id": "string",
- "shipping_order_contract_hfid": "string",
- "contract_shipping_id": "string",
- "company_id": "string",
- "company": {
- "id": "string",
- "human_friendly_id": "string",
- "title": "string",
- "country_id": 0,
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "inn": "string",
- "kpp": "string",
- "tax_type": "with_vat",
- "opf_id": 0,
- "opf": {
- "id": 1,
- "code": "12300",
- "name": "ООО"
}, - "rating": 0,
- "logo_url": "string"
}, - "shipping_request_id": "string",
- "shipping_order_id": "string",
- "assigned_resource_objects": {
- "drivers": [
- {
- "id": "string",
- "kind": "ResourceDriver",
- "human_friendly_id": "человекочитаемый id",
- "full_name": "string",
- "company_id": "string",
- "freezing": [
- {
- "kind": "ResourceFreezingValue",
- "code_name": "string",
- "name": "string",
- "end_time": "2024-07-30T14:07:50Z"
}
], - "prohibited_categories": [
- "category_1"
], - "delivery_allowed": true,
- "status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "driver_secret_info": {
- "common": {
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "country_id": 0,
- "first_name": "string",
- "last_name": "string",
- "middle_name": "string",
- "birth_date": "2024-07-30T14:07:50Z"
}, - "doc": {
- "type": "passport",
- "number": "string",
- "issued_at": "2024-07-30T14:07:50Z",
- "subdivision_code": "370-011",
- "who_issued": "string",
- "expired_at": "2024-07-30T14:07:50Z"
}, - "address": {
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "country_id": 0,
- "city": "string",
- "street": "string",
- "house_number": "string",
- "zip_code": "string",
- "room": "string"
}, - "inn": "string",
- "driver_license": {
- "number": "string",
- "who_issued": "string",
- "issued_at": "2024-07-30T14:07:50Z",
- "expired_at": "2024-07-30T14:07:50Z"
}, - "have_medical_book": true,
- "phones": [
- "string"
]
}, - "power_of_attorney": {
- "start": "2024-07-30T14:07:50Z",
- "end": "2024-07-30T14:07:50Z"
}, - "attorneys": {
- "cartegory_1": {
- "from": "2024-07-30T14:07:50Z",
- "until": "2024-07-30T14:07:50Z",
- "status": "new"
}, - "cartegory_2": {
- "from": "2024-07-30T14:07:50Z",
- "until": "2024-07-30T14:07:50Z",
- "status": "new"
}
}, - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
], - "cars": [
- {
- "id": "string",
- "human_friendly_id": "человекочитаемый id",
- "kind": "ResourceCar",
- "brand": "string",
- "company_id": "string",
- "status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "lifting_capacity": {
- "id": "string",
- "tonnage": 0,
- "volume": 0,
- "transport_type": "lorry",
- "transport_body_type": "awning"
}, - "freezing": [
- {
- "kind": "ResourceFreezingValue",
- "code_name": "string",
- "name": "string",
- "end_time": "2024-07-30T14:07:50Z"
}
], - "number_sts": "string",
- "owner_sts": "string",
- "owning_type": "own",
- "max_lifting_capacity": 5.2,
- "car_number": "string",
- "car_additional_info": {
- "vin": "string",
- "engine_number": "string",
- "chassis_number": "string",
- "body_number": "string"
}, - "car_phone": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z",
- "additional": {
- "disinfected_from": "2024-07-30T14:07:50Z",
- "disinfected_until": "2024-07-30T14:07:50Z",
- "is_disinfected": true,
- "has_temperature_check": true
}, - "loading_option": {
- "full": true,
- "lateral": true,
- "rear": true,
- "upper": true,
- "removable_side_racks": true,
- "removable_upper_beam": true,
- "rigid_board": true,
- "number_of_belts": 0
}
}
], - "trailers": [
- {
- "id": "string",
- "human_friendly_id": "человекочитаемый id",
- "kind": "ResourceTrailer",
- "brand": "string",
- "company_id": "string",
- "status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "lifting_capacity": {
- "id": "string",
- "tonnage": 0,
- "volume": 0,
- "transport_type": "lorry",
- "transport_body_type": "awning"
}, - "freezing": [
- {
- "kind": "ResourceFreezingValue",
- "code_name": "string",
- "name": "string",
- "end_time": "2024-07-30T14:07:50Z"
}
], - "number_sts": "string",
- "owner_sts": "string",
- "owning_type": "own",
- "trailer_number": "string",
- "trailer_additional_info": {
- "vin": "string",
- "chassis_number": "string"
}, - "lifting_capacity_id": "string",
- "max_lifting_capacity": 5.2,
- "dimensions_cargo_hold": {
- "length": 0,
- "width": 0,
- "height": 0
}, - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z",
- "additional": {
- "disinfected_from": "2024-07-30T14:07:50Z",
- "disinfected_until": "2024-07-30T14:07:50Z",
- "is_disinfected": true,
- "has_temperature_check": true
}, - "loading_option": {
- "full": true,
- "lateral": true,
- "rear": true,
- "upper": true,
- "removable_side_racks": true,
- "removable_upper_beam": true,
- "rigid_board": true,
- "number_of_belts": 0
}
}
]
}, - "expedited_payment": true,
- "document_flow": "scancopy",
- "shippings_count": 1,
- "scancopy_attachment_deadline": "2024-07-30T14:07:50Z",
- "requirements_changes_deadline": "2024-07-30T14:07:50Z",
- "reserved_at": "2024-07-30T14:07:50Z",
- "important_changes_at": "2024-07-30T14:07:50Z",
- "requirements_accepted_at": "2024-07-30T14:07:50Z",
- "closing_ttd_documents_accepted_at": "string",
- "closing_ttd_documents_rejected_at": "string",
- "closing_ttd_documents_rejection_comment": "string",
- "closing_ttd_forwarder_documents_accepted_at": "string",
- "closing_ttd_forwarder_documents_rejected_at": "string",
- "closing_ttd_forwarder_documents_rejection_comment": "string",
- "closing_bd_documents_accepted_at": "string",
- "closing_bd_documents_rejected_at": "string",
- "closing_bd_documents_rejection_comment": "string",
- "closing_status": "documents_accepted",
- "planned_payment_date": "2024-07-30",
- "actual_payment_date": "2024-07-30",
- "contact": {
- "id": "string",
- "full_name": "string",
- "email": "string",
- "phone": "string"
}, - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
Отказаться от выполнения перевозки
TransportCompanyAdmin
) shipping_id required | string <uuid> ID перевозки |
Неверные параметры запроса
Нет прав на выполнение действия
Объект не найден
{- "shipping_request_info": {
- "id": "string",
- "human_friendly_id": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z",
- "kind": "ShippingRequest",
- "status": {
- "code_name": "new",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "status_history": [
- {
- "status": {
- "code_name": "new",
- "comment": "string"
}, - "created_at": "2024-07-30T14:07:50Z"
}
], - "type": "shipping_request",
- "cargo_owning_company_id": "string",
- "author_id": "string",
- "shipping_order_id": "string",
- "contract_id": "string",
- "contract_hfid": "string",
- "client_category": "category_1",
- "comment": "string",
- "resource_assignment_time": 30,
- "completed_at": "2024-07-30T14:07:50Z",
- "contract_begins_at": "2024-07-30T14:07:50Z",
- "contract_ends_at": "2024-07-30T14:07:50Z",
- "contract_type": "by_shippings_count",
- "shippings_count": 1,
- "max_shippings_per_day": 1,
- "max_shippings_per_week": 1,
- "shipping_available_in": 0,
- "resource_requirements": {
- "transport_body_type": [
- "awning"
], - "transport_type": [
- "lorry"
], - "lifting_capacity": [
- "string"
], - "lifting_capacities": [
- {
- "id": "string",
- "kind": "string",
- "tonnage": 0,
- "volume": 0,
- "transport_body_type": "awning",
- "transport_type": "lorry"
}
], - "has_russian_citizen": true,
- "has_driver_coveralls": true,
- "has_no_criminal_records": true,
- "has_rigid_board": true,
- "has_medical_book": true,
- "has_removable_upper_beam": true,
- "has_removable_side_racks": true,
- "is_express": true,
- "number_of_belts": 0,
- "has_shipping_power_of_attorney_original": true,
- "is_disinfected": true,
- "has_temperature_check": true,
- "temperature_condition": {
- "min": 0,
- "max": 0
}, - "own_transport_only": true,
- "timber_bunks": true,
- "tir_document": true,
- "cmr_document": true
}, - "cargo_description": "string",
- "cargo_tonnage": 0,
- "cargo_volume": 0,
- "cargo_cost": 0,
- "cargo_adr": "1",
- "cargo_length": 0.5,
- "cargo_width": 0.5,
- "cargo_height": 0.5,
- "cargo_places": 0,
- "cargo_packing": "reels",
- "route_segments": [
- {
- "id": 0,
- "from_route_point_id": 0,
- "to_route_point_id": 0,
- "distance": 0,
- "unloading": {
- "type": [
- "full"
], - "duration": 300
}, - "loading": {
- "type": [
- "full"
], - "duration": 300
}
}
], - "route_points": [
- {
- "id": 0,
- "car_supply_range": [
- {
- "from": "2024-07-30T14:07:50Z",
- "until": "2024-07-30T14:07:50Z"
}
], - "car_supply_grouped_range": [
- [
- {
- "date": "2018-04-16T00:00:00+00:00",
- "times": [
- {
- "from": "2018-04-16T10:00:00+00:00",
- "until": "2018-04-16T12:00:00+00:00"
}, - {
- "from": "2018-04-16T13:00:00+00:00",
- "until": "2018-04-16T18:00:00+00:00"
}
]
}, - {
- "date": "2018-04-16T00:00:00+00:00",
- "times": [
- {
- "from": "2018-04-17T10:00:00+00:00",
- "until": "2018-04-17T12:00:00+00:00"
}, - {
- "from": "2018-04-17T13:00:00+00:00",
- "until": "2018-04-17T18:00:00+00:00"
}
]
}
]
], - "car_supply_at": "2024-07-30T14:07:50Z",
- "need_document_work": true,
- "additional_services": [
- {
- "id": "string",
- "name": "string",
- "count": 1,
- "price": 0
}
], - "counter_agent": {
- "private_person": true,
- "legal_entity_title": "string",
- "legal_entity_inn": "string",
- "legal_entity_kpp": "string",
- "legal_entity_opf_name": "string",
- "private_person_full_name": "string",
- "private_person_passport_type": "passport",
- "private_person_passport_number": "string",
- "private_person_passport_issuer": "string",
- "private_person_passport_issued_at": "2024-07-30",
- "private_person_passport_info": "2024-07-30"
}, - "cargo_receiver_sender_info": {
- "address": "string",
- "phone": "string",
- "company_name": "string",
- "contact_name": "string",
- "contact_inn": "string",
- "contact_kpp": "string",
- "contact_opf_code": "string",
- "contact_opf_name": "string",
- "passport_number": "string",
- "passport_issued_at": null,
- "passport_who_issued": "string"
}, - "location": {
- "country": "Россия",
- "country_iso_code": "RU",
- "federal_district": "Северо-Западный",
- "region": "Санкт-Петербург",
- "region_type": "г",
- "region_with_type": "г Санкт-Петербург",
- "region_fias_id": "c2deb16a-0330-4f05-821f-1d09c93331e6",
- "region_kladr_id": "7800000000000",
- "region_iso_code": "RU-SPE",
- "area": "Краснокамский",
- "area_type": "р-н",
- "area_with_type": "Краснокамский р-н",
- "area_fias_id": "c278cbbc-e209-4b0f-b20e-9c19ed6f6802",
- "area_kladr_id": "0203100000000",
- "city": "Санкт-Петербург",
- "city_type": "г",
- "city_with_type": "г Санкт-Петербург",
- "city_fias_id": "c2deb16a-0330-4f05-821f-1d09c93331e6",
- "city_kladr_id": "7800000000000",
- "settlement": "Жилгородок",
- "settlement_type": "п",
- "settlement_with_type": "п Жилгородок",
- "settlement_fias_id": "8eab754d-38df-4fac-bebd-b27a46f45ea2",
- "settlement_kladr_id": "4701200005100",
- "street": "Московский",
- "street_type": "пр-кт",
- "street_with_type": "Московский пр-кт",
- "street_fias_id": "01b3acfc-5a4d-4d0f-a2de-67aef6effe31",
- "street_kladr_id": "78000000000085200",
- "house": "дом 1А/2 строение 3 корпус 4 литера Б",
- "house_fias_id": "315a5cc2-7676-460f-ab44-a85c38eea89a",
- "house_kladr_id": "7800000000013430010",
- "office": "офис 1 помещение 2",
- "fias_id": "315a5cc2-7676-460f-ab44-a85c38eea89a",
- "kladr_id": "7800000000013430010",
- "lat": 59.9017959,
- "lng": 30.3194694,
- "zip_code": "196084",
- "timezone_name": "Europe/Moscow",
- "level": "country",
- "country_id": 643,
- "locality": "Жилгородок п",
- "fraction": 0,
- "housing": 0,
- "structure": 0,
- "literature": "string",
- "apartment": "string",
- "latitude": 0,
- "longitude": 0,
- "local_time_zone": 0,
- "comment": "string",
- "id": "string",
- "code": "string",
- "full_string_address": "string",
- "value": "string",
- "is_canonical": true
}, - "radius": 1
}
], - "route_direction_id": "string",
- "route_direction": {
- "country": "Россия",
- "country_iso_code": "RU",
- "federal_district": "Северо-Западный",
- "region": "Санкт-Петербург",
- "region_type": "г",
- "region_with_type": "г Санкт-Петербург",
- "region_fias_id": "c2deb16a-0330-4f05-821f-1d09c93331e6",
- "region_kladr_id": "7800000000000",
- "region_iso_code": "RU-SPE",
- "area": "Краснокамский",
- "area_type": "р-н",
- "area_with_type": "Краснокамский р-н",
- "area_fias_id": "c278cbbc-e209-4b0f-b20e-9c19ed6f6802",
- "area_kladr_id": "0203100000000",
- "city": "Санкт-Петербург",
- "city_type": "г",
- "city_with_type": "г Санкт-Петербург",
- "city_fias_id": "c2deb16a-0330-4f05-821f-1d09c93331e6",
- "city_kladr_id": "7800000000000",
- "settlement": "Жилгородок",
- "settlement_type": "п",
- "settlement_with_type": "п Жилгородок",
- "settlement_fias_id": "8eab754d-38df-4fac-bebd-b27a46f45ea2",
- "settlement_kladr_id": "4701200005100",
- "street": "Московский",
- "street_type": "пр-кт",
- "street_with_type": "Московский пр-кт",
- "street_fias_id": "01b3acfc-5a4d-4d0f-a2de-67aef6effe31",
- "street_kladr_id": "78000000000085200",
- "house": "дом 1А/2 строение 3 корпус 4 литера Б",
- "house_fias_id": "315a5cc2-7676-460f-ab44-a85c38eea89a",
- "house_kladr_id": "7800000000013430010",
- "office": "офис 1 помещение 2",
- "fias_id": "315a5cc2-7676-460f-ab44-a85c38eea89a",
- "kladr_id": "7800000000013430010",
- "lat": 59.9017959,
- "lng": 30.3194694,
- "zip_code": "196084",
- "timezone_name": "Europe/Moscow",
- "level": "country",
- "country_id": 643,
- "locality": "Жилгородок п",
- "fraction": 0,
- "housing": 0,
- "structure": 0,
- "literature": "string",
- "apartment": "string",
- "latitude": 0,
- "longitude": 0,
- "local_time_zone": 0,
- "comment": "string",
- "id": "string",
- "code": "string",
- "full_string_address": "string",
- "value": "string",
- "is_canonical": true
}, - "circular_route": true,
- "is_interval": true,
- "offer_deadline": "2024-07-30T14:07:50Z",
- "intermediate_results_at": "2024-07-30T14:07:50Z",
- "auction_type": "instant_reservation",
- "many_executors_allowed": false,
- "bid_step": 0,
- "bids": [
- {
- "id": "string",
- "ntk_id": "string",
- "author": {
- "id": "string",
- "human_friendly_id": "string",
- "title": "string",
- "country_id": 0,
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "inn": "string",
- "kpp": "string",
- "tax_type": "with_vat",
- "opf_id": 0,
- "opf": {
- "id": 1,
- "code": "12300",
- "name": "ООО"
}, - "rating": 0,
- "logo_url": "string"
}, - "shipping_request_id": "string",
- "shipping_order_id": "string",
- "value": 1,
- "status": "current",
- "tax_type": "with_vat",
- "expedited_payment": false,
- "shippings_count": 1,
- "auction_stage_number": 1,
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
], - "expedited_payment_available": true,
- "shipping_order_contract_id": "string",
- "shipping_order_contract_hfid": "string",
- "contract_shipping_id": "string",
- "contract_shipping_price": 0,
- "dynamic_pricing": true,
- "document_flow": [
- "scancopy"
], - "closing_documents_period": 1,
- "closing_documents_period_type": "calendar",
- "closing_documents": [
- {
- "name": "string",
- "count": 0
}
], - "agreement_type": "shipping_agreement",
- "change_requests_allowed": true,
- "terms_by_partnership_contract": true,
- "idle_time_cost_without_vat": 50,
- "documents_for_payment": [
- "bill_of_lading"
], - "payment_procedure": "prepayment",
- "payment_period": 1,
- "payment_period_type": "calendar",
- "payment_type": "per_hour",
- "min_work_hours": 0,
- "cancellation_without_penalty_before": "2024-07-30T14:07:50Z",
- "cancellation_penalty_percent": 0,
- "minimum_cancellation_penalty_without_vat": 0,
- "price": 0,
- "expedited_payment_fee": 0,
- "min_bid": 0,
- "max_bid": 0,
- "winning_bid": 0,
- "expedited_payment_winning_bid": 0,
- "is_bid_winning": true,
- "tc_requirements_changes": [
- {
- "id": "string",
- "status": "string",
- "price": 0,
- "car_supply_at": null
}
], - "tc_requirements_change": {
- "id": "string",
- "status": "string",
- "price": 0,
- "car_supply_at": null
}, - "contact": {
- "full_name": "string",
- "phone": "stringstrin",
- "extension_number": "string",
- "email": "string"
}
}, - "assigned_resources": [
- {
- "driver_contact_info": "string",
- "route_segment_id": 0,
- "drivers_ids": [
- "string"
], - "car_id": "string",
- "trailer_id": "string"
}
], - "selected_car_supply": [
- {
- "route_point_id": 0,
- "car_supply_at": "2024-07-30T14:07:50Z"
}
], - "completed_at": "2024-07-30T14:07:50Z",
- "resource_assignment_deadline": "2024-07-30T14:07:50Z",
- "kind": "ShippingOutput",
- "id": "string",
- "human_friendly_id": "Человеко понятный id",
- "status": {
- "code_name": "resources_waiting",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "status_history": [
- [
- {
- "status": "blacklisted",
- "status_comment": "string",
- "created_at": "2024-07-30T14:07:50Z"
}
]
], - "scancopy_status": "cargo_owner_signing",
- "scancopy_status_comment": "string",
- "contract_id": "string",
- "contract_hfid": "string",
- "shipping_order_contract_id": "string",
- "shipping_order_contract_hfid": "string",
- "contract_shipping_id": "string",
- "company_id": "string",
- "company": {
- "id": "string",
- "human_friendly_id": "string",
- "title": "string",
- "country_id": 0,
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "inn": "string",
- "kpp": "string",
- "tax_type": "with_vat",
- "opf_id": 0,
- "opf": {
- "id": 1,
- "code": "12300",
- "name": "ООО"
}, - "rating": 0,
- "logo_url": "string"
}, - "shipping_request_id": "string",
- "shipping_order_id": "string",
- "assigned_resource_objects": {
- "drivers": [
- {
- "id": "string",
- "kind": "ResourceDriver",
- "human_friendly_id": "человекочитаемый id",
- "full_name": "string",
- "company_id": "string",
- "freezing": [
- {
- "kind": "ResourceFreezingValue",
- "code_name": "string",
- "name": "string",
- "end_time": "2024-07-30T14:07:50Z"
}
], - "prohibited_categories": [
- "category_1"
], - "delivery_allowed": true,
- "status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "driver_secret_info": {
- "common": {
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "country_id": 0,
- "first_name": "string",
- "last_name": "string",
- "middle_name": "string",
- "birth_date": "2024-07-30T14:07:50Z"
}, - "doc": {
- "type": "passport",
- "number": "string",
- "issued_at": "2024-07-30T14:07:50Z",
- "subdivision_code": "370-011",
- "who_issued": "string",
- "expired_at": "2024-07-30T14:07:50Z"
}, - "address": {
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "country_id": 0,
- "city": "string",
- "street": "string",
- "house_number": "string",
- "zip_code": "string",
- "room": "string"
}, - "inn": "string",
- "driver_license": {
- "number": "string",
- "who_issued": "string",
- "issued_at": "2024-07-30T14:07:50Z",
- "expired_at": "2024-07-30T14:07:50Z"
}, - "have_medical_book": true,
- "phones": [
- "string"
]
}, - "power_of_attorney": {
- "start": "2024-07-30T14:07:50Z",
- "end": "2024-07-30T14:07:50Z"
}, - "attorneys": {
- "cartegory_1": {
- "from": "2024-07-30T14:07:50Z",
- "until": "2024-07-30T14:07:50Z",
- "status": "new"
}, - "cartegory_2": {
- "from": "2024-07-30T14:07:50Z",
- "until": "2024-07-30T14:07:50Z",
- "status": "new"
}
}, - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
], - "cars": [
- {
- "id": "string",
- "human_friendly_id": "человекочитаемый id",
- "kind": "ResourceCar",
- "brand": "string",
- "company_id": "string",
- "status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "lifting_capacity": {
- "id": "string",
- "tonnage": 0,
- "volume": 0,
- "transport_type": "lorry",
- "transport_body_type": "awning"
}, - "freezing": [
- {
- "kind": "ResourceFreezingValue",
- "code_name": "string",
- "name": "string",
- "end_time": "2024-07-30T14:07:50Z"
}
], - "number_sts": "string",
- "owner_sts": "string",
- "owning_type": "own",
- "max_lifting_capacity": 5.2,
- "car_number": "string",
- "car_additional_info": {
- "vin": "string",
- "engine_number": "string",
- "chassis_number": "string",
- "body_number": "string"
}, - "car_phone": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z",
- "additional": {
- "disinfected_from": "2024-07-30T14:07:50Z",
- "disinfected_until": "2024-07-30T14:07:50Z",
- "is_disinfected": true,
- "has_temperature_check": true
}, - "loading_option": {
- "full": true,
- "lateral": true,
- "rear": true,
- "upper": true,
- "removable_side_racks": true,
- "removable_upper_beam": true,
- "rigid_board": true,
- "number_of_belts": 0
}
}
], - "trailers": [
- {
- "id": "string",
- "human_friendly_id": "человекочитаемый id",
- "kind": "ResourceTrailer",
- "brand": "string",
- "company_id": "string",
- "status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "lifting_capacity": {
- "id": "string",
- "tonnage": 0,
- "volume": 0,
- "transport_type": "lorry",
- "transport_body_type": "awning"
}, - "freezing": [
- {
- "kind": "ResourceFreezingValue",
- "code_name": "string",
- "name": "string",
- "end_time": "2024-07-30T14:07:50Z"
}
], - "number_sts": "string",
- "owner_sts": "string",
- "owning_type": "own",
- "trailer_number": "string",
- "trailer_additional_info": {
- "vin": "string",
- "chassis_number": "string"
}, - "lifting_capacity_id": "string",
- "max_lifting_capacity": 5.2,
- "dimensions_cargo_hold": {
- "length": 0,
- "width": 0,
- "height": 0
}, - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z",
- "additional": {
- "disinfected_from": "2024-07-30T14:07:50Z",
- "disinfected_until": "2024-07-30T14:07:50Z",
- "is_disinfected": true,
- "has_temperature_check": true
}, - "loading_option": {
- "full": true,
- "lateral": true,
- "rear": true,
- "upper": true,
- "removable_side_racks": true,
- "removable_upper_beam": true,
- "rigid_board": true,
- "number_of_belts": 0
}
}
]
}, - "expedited_payment": true,
- "document_flow": "scancopy",
- "shippings_count": 1,
- "scancopy_attachment_deadline": "2024-07-30T14:07:50Z",
- "requirements_changes_deadline": "2024-07-30T14:07:50Z",
- "reserved_at": "2024-07-30T14:07:50Z",
- "important_changes_at": "2024-07-30T14:07:50Z",
- "requirements_accepted_at": "2024-07-30T14:07:50Z",
- "closing_ttd_documents_accepted_at": "string",
- "closing_ttd_documents_rejected_at": "string",
- "closing_ttd_documents_rejection_comment": "string",
- "closing_ttd_forwarder_documents_accepted_at": "string",
- "closing_ttd_forwarder_documents_rejected_at": "string",
- "closing_ttd_forwarder_documents_rejection_comment": "string",
- "closing_bd_documents_accepted_at": "string",
- "closing_bd_documents_rejected_at": "string",
- "closing_bd_documents_rejection_comment": "string",
- "closing_status": "documents_accepted",
- "planned_payment_date": "2024-07-30",
- "actual_payment_date": "2024-07-30",
- "contact": {
- "id": "string",
- "full_name": "string",
- "email": "string",
- "phone": "string"
}, - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
Назначить ресурсы на перевозку
TransportCompanyAdmin
) shipping_id required | string <uuid> ID перевозки |
Content-Type required | any Value: "application/json" |
assigned_resources | Array of objects (AssignedResources) Назначаемые ресурсы |
document_flow | string Nullable Enum: "scancopy" "online_confirmation" "qualified_signature" Механизм работы с документами:
|
Неверные параметры запроса
Нет прав на выполнение действия
Объект не найден
{- "assigned_resources": [
- {
- "driver_contact_info": "string",
- "route_segment_id": 0,
- "drivers_ids": [
- "string"
], - "car_id": "string",
- "trailer_id": "string"
}
], - "document_flow": "scancopy"
}
{- "shipping_request_info": {
- "id": "string",
- "human_friendly_id": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z",
- "kind": "ShippingRequest",
- "status": {
- "code_name": "new",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "status_history": [
- {
- "status": {
- "code_name": "new",
- "comment": "string"
}, - "created_at": "2024-07-30T14:07:50Z"
}
], - "type": "shipping_request",
- "cargo_owning_company_id": "string",
- "author_id": "string",
- "shipping_order_id": "string",
- "contract_id": "string",
- "contract_hfid": "string",
- "client_category": "category_1",
- "comment": "string",
- "resource_assignment_time": 30,
- "completed_at": "2024-07-30T14:07:50Z",
- "contract_begins_at": "2024-07-30T14:07:50Z",
- "contract_ends_at": "2024-07-30T14:07:50Z",
- "contract_type": "by_shippings_count",
- "shippings_count": 1,
- "max_shippings_per_day": 1,
- "max_shippings_per_week": 1,
- "shipping_available_in": 0,
- "resource_requirements": {
- "transport_body_type": [
- "awning"
], - "transport_type": [
- "lorry"
], - "lifting_capacity": [
- "string"
], - "lifting_capacities": [
- {
- "id": "string",
- "kind": "string",
- "tonnage": 0,
- "volume": 0,
- "transport_body_type": "awning",
- "transport_type": "lorry"
}
], - "has_russian_citizen": true,
- "has_driver_coveralls": true,
- "has_no_criminal_records": true,
- "has_rigid_board": true,
- "has_medical_book": true,
- "has_removable_upper_beam": true,
- "has_removable_side_racks": true,
- "is_express": true,
- "number_of_belts": 0,
- "has_shipping_power_of_attorney_original": true,
- "is_disinfected": true,
- "has_temperature_check": true,
- "temperature_condition": {
- "min": 0,
- "max": 0
}, - "own_transport_only": true,
- "timber_bunks": true,
- "tir_document": true,
- "cmr_document": true
}, - "cargo_description": "string",
- "cargo_tonnage": 0,
- "cargo_volume": 0,
- "cargo_cost": 0,
- "cargo_adr": "1",
- "cargo_length": 0.5,
- "cargo_width": 0.5,
- "cargo_height": 0.5,
- "cargo_places": 0,
- "cargo_packing": "reels",
- "route_segments": [
- {
- "id": 0,
- "from_route_point_id": 0,
- "to_route_point_id": 0,
- "distance": 0,
- "unloading": {
- "type": [
- "full"
], - "duration": 300
}, - "loading": {
- "type": [
- "full"
], - "duration": 300
}
}
], - "route_points": [
- {
- "id": 0,
- "car_supply_range": [
- {
- "from": "2024-07-30T14:07:50Z",
- "until": "2024-07-30T14:07:50Z"
}
], - "car_supply_grouped_range": [
- [
- {
- "date": "2018-04-16T00:00:00+00:00",
- "times": [
- {
- "from": "2018-04-16T10:00:00+00:00",
- "until": "2018-04-16T12:00:00+00:00"
}, - {
- "from": "2018-04-16T13:00:00+00:00",
- "until": "2018-04-16T18:00:00+00:00"
}
]
}, - {
- "date": "2018-04-16T00:00:00+00:00",
- "times": [
- {
- "from": "2018-04-17T10:00:00+00:00",
- "until": "2018-04-17T12:00:00+00:00"
}, - {
- "from": "2018-04-17T13:00:00+00:00",
- "until": "2018-04-17T18:00:00+00:00"
}
]
}
]
], - "car_supply_at": "2024-07-30T14:07:50Z",
- "need_document_work": true,
- "additional_services": [
- {
- "id": "string",
- "name": "string",
- "count": 1,
- "price": 0
}
], - "counter_agent": {
- "private_person": true,
- "legal_entity_title": "string",
- "legal_entity_inn": "string",
- "legal_entity_kpp": "string",
- "legal_entity_opf_name": "string",
- "private_person_full_name": "string",
- "private_person_passport_type": "passport",
- "private_person_passport_number": "string",
- "private_person_passport_issuer": "string",
- "private_person_passport_issued_at": "2024-07-30",
- "private_person_passport_info": "2024-07-30"
}, - "cargo_receiver_sender_info": {
- "address": "string",
- "phone": "string",
- "company_name": "string",
- "contact_name": "string",
- "contact_inn": "string",
- "contact_kpp": "string",
- "contact_opf_code": "string",
- "contact_opf_name": "string",
- "passport_number": "string",
- "passport_issued_at": null,
- "passport_who_issued": "string"
}, - "location": {
- "country": "Россия",
- "country_iso_code": "RU",
- "federal_district": "Северо-Западный",
- "region": "Санкт-Петербург",
- "region_type": "г",
- "region_with_type": "г Санкт-Петербург",
- "region_fias_id": "c2deb16a-0330-4f05-821f-1d09c93331e6",
- "region_kladr_id": "7800000000000",
- "region_iso_code": "RU-SPE",
- "area": "Краснокамский",
- "area_type": "р-н",
- "area_with_type": "Краснокамский р-н",
- "area_fias_id": "c278cbbc-e209-4b0f-b20e-9c19ed6f6802",
- "area_kladr_id": "0203100000000",
- "city": "Санкт-Петербург",
- "city_type": "г",
- "city_with_type": "г Санкт-Петербург",
- "city_fias_id": "c2deb16a-0330-4f05-821f-1d09c93331e6",
- "city_kladr_id": "7800000000000",
- "settlement": "Жилгородок",
- "settlement_type": "п",
- "settlement_with_type": "п Жилгородок",
- "settlement_fias_id": "8eab754d-38df-4fac-bebd-b27a46f45ea2",
- "settlement_kladr_id": "4701200005100",
- "street": "Московский",
- "street_type": "пр-кт",
- "street_with_type": "Московский пр-кт",
- "street_fias_id": "01b3acfc-5a4d-4d0f-a2de-67aef6effe31",
- "street_kladr_id": "78000000000085200",
- "house": "дом 1А/2 строение 3 корпус 4 литера Б",
- "house_fias_id": "315a5cc2-7676-460f-ab44-a85c38eea89a",
- "house_kladr_id": "7800000000013430010",
- "office": "офис 1 помещение 2",
- "fias_id": "315a5cc2-7676-460f-ab44-a85c38eea89a",
- "kladr_id": "7800000000013430010",
- "lat": 59.9017959,
- "lng": 30.3194694,
- "zip_code": "196084",
- "timezone_name": "Europe/Moscow",
- "level": "country",
- "country_id": 643,
- "locality": "Жилгородок п",
- "fraction": 0,
- "housing": 0,
- "structure": 0,
- "literature": "string",
- "apartment": "string",
- "latitude": 0,
- "longitude": 0,
- "local_time_zone": 0,
- "comment": "string",
- "id": "string",
- "code": "string",
- "full_string_address": "string",
- "value": "string",
- "is_canonical": true
}, - "radius": 1
}
], - "route_direction_id": "string",
- "route_direction": {
- "country": "Россия",
- "country_iso_code": "RU",
- "federal_district": "Северо-Западный",
- "region": "Санкт-Петербург",
- "region_type": "г",
- "region_with_type": "г Санкт-Петербург",
- "region_fias_id": "c2deb16a-0330-4f05-821f-1d09c93331e6",
- "region_kladr_id": "7800000000000",
- "region_iso_code": "RU-SPE",
- "area": "Краснокамский",
- "area_type": "р-н",
- "area_with_type": "Краснокамский р-н",
- "area_fias_id": "c278cbbc-e209-4b0f-b20e-9c19ed6f6802",
- "area_kladr_id": "0203100000000",
- "city": "Санкт-Петербург",
- "city_type": "г",
- "city_with_type": "г Санкт-Петербург",
- "city_fias_id": "c2deb16a-0330-4f05-821f-1d09c93331e6",
- "city_kladr_id": "7800000000000",
- "settlement": "Жилгородок",
- "settlement_type": "п",
- "settlement_with_type": "п Жилгородок",
- "settlement_fias_id": "8eab754d-38df-4fac-bebd-b27a46f45ea2",
- "settlement_kladr_id": "4701200005100",
- "street": "Московский",
- "street_type": "пр-кт",
- "street_with_type": "Московский пр-кт",
- "street_fias_id": "01b3acfc-5a4d-4d0f-a2de-67aef6effe31",
- "street_kladr_id": "78000000000085200",
- "house": "дом 1А/2 строение 3 корпус 4 литера Б",
- "house_fias_id": "315a5cc2-7676-460f-ab44-a85c38eea89a",
- "house_kladr_id": "7800000000013430010",
- "office": "офис 1 помещение 2",
- "fias_id": "315a5cc2-7676-460f-ab44-a85c38eea89a",
- "kladr_id": "7800000000013430010",
- "lat": 59.9017959,
- "lng": 30.3194694,
- "zip_code": "196084",
- "timezone_name": "Europe/Moscow",
- "level": "country",
- "country_id": 643,
- "locality": "Жилгородок п",
- "fraction": 0,
- "housing": 0,
- "structure": 0,
- "literature": "string",
- "apartment": "string",
- "latitude": 0,
- "longitude": 0,
- "local_time_zone": 0,
- "comment": "string",
- "id": "string",
- "code": "string",
- "full_string_address": "string",
- "value": "string",
- "is_canonical": true
}, - "circular_route": true,
- "is_interval": true,
- "offer_deadline": "2024-07-30T14:07:50Z",
- "intermediate_results_at": "2024-07-30T14:07:50Z",
- "auction_type": "instant_reservation",
- "many_executors_allowed": false,
- "bid_step": 0,
- "bids": [
- {
- "id": "string",
- "ntk_id": "string",
- "author": {
- "id": "string",
- "human_friendly_id": "string",
- "title": "string",
- "country_id": 0,
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "inn": "string",
- "kpp": "string",
- "tax_type": "with_vat",
- "opf_id": 0,
- "opf": {
- "id": 1,
- "code": "12300",
- "name": "ООО"
}, - "rating": 0,
- "logo_url": "string"
}, - "shipping_request_id": "string",
- "shipping_order_id": "string",
- "value": 1,
- "status": "current",
- "tax_type": "with_vat",
- "expedited_payment": false,
- "shippings_count": 1,
- "auction_stage_number": 1,
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
], - "expedited_payment_available": true,
- "shipping_order_contract_id": "string",
- "shipping_order_contract_hfid": "string",
- "contract_shipping_id": "string",
- "contract_shipping_price": 0,
- "dynamic_pricing": true,
- "document_flow": [
- "scancopy"
], - "closing_documents_period": 1,
- "closing_documents_period_type": "calendar",
- "closing_documents": [
- {
- "name": "string",
- "count": 0
}
], - "agreement_type": "shipping_agreement",
- "change_requests_allowed": true,
- "terms_by_partnership_contract": true,
- "idle_time_cost_without_vat": 50,
- "documents_for_payment": [
- "bill_of_lading"
], - "payment_procedure": "prepayment",
- "payment_period": 1,
- "payment_period_type": "calendar",
- "payment_type": "per_hour",
- "min_work_hours": 0,
- "cancellation_without_penalty_before": "2024-07-30T14:07:50Z",
- "cancellation_penalty_percent": 0,
- "minimum_cancellation_penalty_without_vat": 0,
- "price": 0,
- "expedited_payment_fee": 0,
- "min_bid": 0,
- "max_bid": 0,
- "winning_bid": 0,
- "expedited_payment_winning_bid": 0,
- "is_bid_winning": true,
- "tc_requirements_changes": [
- {
- "id": "string",
- "status": "string",
- "price": 0,
- "car_supply_at": null
}
], - "tc_requirements_change": {
- "id": "string",
- "status": "string",
- "price": 0,
- "car_supply_at": null
}, - "contact": {
- "full_name": "string",
- "phone": "stringstrin",
- "extension_number": "string",
- "email": "string"
}
}, - "assigned_resources": [
- {
- "driver_contact_info": "string",
- "route_segment_id": 0,
- "drivers_ids": [
- "string"
], - "car_id": "string",
- "trailer_id": "string"
}
], - "selected_car_supply": [
- {
- "route_point_id": 0,
- "car_supply_at": "2024-07-30T14:07:50Z"
}
], - "completed_at": "2024-07-30T14:07:50Z",
- "resource_assignment_deadline": "2024-07-30T14:07:50Z",
- "kind": "ShippingOutput",
- "id": "string",
- "human_friendly_id": "Человеко понятный id",
- "status": {
- "code_name": "resources_waiting",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "status_history": [
- [
- {
- "status": "blacklisted",
- "status_comment": "string",
- "created_at": "2024-07-30T14:07:50Z"
}
]
], - "scancopy_status": "cargo_owner_signing",
- "scancopy_status_comment": "string",
- "contract_id": "string",
- "contract_hfid": "string",
- "shipping_order_contract_id": "string",
- "shipping_order_contract_hfid": "string",
- "contract_shipping_id": "string",
- "company_id": "string",
- "company": {
- "id": "string",
- "human_friendly_id": "string",
- "title": "string",
- "country_id": 0,
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "inn": "string",
- "kpp": "string",
- "tax_type": "with_vat",
- "opf_id": 0,
- "opf": {
- "id": 1,
- "code": "12300",
- "name": "ООО"
}, - "rating": 0,
- "logo_url": "string"
}, - "shipping_request_id": "string",
- "shipping_order_id": "string",
- "assigned_resource_objects": {
- "drivers": [
- {
- "id": "string",
- "kind": "ResourceDriver",
- "human_friendly_id": "человекочитаемый id",
- "full_name": "string",
- "company_id": "string",
- "freezing": [
- {
- "kind": "ResourceFreezingValue",
- "code_name": "string",
- "name": "string",
- "end_time": "2024-07-30T14:07:50Z"
}
], - "prohibited_categories": [
- "category_1"
], - "delivery_allowed": true,
- "status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "driver_secret_info": {
- "common": {
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "country_id": 0,
- "first_name": "string",
- "last_name": "string",
- "middle_name": "string",
- "birth_date": "2024-07-30T14:07:50Z"
}, - "doc": {
- "type": "passport",
- "number": "string",
- "issued_at": "2024-07-30T14:07:50Z",
- "subdivision_code": "370-011",
- "who_issued": "string",
- "expired_at": "2024-07-30T14:07:50Z"
}, - "address": {
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "country_id": 0,
- "city": "string",
- "street": "string",
- "house_number": "string",
- "zip_code": "string",
- "room": "string"
}, - "inn": "string",
- "driver_license": {
- "number": "string",
- "who_issued": "string",
- "issued_at": "2024-07-30T14:07:50Z",
- "expired_at": "2024-07-30T14:07:50Z"
}, - "have_medical_book": true,
- "phones": [
- "string"
]
}, - "power_of_attorney": {
- "start": "2024-07-30T14:07:50Z",
- "end": "2024-07-30T14:07:50Z"
}, - "attorneys": {
- "cartegory_1": {
- "from": "2024-07-30T14:07:50Z",
- "until": "2024-07-30T14:07:50Z",
- "status": "new"
}, - "cartegory_2": {
- "from": "2024-07-30T14:07:50Z",
- "until": "2024-07-30T14:07:50Z",
- "status": "new"
}
}, - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
], - "cars": [
- {
- "id": "string",
- "human_friendly_id": "человекочитаемый id",
- "kind": "ResourceCar",
- "brand": "string",
- "company_id": "string",
- "status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "lifting_capacity": {
- "id": "string",
- "tonnage": 0,
- "volume": 0,
- "transport_type": "lorry",
- "transport_body_type": "awning"
}, - "freezing": [
- {
- "kind": "ResourceFreezingValue",
- "code_name": "string",
- "name": "string",
- "end_time": "2024-07-30T14:07:50Z"
}
], - "number_sts": "string",
- "owner_sts": "string",
- "owning_type": "own",
- "max_lifting_capacity": 5.2,
- "car_number": "string",
- "car_additional_info": {
- "vin": "string",
- "engine_number": "string",
- "chassis_number": "string",
- "body_number": "string"
}, - "car_phone": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z",
- "additional": {
- "disinfected_from": "2024-07-30T14:07:50Z",
- "disinfected_until": "2024-07-30T14:07:50Z",
- "is_disinfected": true,
- "has_temperature_check": true
}, - "loading_option": {
- "full": true,
- "lateral": true,
- "rear": true,
- "upper": true,
- "removable_side_racks": true,
- "removable_upper_beam": true,
- "rigid_board": true,
- "number_of_belts": 0
}
}
], - "trailers": [
- {
- "id": "string",
- "human_friendly_id": "человекочитаемый id",
- "kind": "ResourceTrailer",
- "brand": "string",
- "company_id": "string",
- "status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "lifting_capacity": {
- "id": "string",
- "tonnage": 0,
- "volume": 0,
- "transport_type": "lorry",
- "transport_body_type": "awning"
}, - "freezing": [
- {
- "kind": "ResourceFreezingValue",
- "code_name": "string",
- "name": "string",
- "end_time": "2024-07-30T14:07:50Z"
}
], - "number_sts": "string",
- "owner_sts": "string",
- "owning_type": "own",
- "trailer_number": "string",
- "trailer_additional_info": {
- "vin": "string",
- "chassis_number": "string"
}, - "lifting_capacity_id": "string",
- "max_lifting_capacity": 5.2,
- "dimensions_cargo_hold": {
- "length": 0,
- "width": 0,
- "height": 0
}, - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z",
- "additional": {
- "disinfected_from": "2024-07-30T14:07:50Z",
- "disinfected_until": "2024-07-30T14:07:50Z",
- "is_disinfected": true,
- "has_temperature_check": true
}, - "loading_option": {
- "full": true,
- "lateral": true,
- "rear": true,
- "upper": true,
- "removable_side_racks": true,
- "removable_upper_beam": true,
- "rigid_board": true,
- "number_of_belts": 0
}
}
]
}, - "expedited_payment": true,
- "document_flow": "scancopy",
- "shippings_count": 1,
- "scancopy_attachment_deadline": "2024-07-30T14:07:50Z",
- "requirements_changes_deadline": "2024-07-30T14:07:50Z",
- "reserved_at": "2024-07-30T14:07:50Z",
- "important_changes_at": "2024-07-30T14:07:50Z",
- "requirements_accepted_at": "2024-07-30T14:07:50Z",
- "closing_ttd_documents_accepted_at": "string",
- "closing_ttd_documents_rejected_at": "string",
- "closing_ttd_documents_rejection_comment": "string",
- "closing_ttd_forwarder_documents_accepted_at": "string",
- "closing_ttd_forwarder_documents_rejected_at": "string",
- "closing_ttd_forwarder_documents_rejection_comment": "string",
- "closing_bd_documents_accepted_at": "string",
- "closing_bd_documents_rejected_at": "string",
- "closing_bd_documents_rejection_comment": "string",
- "closing_status": "documents_accepted",
- "planned_payment_date": "2024-07-30",
- "actual_payment_date": "2024-07-30",
- "contact": {
- "id": "string",
- "full_name": "string",
- "email": "string",
- "phone": "string"
}, - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
Получение назначенных на перевозку ресурсах
TransportCompanyAdmin
) shipping_id required | string <uuid> ID перевозки |
OK
Неверные параметры запроса
Нет прав на выполнение действия
Объект не найден
{- "drivers": [
- {
- "id": "string",
- "kind": "ResourceDriver",
- "human_friendly_id": "человекочитаемый id",
- "full_name": "string",
- "company_id": "string",
- "freezing": [
- {
- "kind": "ResourceFreezingValue",
- "code_name": "string",
- "name": "string",
- "end_time": "2024-07-30T14:07:50Z"
}
], - "prohibited_categories": [
- "category_1"
], - "delivery_allowed": true,
- "status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "driver_secret_info": {
- "common": {
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "country_id": 0,
- "first_name": "string",
- "last_name": "string",
- "middle_name": "string",
- "birth_date": "2024-07-30T14:07:50Z"
}, - "doc": {
- "type": "passport",
- "number": "string",
- "issued_at": "2024-07-30T14:07:50Z",
- "subdivision_code": "370-011",
- "who_issued": "string",
- "expired_at": "2024-07-30T14:07:50Z"
}, - "address": {
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "country_id": 0,
- "city": "string",
- "street": "string",
- "house_number": "string",
- "zip_code": "string",
- "room": "string"
}, - "inn": "string",
- "driver_license": {
- "number": "string",
- "who_issued": "string",
- "issued_at": "2024-07-30T14:07:50Z",
- "expired_at": "2024-07-30T14:07:50Z"
}, - "have_medical_book": true,
- "phones": [
- "string"
]
}, - "power_of_attorney": {
- "start": "2024-07-30T14:07:50Z",
- "end": "2024-07-30T14:07:50Z"
}, - "attorneys": {
- "cartegory_1": {
- "from": "2024-07-30T14:07:50Z",
- "until": "2024-07-30T14:07:50Z",
- "status": "new"
}, - "cartegory_2": {
- "from": "2024-07-30T14:07:50Z",
- "until": "2024-07-30T14:07:50Z",
- "status": "new"
}
}, - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
], - "cars": [
- {
- "id": "string",
- "human_friendly_id": "человекочитаемый id",
- "kind": "ResourceCar",
- "brand": "string",
- "company_id": "string",
- "status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "lifting_capacity": {
- "id": "string",
- "tonnage": 0,
- "volume": 0,
- "transport_type": "lorry",
- "transport_body_type": "awning"
}, - "freezing": [
- {
- "kind": "ResourceFreezingValue",
- "code_name": "string",
- "name": "string",
- "end_time": "2024-07-30T14:07:50Z"
}
], - "number_sts": "string",
- "owner_sts": "string",
- "owning_type": "own",
- "max_lifting_capacity": 5.2,
- "car_number": "string",
- "car_additional_info": {
- "vin": "string",
- "engine_number": "string",
- "chassis_number": "string",
- "body_number": "string"
}, - "car_phone": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z",
- "additional": {
- "disinfected_from": "2024-07-30T14:07:50Z",
- "disinfected_until": "2024-07-30T14:07:50Z",
- "is_disinfected": true,
- "has_temperature_check": true
}, - "loading_option": {
- "full": true,
- "lateral": true,
- "rear": true,
- "upper": true,
- "removable_side_racks": true,
- "removable_upper_beam": true,
- "rigid_board": true,
- "number_of_belts": 0
}
}
], - "trailers": [
- {
- "id": "string",
- "human_friendly_id": "человекочитаемый id",
- "kind": "ResourceTrailer",
- "brand": "string",
- "company_id": "string",
- "status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "lifting_capacity": {
- "id": "string",
- "tonnage": 0,
- "volume": 0,
- "transport_type": "lorry",
- "transport_body_type": "awning"
}, - "freezing": [
- {
- "kind": "ResourceFreezingValue",
- "code_name": "string",
- "name": "string",
- "end_time": "2024-07-30T14:07:50Z"
}
], - "number_sts": "string",
- "owner_sts": "string",
- "owning_type": "own",
- "trailer_number": "string",
- "trailer_additional_info": {
- "vin": "string",
- "chassis_number": "string"
}, - "lifting_capacity_id": "string",
- "max_lifting_capacity": 5.2,
- "dimensions_cargo_hold": {
- "length": 0,
- "width": 0,
- "height": 0
}, - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z",
- "additional": {
- "disinfected_from": "2024-07-30T14:07:50Z",
- "disinfected_until": "2024-07-30T14:07:50Z",
- "is_disinfected": true,
- "has_temperature_check": true
}, - "loading_option": {
- "full": true,
- "lateral": true,
- "rear": true,
- "upper": true,
- "removable_side_racks": true,
- "removable_upper_beam": true,
- "rigid_board": true,
- "number_of_belts": 0
}
}
]
}
Получить список ПФЗ
TransportCompanyAdmin
) shipping_id required | string <uuid> ID перевозки |
OK
Неверные параметры запроса
Нет прав на выполнение действия
Объект не найден
{- "items": [
- {
- "id": "string",
- "status": "cargo_owner_signing",
- "comment": "string",
- "status_history": [
- [
- {
- "status": "blacklisted",
- "status_comment": "string",
- "created_at": "2024-07-30T14:07:50Z"
}
]
], - "status_updated_at": "2024-07-30T14:07:50Z",
- "files": [
- {
- "id": "string",
- "url": "string",
- "signed_url": "string",
- "file_name": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
], - "created_at": "2024-07-30T14:07:50Z",
- "deleted_at": "2024-07-30T14:07:50Z"
}
]
}
Получить ПФЗ по ID
TransportCompanyAdmin
) shipping_id required | string <uuid> ID перевозки |
scancopy_id required | string <uuid> ID документа |
OK
Неверные параметры запроса
Нет прав на выполнение действия
Объект не найден
{- "shipping_request_info": {
- "id": "string",
- "human_friendly_id": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z",
- "kind": "ShippingRequest",
- "status": {
- "code_name": "new",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "status_history": [
- {
- "status": {
- "code_name": "new",
- "comment": "string"
}, - "created_at": "2024-07-30T14:07:50Z"
}
], - "type": "shipping_request",
- "cargo_owning_company_id": "string",
- "author_id": "string",
- "shipping_order_id": "string",
- "contract_id": "string",
- "contract_hfid": "string",
- "client_category": "category_1",
- "comment": "string",
- "resource_assignment_time": 30,
- "completed_at": "2024-07-30T14:07:50Z",
- "contract_begins_at": "2024-07-30T14:07:50Z",
- "contract_ends_at": "2024-07-30T14:07:50Z",
- "contract_type": "by_shippings_count",
- "shippings_count": 1,
- "max_shippings_per_day": 1,
- "max_shippings_per_week": 1,
- "shipping_available_in": 0,
- "resource_requirements": {
- "transport_body_type": [
- "awning"
], - "transport_type": [
- "lorry"
], - "lifting_capacity": [
- "string"
], - "lifting_capacities": [
- {
- "id": "string",
- "kind": "string",
- "tonnage": 0,
- "volume": 0,
- "transport_body_type": "awning",
- "transport_type": "lorry"
}
], - "has_russian_citizen": true,
- "has_driver_coveralls": true,
- "has_no_criminal_records": true,
- "has_rigid_board": true,
- "has_medical_book": true,
- "has_removable_upper_beam": true,
- "has_removable_side_racks": true,
- "is_express": true,
- "number_of_belts": 0,
- "has_shipping_power_of_attorney_original": true,
- "is_disinfected": true,
- "has_temperature_check": true,
- "temperature_condition": {
- "min": 0,
- "max": 0
}, - "own_transport_only": true,
- "timber_bunks": true,
- "tir_document": true,
- "cmr_document": true
}, - "cargo_description": "string",
- "cargo_tonnage": 0,
- "cargo_volume": 0,
- "cargo_cost": 0,
- "cargo_adr": "1",
- "cargo_length": 0.5,
- "cargo_width": 0.5,
- "cargo_height": 0.5,
- "cargo_places": 0,
- "cargo_packing": "reels",
- "route_segments": [
- {
- "id": 0,
- "from_route_point_id": 0,
- "to_route_point_id": 0,
- "distance": 0,
- "unloading": {
- "type": [
- "full"
], - "duration": 300
}, - "loading": {
- "type": [
- "full"
], - "duration": 300
}
}
], - "route_points": [
- {
- "id": 0,
- "car_supply_range": [
- {
- "from": "2024-07-30T14:07:50Z",
- "until": "2024-07-30T14:07:50Z"
}
], - "car_supply_grouped_range": [
- [
- {
- "date": "2018-04-16T00:00:00+00:00",
- "times": [
- {
- "from": "2018-04-16T10:00:00+00:00",
- "until": "2018-04-16T12:00:00+00:00"
}, - {
- "from": "2018-04-16T13:00:00+00:00",
- "until": "2018-04-16T18:00:00+00:00"
}
]
}, - {
- "date": "2018-04-16T00:00:00+00:00",
- "times": [
- {
- "from": "2018-04-17T10:00:00+00:00",
- "until": "2018-04-17T12:00:00+00:00"
}, - {
- "from": "2018-04-17T13:00:00+00:00",
- "until": "2018-04-17T18:00:00+00:00"
}
]
}
]
], - "car_supply_at": "2024-07-30T14:07:50Z",
- "need_document_work": true,
- "additional_services": [
- {
- "id": "string",
- "name": "string",
- "count": 1,
- "price": 0
}
], - "counter_agent": {
- "private_person": true,
- "legal_entity_title": "string",
- "legal_entity_inn": "string",
- "legal_entity_kpp": "string",
- "legal_entity_opf_name": "string",
- "private_person_full_name": "string",
- "private_person_passport_type": "passport",
- "private_person_passport_number": "string",
- "private_person_passport_issuer": "string",
- "private_person_passport_issued_at": "2024-07-30",
- "private_person_passport_info": "2024-07-30"
}, - "cargo_receiver_sender_info": {
- "address": "string",
- "phone": "string",
- "company_name": "string",
- "contact_name": "string",
- "contact_inn": "string",
- "contact_kpp": "string",
- "contact_opf_code": "string",
- "contact_opf_name": "string",
- "passport_number": "string",
- "passport_issued_at": null,
- "passport_who_issued": "string"
}, - "location": {
- "country": "Россия",
- "country_iso_code": "RU",
- "federal_district": "Северо-Западный",
- "region": "Санкт-Петербург",
- "region_type": "г",
- "region_with_type": "г Санкт-Петербург",
- "region_fias_id": "c2deb16a-0330-4f05-821f-1d09c93331e6",
- "region_kladr_id": "7800000000000",
- "region_iso_code": "RU-SPE",
- "area": "Краснокамский",
- "area_type": "р-н",
- "area_with_type": "Краснокамский р-н",
- "area_fias_id": "c278cbbc-e209-4b0f-b20e-9c19ed6f6802",
- "area_kladr_id": "0203100000000",
- "city": "Санкт-Петербург",
- "city_type": "г",
- "city_with_type": "г Санкт-Петербург",
- "city_fias_id": "c2deb16a-0330-4f05-821f-1d09c93331e6",
- "city_kladr_id": "7800000000000",
- "settlement": "Жилгородок",
- "settlement_type": "п",
- "settlement_with_type": "п Жилгородок",
- "settlement_fias_id": "8eab754d-38df-4fac-bebd-b27a46f45ea2",
- "settlement_kladr_id": "4701200005100",
- "street": "Московский",
- "street_type": "пр-кт",
- "street_with_type": "Московский пр-кт",
- "street_fias_id": "01b3acfc-5a4d-4d0f-a2de-67aef6effe31",
- "street_kladr_id": "78000000000085200",
- "house": "дом 1А/2 строение 3 корпус 4 литера Б",
- "house_fias_id": "315a5cc2-7676-460f-ab44-a85c38eea89a",
- "house_kladr_id": "7800000000013430010",
- "office": "офис 1 помещение 2",
- "fias_id": "315a5cc2-7676-460f-ab44-a85c38eea89a",
- "kladr_id": "7800000000013430010",
- "lat": 59.9017959,
- "lng": 30.3194694,
- "zip_code": "196084",
- "timezone_name": "Europe/Moscow",
- "level": "country",
- "country_id": 643,
- "locality": "Жилгородок п",
- "fraction": 0,
- "housing": 0,
- "structure": 0,
- "literature": "string",
- "apartment": "string",
- "latitude": 0,
- "longitude": 0,
- "local_time_zone": 0,
- "comment": "string",
- "id": "string",
- "code": "string",
- "full_string_address": "string",
- "value": "string",
- "is_canonical": true
}, - "radius": 1
}
], - "route_direction_id": "string",
- "route_direction": {
- "country": "Россия",
- "country_iso_code": "RU",
- "federal_district": "Северо-Западный",
- "region": "Санкт-Петербург",
- "region_type": "г",
- "region_with_type": "г Санкт-Петербург",
- "region_fias_id": "c2deb16a-0330-4f05-821f-1d09c93331e6",
- "region_kladr_id": "7800000000000",
- "region_iso_code": "RU-SPE",
- "area": "Краснокамский",
- "area_type": "р-н",
- "area_with_type": "Краснокамский р-н",
- "area_fias_id": "c278cbbc-e209-4b0f-b20e-9c19ed6f6802",
- "area_kladr_id": "0203100000000",
- "city": "Санкт-Петербург",
- "city_type": "г",
- "city_with_type": "г Санкт-Петербург",
- "city_fias_id": "c2deb16a-0330-4f05-821f-1d09c93331e6",
- "city_kladr_id": "7800000000000",
- "settlement": "Жилгородок",
- "settlement_type": "п",
- "settlement_with_type": "п Жилгородок",
- "settlement_fias_id": "8eab754d-38df-4fac-bebd-b27a46f45ea2",
- "settlement_kladr_id": "4701200005100",
- "street": "Московский",
- "street_type": "пр-кт",
- "street_with_type": "Московский пр-кт",
- "street_fias_id": "01b3acfc-5a4d-4d0f-a2de-67aef6effe31",
- "street_kladr_id": "78000000000085200",
- "house": "дом 1А/2 строение 3 корпус 4 литера Б",
- "house_fias_id": "315a5cc2-7676-460f-ab44-a85c38eea89a",
- "house_kladr_id": "7800000000013430010",
- "office": "офис 1 помещение 2",
- "fias_id": "315a5cc2-7676-460f-ab44-a85c38eea89a",
- "kladr_id": "7800000000013430010",
- "lat": 59.9017959,
- "lng": 30.3194694,
- "zip_code": "196084",
- "timezone_name": "Europe/Moscow",
- "level": "country",
- "country_id": 643,
- "locality": "Жилгородок п",
- "fraction": 0,
- "housing": 0,
- "structure": 0,
- "literature": "string",
- "apartment": "string",
- "latitude": 0,
- "longitude": 0,
- "local_time_zone": 0,
- "comment": "string",
- "id": "string",
- "code": "string",
- "full_string_address": "string",
- "value": "string",
- "is_canonical": true
}, - "circular_route": true,
- "is_interval": true,
- "offer_deadline": "2024-07-30T14:07:50Z",
- "intermediate_results_at": "2024-07-30T14:07:50Z",
- "auction_type": "instant_reservation",
- "many_executors_allowed": false,
- "bid_step": 0,
- "bids": [
- {
- "id": "string",
- "ntk_id": "string",
- "author": {
- "id": "string",
- "human_friendly_id": "string",
- "title": "string",
- "country_id": 0,
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "inn": "string",
- "kpp": "string",
- "tax_type": "with_vat",
- "opf_id": 0,
- "opf": {
- "id": 1,
- "code": "12300",
- "name": "ООО"
}, - "rating": 0,
- "logo_url": "string"
}, - "shipping_request_id": "string",
- "shipping_order_id": "string",
- "value": 1,
- "status": "current",
- "tax_type": "with_vat",
- "expedited_payment": false,
- "shippings_count": 1,
- "auction_stage_number": 1,
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
], - "expedited_payment_available": true,
- "shipping_order_contract_id": "string",
- "shipping_order_contract_hfid": "string",
- "contract_shipping_id": "string",
- "contract_shipping_price": 0,
- "dynamic_pricing": true,
- "document_flow": [
- "scancopy"
], - "closing_documents_period": 1,
- "closing_documents_period_type": "calendar",
- "closing_documents": [
- {
- "name": "string",
- "count": 0
}
], - "agreement_type": "shipping_agreement",
- "change_requests_allowed": true,
- "terms_by_partnership_contract": true,
- "idle_time_cost_without_vat": 50,
- "documents_for_payment": [
- "bill_of_lading"
], - "payment_procedure": "prepayment",
- "payment_period": 1,
- "payment_period_type": "calendar",
- "payment_type": "per_hour",
- "min_work_hours": 0,
- "cancellation_without_penalty_before": "2024-07-30T14:07:50Z",
- "cancellation_penalty_percent": 0,
- "minimum_cancellation_penalty_without_vat": 0,
- "price": 0,
- "expedited_payment_fee": 0,
- "min_bid": 0,
- "max_bid": 0,
- "winning_bid": 0,
- "expedited_payment_winning_bid": 0,
- "is_bid_winning": true,
- "tc_requirements_changes": [
- {
- "id": "string",
- "status": "string",
- "price": 0,
- "car_supply_at": null
}
], - "tc_requirements_change": {
- "id": "string",
- "status": "string",
- "price": 0,
- "car_supply_at": null
}, - "contact": {
- "full_name": "string",
- "phone": "stringstrin",
- "extension_number": "string",
- "email": "string"
}
}, - "assigned_resources": [
- {
- "driver_contact_info": "string",
- "route_segment_id": 0,
- "drivers_ids": [
- "string"
], - "car_id": "string",
- "trailer_id": "string"
}
], - "selected_car_supply": [
- {
- "route_point_id": 0,
- "car_supply_at": "2024-07-30T14:07:50Z"
}
], - "completed_at": "2024-07-30T14:07:50Z",
- "resource_assignment_deadline": "2024-07-30T14:07:50Z",
- "kind": "ShippingOutput",
- "id": "string",
- "human_friendly_id": "Человеко понятный id",
- "status": {
- "code_name": "resources_waiting",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "status_history": [
- [
- {
- "status": "blacklisted",
- "status_comment": "string",
- "created_at": "2024-07-30T14:07:50Z"
}
]
], - "scancopy_status": "cargo_owner_signing",
- "scancopy_status_comment": "string",
- "contract_id": "string",
- "contract_hfid": "string",
- "shipping_order_contract_id": "string",
- "shipping_order_contract_hfid": "string",
- "contract_shipping_id": "string",
- "company_id": "string",
- "company": {
- "id": "string",
- "human_friendly_id": "string",
- "title": "string",
- "country_id": 0,
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "inn": "string",
- "kpp": "string",
- "tax_type": "with_vat",
- "opf_id": 0,
- "opf": {
- "id": 1,
- "code": "12300",
- "name": "ООО"
}, - "rating": 0,
- "logo_url": "string"
}, - "shipping_request_id": "string",
- "shipping_order_id": "string",
- "assigned_resource_objects": {
- "drivers": [
- {
- "id": "string",
- "kind": "ResourceDriver",
- "human_friendly_id": "человекочитаемый id",
- "full_name": "string",
- "company_id": "string",
- "freezing": [
- {
- "kind": "ResourceFreezingValue",
- "code_name": "string",
- "name": "string",
- "end_time": "2024-07-30T14:07:50Z"
}
], - "prohibited_categories": [
- "category_1"
], - "delivery_allowed": true,
- "status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "driver_secret_info": {
- "common": {
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "country_id": 0,
- "first_name": "string",
- "last_name": "string",
- "middle_name": "string",
- "birth_date": "2024-07-30T14:07:50Z"
}, - "doc": {
- "type": "passport",
- "number": "string",
- "issued_at": "2024-07-30T14:07:50Z",
- "subdivision_code": "370-011",
- "who_issued": "string",
- "expired_at": "2024-07-30T14:07:50Z"
}, - "address": {
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "country_id": 0,
- "city": "string",
- "street": "string",
- "house_number": "string",
- "zip_code": "string",
- "room": "string"
}, - "inn": "string",
- "driver_license": {
- "number": "string",
- "who_issued": "string",
- "issued_at": "2024-07-30T14:07:50Z",
- "expired_at": "2024-07-30T14:07:50Z"
}, - "have_medical_book": true,
- "phones": [
- "string"
]
}, - "power_of_attorney": {
- "start": "2024-07-30T14:07:50Z",
- "end": "2024-07-30T14:07:50Z"
}, - "attorneys": {
- "cartegory_1": {
- "from": "2024-07-30T14:07:50Z",
- "until": "2024-07-30T14:07:50Z",
- "status": "new"
}, - "cartegory_2": {
- "from": "2024-07-30T14:07:50Z",
- "until": "2024-07-30T14:07:50Z",
- "status": "new"
}
}, - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
], - "cars": [
- {
- "id": "string",
- "human_friendly_id": "человекочитаемый id",
- "kind": "ResourceCar",
- "brand": "string",
- "company_id": "string",
- "status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "lifting_capacity": {
- "id": "string",
- "tonnage": 0,
- "volume": 0,
- "transport_type": "lorry",
- "transport_body_type": "awning"
}, - "freezing": [
- {
- "kind": "ResourceFreezingValue",
- "code_name": "string",
- "name": "string",
- "end_time": "2024-07-30T14:07:50Z"
}
], - "number_sts": "string",
- "owner_sts": "string",
- "owning_type": "own",
- "max_lifting_capacity": 5.2,
- "car_number": "string",
- "car_additional_info": {
- "vin": "string",
- "engine_number": "string",
- "chassis_number": "string",
- "body_number": "string"
}, - "car_phone": "string",
- "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z",
- "additional": {
- "disinfected_from": "2024-07-30T14:07:50Z",
- "disinfected_until": "2024-07-30T14:07:50Z",
- "is_disinfected": true,
- "has_temperature_check": true
}, - "loading_option": {
- "full": true,
- "lateral": true,
- "rear": true,
- "upper": true,
- "removable_side_racks": true,
- "removable_upper_beam": true,
- "rigid_board": true,
- "number_of_belts": 0
}
}
], - "trailers": [
- {
- "id": "string",
- "human_friendly_id": "человекочитаемый id",
- "kind": "ResourceTrailer",
- "brand": "string",
- "company_id": "string",
- "status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:50Z",
- "lifting_capacity": {
- "id": "string",
- "tonnage": 0,
- "volume": 0,
- "transport_type": "lorry",
- "transport_body_type": "awning"
}, - "freezing": [
- {
- "kind": "ResourceFreezingValue",
- "code_name": "string",
- "name": "string",
- "end_time": "2024-07-30T14:07:50Z"
}
], - "number_sts": "string",
- "owner_sts": "string",
- "owning_type": "own",
- "trailer_number": "string",
- "trailer_additional_info": {
- "vin": "string",
- "chassis_number": "string"
}, - "lifting_capacity_id": "string",
- "max_lifting_capacity": 5.2,
- "dimensions_cargo_hold": {
- "length": 0,
- "width": 0,
- "height": 0
}, - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z",
- "additional": {
- "disinfected_from": "2024-07-30T14:07:50Z",
- "disinfected_until": "2024-07-30T14:07:50Z",
- "is_disinfected": true,
- "has_temperature_check": true
}, - "loading_option": {
- "full": true,
- "lateral": true,
- "rear": true,
- "upper": true,
- "removable_side_racks": true,
- "removable_upper_beam": true,
- "rigid_board": true,
- "number_of_belts": 0
}
}
]
}, - "expedited_payment": true,
- "document_flow": "scancopy",
- "shippings_count": 1,
- "scancopy_attachment_deadline": "2024-07-30T14:07:50Z",
- "requirements_changes_deadline": "2024-07-30T14:07:50Z",
- "reserved_at": "2024-07-30T14:07:50Z",
- "important_changes_at": "2024-07-30T14:07:50Z",
- "requirements_accepted_at": "2024-07-30T14:07:50Z",
- "closing_ttd_documents_accepted_at": "string",
- "closing_ttd_documents_rejected_at": "string",
- "closing_ttd_documents_rejection_comment": "string",
- "closing_ttd_forwarder_documents_accepted_at": "string",
- "closing_ttd_forwarder_documents_rejected_at": "string",
- "closing_ttd_forwarder_documents_rejection_comment": "string",
- "closing_bd_documents_accepted_at": "string",
- "closing_bd_documents_rejected_at": "string",
- "closing_bd_documents_rejection_comment": "string",
- "closing_status": "documents_accepted",
- "planned_payment_date": "2024-07-30",
- "actual_payment_date": "2024-07-30",
- "contact": {
- "id": "string",
- "full_name": "string",
- "email": "string",
- "phone": "string"
}, - "created_at": "2024-07-30T14:07:50Z",
- "updated_at": "2024-07-30T14:07:50Z"
}
Добавление файла
TransportCompanyAdmin
) shipping_id required | string <uuid> ID перевозки |
scancopy_id required | string <uuid> ID документа |
Content-Type required | any Value: "application/octet-stream" |
Нет прав на выполнение действия
Объект не найден
{- "code": 403,
- "error": "Forbidden",
- "error_description": "Forbidden"
}
Удаление файла который прикреплен
TransportCompanyAdmin
) shipping_id required | string <uuid> ID перевозки |
scancopy_id required | string <uuid> ID документа |
file_id required | string <uuid> ID файла |
Нет прав на выполнение действия
Объект не найден
{- "code": 403,
- "error": "Forbidden",
- "error_description": "Forbidden"
}
Скачивание файла
TransportCompanyAdmin
) shipping_id required | string <uuid> ID перевозки |
scancopy_id required | string <uuid> ID документа |
file_id required | string <uuid> ID файла |
OK
Неверные параметры запроса
Нет прав на выполнение действия
Объект не найден
{- "code": 400,
- "error": "BadRequest",
- "error_description": "BadRequest"
}
Подписать ПФЗ
TransportCompanyAdmin
) shipping_id required | string <uuid> ID перевозки |
scancopy_id required | string <uuid> ID документа |
OK
Неверные параметры запроса
Нет прав на выполнение действия
Объект не найден
{- "id": "string",
- "status": "cargo_owner_signing",
- "comment": "string",
- "status_history": [
- [
- {
- "status": "blacklisted",
- "status_comment": "string",
- "created_at": "2024-07-30T14:07:51Z"
}
]
], - "status_updated_at": "2024-07-30T14:07:51Z",
- "files": [
- {
- "id": "string",
- "url": "string",
- "signed_url": "string",
- "file_name": "string",
- "created_at": "2024-07-30T14:07:51Z",
- "updated_at": "2024-07-30T14:07:51Z"
}
], - "created_at": "2024-07-30T14:07:51Z",
- "deleted_at": "2024-07-30T14:07:51Z"
}
Скачать шаблон ПФЗ
TransportCompanyAdmin
) shipping_id required | string <uuid> ID перевозки |
Неверные параметры запроса
Нет прав на выполнение действия
Объект не найден
{- "code": 400,
- "error": "BadRequest",
- "error_description": "BadRequest"
}
Получить список партнеров по идентификаторам
TransportCompanyAdmin
) companies_ids | Array of strings <uuid> IDS Компаний |
Список компаний с базовой информацией
{- "items": [
- {
- "id": "string",
- "human_friendly_id": "string",
- "title": "string",
- "country_id": 0,
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "inn": "string",
- "kpp": "string",
- "tax_type": "with_vat",
- "opf_id": 0,
- "opf": {
- "id": 1,
- "code": "12300",
- "name": "ООО"
}, - "rating": 0,
- "logo_url": "string"
}
]
}
Получить компанию по ID
TransportCompanyAdmin
) Компания
Объект не найден
{- "id": "string",
- "human_friendly_id": "string",
- "kinds": [
- "TransportCompany"
], - "company_status": {
- "code_name": "not_approved",
- "comment": "string"
}, - "status_updated_at": "2024-07-30T14:07:51Z",
- "created_at": "2024-07-30T14:07:51Z",
- "updated_at": "2024-07-30T14:07:51Z",
- "country_id": 0,
- "country": {
- "id": 0,
- "name": "string",
- "alpha_2": "string",
- "code_name": "string",
- "num": 0
}, - "online_contract_approved": true,
- "online_contract_id": "string",
- "tc_categories": [
- "category_1"
], - "has_transit_contract": true,
- "vip": true,
- "expedited_payment_available": true,
- "rating": 0,
- "logo_url": "string",
- "priority": 0,
- "trusted_person_info": {
- "full_name": "string",
- "position": "string",
- "phone": "string"
}, - "ceo_info": {
- "full_name": "string"
}, - "accountant_info": {
- "full_name": "string",
- "phone": "string"
}, - "additional_info": {
- "website_url": "string",
- "car_park_total": 1,
- "car_park_lease": 0,
- "comment": "string",
- "phone": "string"
}, - "props": {
- "title": "string",
- "inn": "string",
- "opf_id": 0,
- "opf": {
- "id": 1,
- "code": "12300",
- "name": "ООО"
}, - "kpp": "string",
- "okvds": [
- "string"
], - "ogrn": "string",
- "ogrn_created_at": "2024-07-30T14:07:51Z",
- "legal_address": {
- "city": "string",
- "street": "string",
- "house_number": "дом 1А/2 строение 3 корпус 4 литера Б",
- "room": "офис 1 помещение 2",
- "zip_code": "string"
}, - "real_address": {
- "city": "string",
- "street": "string",
- "house_number": "дом 1А/2 строение 3 корпус 4 литера Б",
- "room": "офис 1 помещение 2",
- "zip_code": "string"
}, - "legal_address_eq_real": true,
- "settlement_account": "string",
- "correspondent_account": "string",
- "bank_name": "string",
- "bik": "string",
- "basis_for_sign": "charter",
- "tax_type": "with_vat",
- "action_type": "transport",
- "promo_code": "string"
}, - "contacts": {
- "category_1": {
- "chief_id": "string",
- "chief": {
- "id": "string",
- "full_name": "string",
- "phone": "string",
- "email": "string",
- "created_at": "2024-07-30T14:07:51Z",
- "updated_at": "2024-07-30T14:07:51Z"
}, - "development_manager_id": "string",
- "development_manager": {
- "id": "string",
- "full_name": "string",
- "phone": "string",
- "email": "string",
- "created_at": "2024-07-30T14:07:51Z",
- "updated_at": "2024-07-30T14:07:51Z"
}, - "accountant_id": "string",
- "accountant": {
- "id": "string",
- "full_name": "string",
- "phone": "string",
- "email": "string",
- "created_at": "2024-07-30T14:07:51Z",
- "updated_at": "2024-07-30T14:07:51Z"
}, - "personal_manager_id": "string",
- "personal_manager": {
- "id": "string",
- "full_name": "string",
- "phone": "string",
- "email": "string",
- "created_at": "2024-07-30T14:07:51Z",
- "updated_at": "2024-07-30T14:07:51Z"
}, - "duty_phones": [
- "string"
]
}, - "category_2": {
- "chief_id": "string",
- "chief": {
- "id": "string",
- "full_name": "string",
- "phone": "string",
- "email": "string",
- "created_at": "2024-07-30T14:07:51Z",
- "updated_at": "2024-07-30T14:07:51Z"
}, - "development_manager_id": "string",
- "development_manager": {
- "id": "string",
- "full_name": "string",
- "phone": "string",
- "email": "string",
- "created_at": "2024-07-30T14:07:51Z",
- "updated_at": "2024-07-30T14:07:51Z"
}, - "accountant_id": "string",
- "accountant": {
- "id": "string",
- "full_name": "string",
- "phone": "string",
- "email": "string",
- "created_at": "2024-07-30T14:07:51Z",
- "updated_at": "2024-07-30T14:07:51Z"
}, - "personal_manager_id": "string",
- "personal_manager": {
- "id": "string",
- "full_name": "string",
- "phone": "string",
- "email": "string",
- "created_at": "2024-07-30T14:07:51Z",
- "updated_at": "2024-07-30T14:07:51Z"
}, - "duty_phones": [
- "string"
]
}
}, - "manual_spot_winner_pick_allowed": true,
- "auction_auto_extend_period": 1
}