Skip to main content

List Deposits

GET 

/v1/wallet/deposits

List your deposits.

Requires authentication.

Request

Query Parameters

    asset string

    Asset ID.

    network string

    Asset network.

    address string

    Your asset address.

    destination_tag string

    A complementary information used in some networks.

    memo string

    A complementary information used in some networks.

    status string

    Possible values: [PENDING, COMPLETED, CANCELED, CANCELED_SYSTEM]

    Status of the progress of deposit processing.

    created_at string

    Timestamp of when this object was created.

    status_updated_at string

    Timestamp of when this object status was updated.

    negative_status_reason string

    Possible values: [INTERNAL_ERROR, NOT_ENOUGH_FUNDS, INVALID_DESTINATION_ADDRESS]

    Reason why a deposit could not be completed.

    cursor string

    A reference to the server indicating the next set of objects to be returned. It is sent back in every response were the number of objects returned is bigger than the limit.

    limit integer

    Possible values: non-empty and <= 200 characters, >= 1 and <= 200

    Default value: 20

    Max number of objects to be returned as result of request.

Responses

OK

Schema
    result object[]
  • Array [
  • id string

    Unique identification of deposit.

    asset string

    Asset ID.

    network string

    Network ID.

    amount string

    Value amount of asset.

    address string

    Your asset 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.

    utxo_index integer

    Index position of Unspent Transaction Output in the block used by this transaction.

    status string

    Possible values: [PENDING, COMPLETED, CANCELED, CANCELED_SYSTEM]

    Status of the progress of deposit processing.

    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 deposit could not be completed.

  • ]
Loading...