Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.quepass.com/llms.txt

Use this file to discover all available pages before exploring further.

The SDK always returns a response in the following standard format. The data section is dynamic and changes depending on the SDK flow (Init, Launch Journey, Config, etc.).

Response Format

{
  "status code": error_code,
  "data": {
    // Dynamic content based on SDK flow
  },
  "errors": [
    {
      "code": error_code,
      "message": "Description of the error"
    }
  ]
}

Field Details

  • code – HTTP status of the request:
    • 200 → Success
    • 400 / 401 / 500/ 408 → Error
  • data – Dynamic content returned by the SDK for the requested flow
  • errors – Only present when the request fails. Each error contains:
    • code → Error number
    • message → Explanation of the error