Polar API error.
All API errors are returned as {:error, %PolarExpress.Error{}} tuples.
Error Types
:api_error- Generic API error:authentication_error- Invalid API key (401):forbidden_error- Insufficient permissions (403):validation_error- Invalid parameters (400):not_found_error- Resource not found (404):rate_limit_error- Too many requests (429):api_connection_error- Network/connection failure:signature_verification_error- Webhook signature mismatch
Summary
Functions
Build a network/connection error.
Build an error from an HTTP response.
Returns true if this error is retryable.
Build a webhook signature verification error.
Types
@type error_type() ::
:api_error
| :authentication_error
| :forbidden_error
| :validation_error
| :not_found_error
| :rate_limit_error
| :api_connection_error
| :signature_verification_error
@type t() :: %PolarExpress.Error{ detail: String.t() | nil, error_code: String.t() | nil, http_body: String.t() | nil, http_headers: [{String.t(), String.t()}] | nil, http_status: integer() | nil, message: String.t() | nil, request_id: String.t() | nil, retry_after: number() | nil, type: error_type() }
Functions
Build a network/connection error.
Build an error from an HTTP response.
Returns true if this error is retryable.
Build a webhook signature verification error.