Error Response
| Field | Type | Description |
|---|---|---|
status | integer | The HTTP status code for this error. |
code | string | The type of error. |
message | string | The error's message. |
errors | validation error array, nullable | List of validation errors, only used for certain APIs. |
JSON
{
"status": 400,
"code": "InvalidInput",
"message": "cannot parse Steam ID from string: clearlynotasteamid"
}Validation Error Structure
| Field | Type | Description |
|---|---|---|
code | string | The type of error. |
message | string | The error's message. |
path | string array | Path to property that caused the error. |
validation | string | Type of validation error. |
Note
In catastrophic cases, you might not get any of these values in response. This is however unlikely.