NoParam
  • Introduction
  • Authentication
  • API Endpoints
  • API Playground
  • SDK Examples
  • Error Handling
  • Mailchimp
  • Troubleshooting
  • Best Practices
  • Changelog
Powered by GitBook
On this page

Error Handling

NoParam uses conventional HTTP response codes to indicate the success or failure of an API request.

Code
Description

200

Request succeeded

400

Bad request - Invalid request format

401

Unauthorized - Invalid API key

422

Validation error - Request validation failed

429

Too Many Requests - Rate limit or quota exceeded

500

Internal Server Error

Error Response Format

{
  "message": "Error description",
  "errors": [
    {
      "field": "field_name",
      "message": "Specific error message"
    }
  ]
}
PreviousSDK ExamplesNextMailchimp

Last updated 2 months ago