Facebook
LinkedIn
YouTube
Getting Started
Authentication
Authentication
  • V2 Authentication (Deprecated)
  • V3 Authentication
V2 API Documentation (Deprecated)V3 API Documentation
Getting Started
Authentication
Authentication
  • V2 Authentication (Deprecated)
  • V3 Authentication
V2 API Documentation (Deprecated)V3 API Documentation
  1. Getting Started
  • Choosing the Right API Version
  • Getting Started
  • Architecture
  • Quick Start
  • Authentication
  • Roles and API Access
  • API Categories
  • API Endpoints Reference
  • Making Your First API Call
  • Working with Encrypted Tokens
  • Code Examples
  • Error Handling
  • Best Practices
  • Troubleshooting
  • Support
  1. Getting Started

Error Handling

Standard HTTP Status Codes#

Status CodeMeaningCommon Causes
200SuccessRequest completed successfully
400Bad RequestInvalid request format, missing required fields
401UnauthorizedInvalid or expired access token
403ForbiddenInsufficient permissions for the requested resource
404Not FoundResource does not exist
500Internal Server ErrorServer-side error

Error Response Format#

{
  "statusCode": 401,
  "message": "Unauthorized",
  "error": "Invalid or expired token",
  "timestamp": "2024-03-18T10:30:00.000Z",
  "path": "/v3/users/list",
  "requestId": "abc123-def456-ghi789"
}

Handling Common Errors#

401 Unauthorized - Token Expired#

400 Bad Request - Validation Errors#

403 Forbidden - Insufficient Permissions#

Retry Logic for 5xx Errors#

Modified at 2026-04-13 06:15:41
Previous
Code Examples
Next
Best Practices
Built with