Errors
Learn how to interpret API error responses.
$ curl -G $PLIRO_API_BASE_URL/2023-04-11/customers \
-u $PLIRO_API_KEY: \
-d limit=0
{
"error": {
"code": "invalid_param",
"message": "limit must be greater than or equal to 1 but was 0."
}
}The error object
{
"code": "invalid_param",
"message": "limit must be greater than or equal to 1 but was 0."
}Properties
Last updated