> ## Documentation Index
> Fetch the complete documentation index at: https://stytch.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Error Object

## Fields

<ResponseField name="status_code" type="string">
  The HTTP status code of the response. Stytch follows standard HTTP response status code patterns, e.g. `2XX` values equate to success, `3XX` values are redirects, `4XX` are client errors, and `5XX` are server errors.
</ResponseField>

<ResponseField name="request_id" type="string">
  Globally unique UUID that is returned with every API call. This value is important to log for debugging purposes; we may ask for this value to help identify a specific API call when helping you debug an issue.
</ResponseField>

<ResponseField name="error_type" type="string">
  The name of the error and its type.
</ResponseField>

<ResponseField name="error_message" type="string">
  A description of the error and what caused it.
</ResponseField>

<ResponseField name="error_url" type="string">
  A link to Stytch Docs with more resources to help debug the error.
</ResponseField>

<Panel>
  <ResponseExample>
    ```json 403 theme={null}
    {
      "status_code": 403,
      "request_id": "request-id-test-b05c992f-ebdc-489d-a754-c7e70ba13141",
      "error_type": "use_https",
      "error_message": "Please use https instead of http.",
      "error_url": "https://stytch.com/docs/b2b/api/errors/403#use_https"
    }
    ```
  </ResponseExample>
</Panel>
