When Aurora can’t find whatever you are requesting, it will return a not_found error. This is similar to a “404 Not Found” error response in HTTP.
Incorrect URL path parameters or missing data are the common reasons for this error. If you navigate using a link from a valid response, you should never receive this error message.
Attributes
As with all errors Aurora returns, not_found follows the Problem Details for HTTP APIs draft specification guide and thus has the following attributes:
Attribute | Type | Description |
---|---|---|
Type | URL | The identifier for the error. This is a URL that can be visited in the browser. |
Title | string | A short title describing the error. |
Status | Number | An HTTP status code that maps to the error. |
Detail | string | A more detailed description of the error. |
Instance | string | A token that uniquely identifies this request. Allows server administrators to correlate a client report with server log files |
$ curl -X GET "https://network.paybito.com/accounts/accountthatdoesntexist"
{
"type" : "not_found",
"title" : "Resource Missing",
"status" : 404,
"detail" : "The resource at the url requested was not found. This is usually occurs for one of two reasons: The url requested is not valid, or no data in our database could be found with the parameters provided."
}
Support Agent
*Powered by HashCash