- Request
- Headers
- Body
- ParkId
- ContractorProfileId
- WorkRuleId
- WorkStatus
- DriverProfilesListRequestQueryParkDriverProfile
- DriverStatus
- DriverProfilesListRequestQueryParkCurrentStatus
- DriverProfilesListRequestQueryParkAccountLastTransactionDate
- DriverProfilesListRequestQueryParkAccount
- DriverProfilesListRequestQueryParkUpdatedAt
- DriverProfilesListRequestQueryPark
- DriverProfilesListRequestQuery
- VehicleField
- VehicleFields
- DriverProfileListRequestFields
- DriverProfileRequestSortOrderField
- DriverProfileRequestSortOrder
- Responses
- 200 OK
- Body
- AccountId
- AccountType
- AccountBalance
- BalanceLimit
- Currency
- DriverProfileAccount
- VehicleId
- Status
- Amenities
- Categories
- Callsign
- Brand
- Model
- Year
- ColorEnum
- LicencePlateNumber
- RegistrationCertificate
- VIN
- Vehicle
- DriverProfileCurrentStatus
- LastName
- FirstName
- MiddleName
- IssueDate
- ExpiryDate
- Number
- NormalizedNumber
- CountryCode
- BirthDate
- DriverLicense
- Phone
- FeedBack
- Comment
- EmploymentType
- HasContractIssue
- DriverProfileModel
- DriverProfile
- DriverProfilePark
- 400 Bad Request
- 401 Unauthorized
- 403 Forbidden
- 429 Too Many Requests
- 500 Internal Server Error
Getting list of driver profiles (couriers)
Returns a list of driver (courier) profiles associated with a given partner. It is the recommended method for obtaining profiles. The platform also supports pagination and filtering. The platform allows obtaining the following:
- all driver (courier) profiles;
- all driver (courier) profiles with the given status and working conditions;
- driver (courier) profiles selected by ID.
Request
POST
https://fleet-api.taxi.yandex.net/v1/parks/driver-profiles/list
Headers
|
Name |
Description |
|
Accept-Language |
Type: string Preferred language of the response Min length: Example: |
|
X-API-Key |
Type: string API-key Min length: Example: |
|
X-Client-ID |
Type: string Client ID Min length: Example: |
Body
application/json
{
"query": {
"park": {
"id": "ee6f33c4562b4e1f8646d157bd70b2c4",
"driver_profile": {
"id": [
"2111ade6gk054dfdb9iu8c8cc9460mks"
],
"work_rule_id": [
"bc43tre6ba054dfdb7143ckfgvcby63e"
],
"work_status": [
"working"
]
},
"current_status": {
"status": [
"free"
]
},
"account": {
"last_transaction_date": {
"from": "2025-01-01T00:00:00Z",
"to": "2025-01-01T00:00:00Z"
}
},
"updated_at": {
"from": "2025-01-01T00:00:00Z",
"to": "2025-01-01T00:00:00Z"
}
},
"text": "example"
},
"fields": {
"account": [
"balance"
],
"car": [
"color"
],
"current_status": [
"status"
],
"driver_profile": [
"last_name"
],
"park": [
"name"
],
"updated_at": true
},
"sort_order": [
{
"direction": "asc",
"field": "driver_profile.created_date"
}
],
"limit": 200,
"offset": 0
}
|
Name |
Description |
|
query |
Type: DriverProfilesListRequestQuery Filters can be merged using logical "AND" Example
|
|
fields |
Type: DriverProfileListRequestFields Profile fields to be retrieved. When empty, all profile fields are retrieved.
To exclude a specific block of fields, pass an empty array for the corresponding section. E.g. specify
Example
|
|
limit |
Type: integer Number of list items being requested Default: Min value: Max value: |
|
offset |
Type: integer Offset from the beginning of the list Default: Min value: |
|
sort_order |
Type: DriverProfileRequestSortOrder An array of fields to define profiles order in the response Example
|
ParkId
Partner ID
Type: string
Example: ee6f33c4562b4e1f8646d157bd70b2c4
ContractorProfileId
Driver's profile ID
Type: string
Example: 2111ade6gk054dfdb9iu8c8cc9460mks
WorkRuleId
Work rule ID
Type: string
Example: bc43tre6ba054dfdb7143ckfgvcby63e
WorkStatus
Driver's working status. Possible values:
working— "Is working" status.not_working— "Not working" status;fired— status for dismissed drivers;
Type: string
Enum: working, not_working, fired
DriverProfilesListRequestQueryParkDriverProfile
Filters by driver profile data
|
Name |
Description |
|
id |
Type: ContractorProfileId[] Example
|
|
work_rule_id |
Type: WorkRuleId[] Example
|
|
work_status |
Type: WorkStatus[] Example
|
Example
{
"id": [
"2111ade6gk054dfdb9iu8c8cc9460mks"
],
"work_rule_id": [
"bc43tre6ba054dfdb7143ckfgvcby63e"
],
"work_status": [
"working"
]
}
DriverStatus
Driver's current state. Possible values:
offline— offline;busy— busy;free— available;in_order_free- is on the ride now, available (stacked rides enabled);in_order_busy— is on the ride now, busy (stacked rides disabled).
Type: string
Enum: offline, busy, free, in_order_free, in_order_busy
DriverProfilesListRequestQueryParkCurrentStatus
Filter by driver's current state
|
Name |
Description |
|
status |
Type: DriverStatus[] Example
|
Example
{
"status": [
"free"
]
}
DriverProfilesListRequestQueryParkAccountLastTransactionDate
Half-interval for which a start or end point must be indicated
|
Name |
Description |
|
from |
Type: string<date-time> Start time as per ISO 8601 Example: |
|
to |
Type: string<date-time> End time as per ISO 8601 Example: |
Example
{
"from": "2025-01-01T00:00:00Z",
"to": "2025-01-01T00:00:00Z"
}
DriverProfilesListRequestQueryParkAccount
Filters by account data
|
Name |
Description |
|
last_transaction_date |
Type: DriverProfilesListRequestQueryParkAccountLastTransactionDate Half-interval for which a start or end point must be indicated Example
|
Example
{
"last_transaction_date": {
"from": "2025-01-01T00:00:00Z",
"to": "2025-01-01T00:00:00Z"
}
}
DriverProfilesListRequestQueryParkUpdatedAt
Filters by time of latest update; Half-interval for which a start or end point must be indicated
|
Name |
Description |
|
from |
Type: string<date-time> Start time as per ISO 8601 Example: |
|
to |
Type: string<date-time> End time as per ISO 8601 Example: |
Example
{
"from": "2025-01-01T00:00:00Z",
"to": "2025-01-01T00:00:00Z"
}
DriverProfilesListRequestQueryPark
Partner parameters
|
Name |
Description |
|
id |
Type: ParkId Partner ID Example: |
|
account |
Type: DriverProfilesListRequestQueryParkAccount Filters by account data Example
|
|
current_status |
Type: DriverProfilesListRequestQueryParkCurrentStatus Filter by driver's current state Example
|
|
driver_profile |
Type: DriverProfilesListRequestQueryParkDriverProfile Filters by driver profile data Example
|
|
updated_at |
Type: DriverProfilesListRequestQueryParkUpdatedAt Filters by time of latest update; Half-interval for which a start or end point must be indicated Example
|
Example
{
"id": "ee6f33c4562b4e1f8646d157bd70b2c4",
"driver_profile": {
"id": [
"2111ade6gk054dfdb9iu8c8cc9460mks"
],
"work_rule_id": [
"bc43tre6ba054dfdb7143ckfgvcby63e"
],
"work_status": [
"working"
]
},
"current_status": {
"status": [
"free"
]
},
"account": {
"last_transaction_date": {
"from": "2025-01-01T00:00:00Z",
"to": "2025-01-01T00:00:00Z"
}
},
"updated_at": {
"from": "2025-01-01T00:00:00Z",
"to": "2025-01-01T00:00:00Z"
}
}
DriverProfilesListRequestQuery
Filters can be merged using logical "AND"
|
Name |
Description |
|
park |
Type: DriverProfilesListRequestQueryPark Partner parameters Example
|
|
text |
Type: string Arbitrary full-text search request Example: |
Example
{
"park": {
"id": "ee6f33c4562b4e1f8646d157bd70b2c4",
"driver_profile": {
"id": [
"2111ade6gk054dfdb9iu8c8cc9460mks"
],
"work_rule_id": [
"bc43tre6ba054dfdb7143ckfgvcby63e"
],
"work_status": [
"working"
]
},
"current_status": {
"status": [
"free"
]
},
"account": {
"last_transaction_date": {
"from": "2025-01-01T00:00:00Z",
"to": "2025-01-01T00:00:00Z"
}
},
"updated_at": {
"from": "2025-01-01T00:00:00Z",
"to": "2025-01-01T00:00:00Z"
}
},
"text": "example"
}
VehicleField
Vehicle field
Type: string
Enum: id, status, amenities, category, callsign, brand, model, year, color, number, registration_cert, vin
VehicleFields
Vehicle data to be retrieved. Possible values:
id— identifier;status— status;amenities— services;category— categories;callsign— codename;brand— make;model— current model;year— year of manufacture;color— color;number— registration number;registration_cert— vehicle registration certificate;vin— vehicle identification number (VIN).
Type: VehicleField[]
Example
[
"color"
]
DriverProfileListRequestFields
Profile fields to be retrieved. When empty, all profile fields are retrieved.
To exclude a specific block of fields, pass an empty array for the corresponding section. E.g. specify "car": [] if you want to exclude vehicle information.
Example:
"fields": {
"car": [],
"park": [],
"driver_profile": [
"first_name",
"last_name",
"id"
],
"account": [
"id",
"balance",
"balance_limit",
"currency"
]
}
|
Name |
Description |
|
account |
Type: string[] Account data to be retrieved. Possible values:
Example
|
|
car |
Type: VehicleFields Vehicle data to be retrieved. Possible values:
Example
|
|
current_status |
Type: string[] Driver state data to be retrieved. Possible values:
Example
|
|
driver_profile |
Type: string[] Driver profile data to be retrieved. Possible values:
Example
|
|
park |
Type: string[] Partner data to be retrieved. Possible values:
Example
|
|
updated_at |
Type: boolean Whether to return time of latest update |
Example
{
"account": [
"balance"
],
"car": [
"color"
],
"current_status": [
"status"
],
"driver_profile": [
"last_name"
],
"park": [
"name"
],
"updated_at": true
}
DriverProfileRequestSortOrderField
|
Name |
Description |
|
direction |
Type: string Sorting direction. Possible values:
Enum: |
|
field |
Type: string Field used to sort the values. Possible values:
Enum: |
Example
{
"direction": "asc",
"field": "driver_profile.created_date"
}
DriverProfileRequestSortOrder
An array of fields to define profiles order in the response
Type: DriverProfileRequestSortOrderField[]
Example
[
{
"direction": "asc",
"field": "driver_profile.created_date"
}
]
Responses
200 OK
List of driver profiles was received successfully
Body
application/json
{
"limit": 200,
"offset": 0,
"total": 728,
"driver_profiles": [
{
"accounts": [
{
"id": "33de650c6a1a40bfa78dd981817da866",
"type": "current",
"balance": "700.0000",
"balance_limit": "50",
"currency": "RUB"
}
],
"car": {
"id": "2111ade6gk054dfdb9iu8c8cc9460mks",
"status": "working",
"amenities": [
"wifi"
],
"category": [
"econom"
],
"callsign": "123456789",
"brand": "Mercedes-Benz",
"model": "E-klasse",
"year": 2019,
"color": "Черный",
"number": "Т8654Т99",
"registration_cert": "123456789",
"vin": "12345678909876543"
},
"current_status": {
"status": "free",
"status_updated_at": "2020-04-27T08:44:05.871+0000"
},
"driver_profile": {
"id": "2111ade6gk054dfdb9iu8c8cc9460mks",
"park_id": "ee6f33c4562b4e1f8646d157bd70b2c4",
"created_date": "2020-04-23T13:08:05.552+0000",
"last_name": "Ivanov",
"first_name": "Ivan",
"middle_name": "Ivanovich",
"driver_license": {
"issue_date": "2020-10-28",
"expiration_date": "2050-10-28",
"number": "070236",
"normalized_number": "AA00123456",
"country": "rus",
"birth_date": "1975-10-28"
},
"phones": [
"+79999999999"
],
"work_rule_id": "bc43tre6ba054dfdb7143ckfgvcby63e",
"work_status": "working",
"check_message": "great driver",
"comment": "great driver",
"employment_type": "selfemployed",
"has_contract_issue": true
}
}
],
"parks": [
{
"id": null,
"city": "Tel Aviv",
"name": "Mickey Mouse Company"
}
]
}
|
Name |
Description |
|
driver_profiles |
Type: DriverProfile[] List of profiles Example
|
|
limit |
Type: integer Requested number of list items |
|
offset |
Type: integer Requested offset from the beginning of the list |
|
parks |
Type: DriverProfilePark[] List of partners Example
|
|
total |
Type: integer Total number of list items |
AccountId
Account ID
Type: string
Example: 33de650c6a1a40bfa78dd981817da866
AccountType
Account type. Possible values:
current— current account.
Type: string
Const: current
Example: current
AccountBalance
Current account balance (fixed-point sum)
Type: string
Example: 700.0000
BalanceLimit
Balance limit
Type: string
Example: 50
DriverProfileAccount
Account information
|
Name |
Description |
|
balance |
Type: AccountBalance Current account balance (fixed-point sum) Example: |
|
balance_limit |
Type: BalanceLimit Balance limit Example: |
|
currency |
Type: Currency Currency as per ISO 4217 Example: |
|
id |
Type: AccountId Account ID Example: |
|
type |
Type: AccountType Account type. Possible values:
Enum: |
Example
{
"id": "33de650c6a1a40bfa78dd981817da866",
"type": "current",
"balance": "700.0000",
"balance_limit": "50",
"currency": "RUB"
}
VehicleId
Vehicle ID
Type: string
Example: 2111ade6gk054dfdb9iu8c8cc9460mks
Status
Vehicle status. Currently possible values:
unknown— status is unknown;working— is used at the moment to complete trips;not_working— is not used at the moment to complete trips;repairing— is undergoing technical maintenance or repair works;no_driver- no driver assigned to a vehicle;pending- vehicle details processing is in progress.
Type: string
Example: working
Amenities
Vehilce amenity. Possible values:
conditionerno_smokingchild_chairanimal_transportuniversalwificheckcardyamoneynewspapercouponcreditcarddont_callsmokingdeliveryvip_eventwoman_driverpost_terminalbicycleskiingpassenger_pluscargo_cleandoor_to_doorstickerlightbox
Type: string[]
Example
[
"wifi"
]
Categories
List of vehicle categories. Possible values:
econom— Economy class;comfort— Comfort;comfort_plus— Comfort+;business— business class vehicle;minivan— minivan;vip— A VIP class vehicle;wagon— multi-purpose;pool— pool class vehicle;start— Start class vehicle;standart— Standart class vehicle;ultimate— Premier;maybach— elite class vehicle;promo— promotion;premium_van— cruise van;premium_suv— premium SUV;suv— SUV;personal_driver— personal driver class vehicle;express— delivery class vehicle;cargo— a cargo vehicle.
Type: string[]
Example
[
"econom"
]
Callsign
Vehicle code name (short name)
Type: string
Example: 123456789
Brand
Vehicle make
Type: string
Example: Mercedes-Benz
Model
Vehicle model
Type: string
Example: E-klasse
Year
Year of vehicle manufacture
Type: integer
ColorEnum
Vehicle color. Possible values:
Белый— White;Желтый— Yellow;Бежевый— Beige;Черный— Black;Голубой— Light blue;Серый— Gray;Красный— Red;Оранжевый— Orange;Синий— Dark blue;Зеленый— Green;Коричневый— Brown;Фиолетовый— Purple;Розовый— Pink.
Type: string
Enum: Белый, Желтый, Бежевый, Черный, Голубой, Серый, Красный, Оранжевый, Синий, Зеленый, Коричневый, Фиолетовый, Розовый
LicencePlateNumber
License plate number
Type: string
Example: Т8654Т99
RegistrationCertificate
Vehicle registration certificate (Required field for Russia)
Type: string
Example: 123456789
VIN
VIN (Required field for Russia)
Type: string
Example: 12345678909876543
Vehicle
Vehicle data
|
Name |
Description |
|
id |
Type: VehicleId Vehicle ID Example: |
|
amenities |
Type: Amenities Vehilce amenity. Possible values:
Example
|
|
brand |
Type: Brand Vehicle make Example: |
|
callsign |
Type: Callsign Vehicle code name (short name) Example: |
|
category |
Type: Categories List of vehicle categories. Possible values:
Example
|
|
color |
Type: ColorEnum Vehicle color. Possible values:
Enum: |
|
model |
Type: Model Vehicle model Example: |
|
number |
Type: LicencePlateNumber License plate number Example: |
|
registration_cert |
Type: RegistrationCertificate Vehicle registration certificate (Required field for Russia) Example: |
|
status |
Type: Status Vehicle status. Currently possible values:
Example: |
|
vin |
Type: VIN VIN (Required field for Russia) Example: |
|
year |
Type: Year Year of vehicle manufacture Example: |
Example
{
"id": "2111ade6gk054dfdb9iu8c8cc9460mks",
"status": "working",
"amenities": [
"wifi"
],
"category": [
"econom"
],
"callsign": "123456789",
"brand": "Mercedes-Benz",
"model": "E-klasse",
"year": 2019,
"color": "Черный",
"number": "Т8654Т99",
"registration_cert": "123456789",
"vin": "12345678909876543"
}
DriverProfileCurrentStatus
|
Name |
Description |
|
status |
Type: DriverStatus Driver's current state. Possible values:
Enum: |
|
status_updated_at |
Type: string Time of the last update of the current driver status in the ISO 8601 format. Example: |
Example
{
"status": "free",
"status_updated_at": "2020-04-27T08:44:05.871+0000"
}
LastName
Last name
Type: string
Example: Ivanov
FirstName
Name
Type: string
Example: Ivan
MiddleName
Middle name
Type: string
Example: Ivanovich
IssueDate
Date of issue of the driver's license in ISO 8601 format without time zone
Type: string
Example: 2020-10-28
ExpiryDate
Driver's license expiry date in ISO 8601 format without time zone
Type: string
Example: 2050-10-28
Number
Driver's license series and number
Type: string
Example: 070236
NormalizedNumber
Normalized series and number (Cyrillic letters have been replaced by Latin letters)
Type: string
Example: AA00123456
CountryCode
Country of issue (Three-letter code)
Type: string
Example: rus
BirthDate
Birth date in ISO 8601 format without time zone
Type: string
Example: 1975-10-28
DriverLicense
Driver's license
|
Name |
Description |
|
country |
Type: CountryCode Country of issue (Three-letter code) Example: |
|
normalized_number |
Type: NormalizedNumber Normalized series and number (Cyrillic letters have been replaced by Latin letters) Example: |
|
number |
Type: Number Driver's license series and number Example: |
|
birth_date |
Type: BirthDate Birth date in ISO 8601 format without time zone Example: |
|
expiration_date |
Type: ExpiryDate Driver's license expiry date in ISO 8601 format without time zone Example: |
|
issue_date |
Type: IssueDate Date of issue of the driver's license in ISO 8601 format without time zone Example: |
Example
{
"issue_date": "2020-10-28",
"expiration_date": "2050-10-28",
"number": "070236",
"normalized_number": "AA00123456",
"country": "rus",
"birth_date": "1975-10-28"
}
Phone
Phone number
Type: string
Pattern: ^\+\d{1,15}$
Example: +79999999999
FeedBack
Notes (available to park employees)
Type: string
Example: great driver
Comment
Notes
Type: string
Example: great driver
EmploymentType
Driver's employment type. Possible values:
selfemployed— Self-employed;park_employee— Park employee;individual_entrepreneur— Individual entrepreneur;
Type: string
Enum: selfemployed, park_employee, individual_entrepreneur
HasContractIssue
There are problems with confirming employment
Type: boolean
DriverProfileModel
Driver profile
|
Name |
Description |
|
check_message |
Type: FeedBack Notes (available to park employees) Example: |
|
comment |
Type: Comment Notes Example: |
|
created_date |
Type: string Date of profile creation as per ISO 8601 Example: |
|
driver_license |
Type: DriverLicense Driver's license Example
|
|
employment_type |
Type: EmploymentType Driver's employment type. Possible values:
Enum: |
|
first_name |
Type: FirstName Name Example: |
|
has_contract_issue |
Type: HasContractIssue There are problems with confirming employment Example: |
|
id |
Type: ContractorProfileId Driver's profile ID Example: |
|
last_name |
Type: LastName Last name Example: |
|
middle_name |
Type: MiddleName Middle name Example: |
|
park_id |
Type: ParkId Partner ID Example: |
|
phones |
Type: Phone[] Example
|
|
work_rule_id |
Type: WorkRuleId Work rule ID Example: |
|
work_status |
Type: WorkStatus Driver's working status. Possible values:
Enum: |
Example
{
"id": "2111ade6gk054dfdb9iu8c8cc9460mks",
"park_id": "ee6f33c4562b4e1f8646d157bd70b2c4",
"created_date": "2020-04-23T13:08:05.552+0000",
"last_name": "Ivanov",
"first_name": "Ivan",
"middle_name": "Ivanovich",
"driver_license": {
"issue_date": "2020-10-28",
"expiration_date": "2050-10-28",
"number": "070236",
"normalized_number": "AA00123456",
"country": "rus",
"birth_date": "1975-10-28"
},
"phones": [
"+79999999999"
],
"work_rule_id": "bc43tre6ba054dfdb7143ckfgvcby63e",
"work_status": "working",
"check_message": "great driver",
"comment": "great driver",
"employment_type": "selfemployed",
"has_contract_issue": true
}
DriverProfile
|
Name |
Description |
|
accounts |
Type: DriverProfileAccount[] List of accounts associated with the driver Example
|
|
car |
Type: Vehicle Vehicle data Example
|
|
current_status |
Type: DriverProfileCurrentStatus Example
|
|
driver_profile |
Type: DriverProfileModel Driver profile Example
|
Example
{
"accounts": [
{
"id": "33de650c6a1a40bfa78dd981817da866",
"type": "current",
"balance": "700.0000",
"balance_limit": "50",
"currency": "RUB"
}
],
"car": {
"id": "2111ade6gk054dfdb9iu8c8cc9460mks",
"status": "working",
"amenities": [
"wifi"
],
"category": [
"econom"
],
"callsign": "123456789",
"brand": "Mercedes-Benz",
"model": "E-klasse",
"year": 2019,
"color": "Черный",
"number": "Т8654Т99",
"registration_cert": "123456789",
"vin": "12345678909876543"
},
"current_status": {
"status": "free",
"status_updated_at": "2020-04-27T08:44:05.871+0000"
},
"driver_profile": {
"id": "2111ade6gk054dfdb9iu8c8cc9460mks",
"park_id": "ee6f33c4562b4e1f8646d157bd70b2c4",
"created_date": "2020-04-23T13:08:05.552+0000",
"last_name": "Ivanov",
"first_name": "Ivan",
"middle_name": "Ivanovich",
"driver_license": {
"issue_date": "2020-10-28",
"expiration_date": "2050-10-28",
"number": "070236",
"normalized_number": "AA00123456",
"country": "rus",
"birth_date": "1975-10-28"
},
"phones": [
"+79999999999"
],
"work_rule_id": "bc43tre6ba054dfdb7143ckfgvcby63e",
"work_status": "working",
"check_message": "great driver",
"comment": "great driver",
"employment_type": "selfemployed",
"has_contract_issue": true
}
}
DriverProfilePark
|
Name |
Description |
|
city |
Type: string City where the partner operates Example: |
|
id |
Type: ParkId Partner ID Example: |
|
name |
Type: string Partner name Example: |
Example
{
"id": "ee6f33c4562b4e1f8646d157bd70b2c4",
"city": "Tel Aviv",
"name": "Mickey Mouse Company"
}
400 Bad Request
Invalid request parameters
Body
application/json
{
"code": "example",
"message": "Textual description of the error"
}
|
Name |
Description |
|
message |
Type: string Human-readable error message Example: |
|
code |
Type: string Machine-readable error code Example: |
401 Unauthorized
Request authorization parameters are missing
Body
application/json
{
"code": "example",
"message": "Textual description of the error"
}
|
Name |
Description |
|
message |
Type: string Human-readable error message Example: |
|
code |
Type: string Machine-readable error code Example: |
403 Forbidden
Insufficient rights to execute the request
Body
application/json
{
"code": "example",
"message": "Textual description of the error"
}
|
Name |
Description |
|
message |
Type: string Human-readable error message Example: |
|
code |
Type: string Machine-readable error code Example: |
429 Too Many Requests
Limit of requests was exceeded
Body
application/json
{
"code": "example",
"message": "Textual description of the error"
}
|
Name |
Description |
|
message |
Type: string Human-readable error message Example: |
|
code |
Type: string Machine-readable error code Example: |
500 Internal Server Error
Internal server error
Body
application/json
{
"code": "example",
"message": "Textual description of the error"
}
|
Name |
Description |
|
message |
Type: string Human-readable error message Example: |
|
code |
Type: string Machine-readable error code Example: |