VALIDATION_ERROR
Request parameters failed validation. Response body includes an `errors` array with per-field detail.
Example
Request & response
Request · HTTP
GET /v1/purchasing-power?salary=abc&to=Germany
Response · JSON
{
"error": {
"code": "VALIDATION_ERROR",
"message": "Request validation failed...",
"errors": [
{ "field": "salary", "message": "Input should be a valid number", "type": "float_parsing" }
]
}
}Remediation
How to fix
- Inspect the
errorsarray in the response for per-field error details - Fix the offending parameters and retry