Skip to main content

Get Withdrawal

GET 

/v1/withdrawals/:withdrawal_id

Get withdrawal by ID.

Requires authentication.

Request

Path Parameters

    withdrawal_id stringrequired

Responses

OK

Schema
    result object
    id string

    Unique identification of withdrawal.

    asset string

    Asset ID.

    network string

    Network ID.

    amount string

    Value amount of asset.

    address string

    The destination address.

    destination_tag string

    A complementary information used in some networks.

    memo string

    A complementary information used in some networks.

    transaction_hash string

    Unique Identifier for a particular transaction at blockchain.

    status string

    Possible values: [CANCELED, COMPLETED, PENDING]

    Status of the progress of withdrawal processing:

    • CANCELED: Canceled by customer or internal processes;
    • COMPLETED: All processes have been completed;
    • PENDING: Waiting internal processes or blockchain confirmation.
    status_updated_at integer

    Timestamp of the time when the this object status was updated.

    created_at created_at (integer)

    Timestamp of when this object was created.

    negative_status_reason string

    Possible values: [INTERNAL_ERROR, NOT_ENOUGH_FUNDS, INVALID_DESTINATION_ADDRESS]

    Reason why a withdrawal could not be completed.

Loading...