Errors
SignatureAPI uses conventional HTTP response codes to indicate the success or failure of an API request. In general:
- Codes in the
2XX
range indicate success. - Codes in the
4XX
range indicate problems with the request, like missing parameters. - Codes in the
5XX
range indicate problems with SignatureAPI servers.
Errors messages conform to RFC 7807 and use a Content-Type of application/problem+json
.
General Errors
This payload is for 4XX
client errors, except validation errors, and 5XX
errors.
A URL that identifies the problem type. Visit the URL to learn more about this problem.
short, human-readable summary of the problem type
The HTTP status code generated by the server for this occurrence of the problem
A human-readable explanation specific to this occurrence of the problem.
Example
Validation Errors
This payload is for validation errors (along a 422
status code).
A URL that identifies the problem type. Visit the URL to learn more about this problem.
short, human-readable summary of the problem type
The HTTP status code generated by the server for this occurrence of the problem.
For validation errors, this value is always 422
.
A human-readable list of specific validation errors.
Example
Was this page helpful?