Each application is a unique set of API keys and configuration settings needed for making requests to Ryder's APIs.
Each error response includes the following structure:
{
"code": "F-RES-401",
"title": "Unauthorized",
"detail": "Authentication is required to access this resource."
}
code: Unique identifier for the error type (e.g., F-RES-401
).
title: Short title describing the error (e.g., "Unauthorized").
detail: Detailed message explaining the error (e.g., "Authentication is required to access this resource.").
Meaning: Request succeeded, and the API returned the expected data.
Meaning: The requested resource has not been modified since the last request.
Causes: Resource unchanged; no updates available.
Actions: No action needed.
Meaning: The resource has been permanently moved to a new URL.
Causes: Endpoint has moved permanently.
Actions: Update the URL as specified in the Location
header.
Meaning: The request was invalid.
Causes: Missing or malformed parameters.
Actions: Verify all required parameters and their formats.
Meaning: Authentication is required and has failed or has not yet been provided.
Causes: Missing or invalid API key.
Actions: Ensure ApiKey
is included in the header and is correct.
Meaning: The server understood the request but refuses to authorize it.
Causes: Lack of access rights or invalid permissions.
Actions: Confirm that your API key has the necessary permissions.
Meaning: The requested resource could not be found.
Causes: Incorrect endpoint or resource ID.
Actions: Verify the endpoint URL and parameters.
Meaning: The HTTP method used is not allowed for this resource.
Causes: Invalid HTTP method (e.g., POST
instead of GET
).
Actions: Check the API documentation for allowed methods.
Meaning: You have exceeded the number of allowed requests.
Causes: Rate limit exceeded.
Actions: Wait and retry after the rate limit window has passed.
Meaning: The server encountered an unexpected condition that prevented it from fulfilling the request.
Causes: Server-side issue.
Actions: Retry the request later or contact support if it persists.
Meaning: The server is currently unable to handle the request due to temporary overload or maintenance.
Causes: Server maintenance or temporary overload.
Actions: Retry after a few minutes.
Meaning: The server timed out while waiting for an upstream server.
Causes: Delayed response from an upstream server.
Actions: Retry the request; if it persists, report it to support.