Invalid input

Resolve request validation errors.

An invalid input error indicates that your request contains invalid parameters or values that failed validation. This error requires you to correct the request before retrying.

Response

All error responses follow the Problem Details (RFC 9457) format, which defines the type, title, status, detail, and instance fields.

Here is an example of the response returned for this error:

{  "title": "Invalid input",  "type": "https://croct.help/api/data-export/invalid-input",  "status": 400,  "detail": "3 errors occurred",  "instance": "/user",  "violations": [    "start must be an unix timestamp",    "end must be an unix timestamp",    "pageSize must be a `number` type."  ]}

The response includes the following additional field:

violations(optional)
Array<string>

A list of human-readable validation failure messages, one per violated parameter.