For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Contact usLogin
GuidesAPI ReferenceChangelog
GuidesAPI ReferenceChangelog
  • Introduction
    • Overview
    • Authentication
    • Errors
    • Software Development Kits
    • Webhooks and Events
    • Sandbox Simulations
  • Core Resources
  • DAFpay
  • Disbursements
  • Gift Processing
LogoLogo
Contact usLogin
Introduction

Error Codes

All error responses come with the following standard shape.

Error Response
1{
2 "timestamp": "2020-07-10 15:00:00.000",
3 "code": 400,
4 "error" : "Bad Request",
5 "message": "a descriptive, yet terse snippet explaining what went wrong"
6}
Was this page helpful?
Previous

Software Development Kits

Next
Built with

The Chariot API uses standard HTTP status response codes

CodeDescription
400Bad Request: The request could not be understood by the server due to malformed syntax.
401Unauthorized: The request requires user authentication. The Authorization header may be missing or invalid.
403Forbidden: The server understood the request but is refusing to fulfill it. The API user does not have correct permissions or the x-chariot-api-key header may be missing or invalid.
404Not Found: The resource requested does not exist or was not found.
405Method Not Allowed: The method/verb specified in the request is not allowed for the resource.
409Conflict: The request conflicts with the current state of the target resource.
410Gone: Access to the target resource is no longer available as the resource may have expired.
412Precondition Failed: The server does not meet one of the preconditions that the requester put on the request.
422Unprocessable Content: The server cannot process the request due to validation issues
500Internal Server Error: The request was valid, but something failed on the server.
502Bad Gateway: The server received an invalid response from an upstream server.
503Service Unavailable: The server is not ready to handle the request.