An error response from the Coinbase Developer Platform API

Export

ModelError

interface ModelError {
    code: string;
    correlation_id?: string;
    message: string;
}

Properties

code: string

A short string representing the reported error. Can be use to handle errors programmatically.

Memberof

ModelError

correlation_id?: string

A unique identifier for the request that generated the error. This can be used to help debug issues with the API.

Memberof

ModelError

message: string

A human-readable message providing more details about the error.

Memberof

ModelError