Interface ApiError

Error response from API.

interface ApiError {
    code: string;
    errors?: Record<string, any>;
    message: string;
    request_id?: string;
}

Properties

code: string

Error code identifier.

errors?: Record<string, any>

Additional error details by field.

message: string

Human-readable error message.

request_id?: string

Request ID for debugging and support.