You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Standardize the API error messages according to the Problem Details for HTTP APIs RFC. Don't remove the old error messages since they don't collide.
Fields:
type - URL describing error (optional?)
title - Title of the error
detail - Details
status - HTTP status code
Example:
HTTP/1.1 404 Not Found
Content-Type: application/problem+json
Content-Language: en
{
"type": "https://phpvms.net/problems/unknown-airline",
"title": "Airline not found.",
"detail": "The request airline was not found",
"status": 404
}
Standardize the API error messages according to the Problem Details for HTTP APIs RFC. Don't remove the old error messages since they don't collide.
Fields:
type
- URL describing error (optional?)title
- Title of the errordetail
- Detailsstatus
- HTTP status codeExample:
Links:
The text was updated successfully, but these errors were encountered: