Skip to main content

Get Client Wallet by ID

GET 

/v1/crossborder/clients/:id/wallets/:wallet_id

Retrieve detailed information about a specific client wallet by providing the client ID and wallet ID.

Request

Path Parameters

    id stringrequired

    Client ID.

    wallet_id stringrequired

    Wallet ID.

Header Parameters

    nonce stringrequired

    The nonce ID is a UUID (v4) used to uniquely identify the request. All requests must have an identifier.

    x-lang string

    Possible values: [pt-BR, en-US]

    Indicates the preferred language. Defaults to Brazilian Portuguese if unspecified.

    x-product-uuid string

    UUID (v4) of the product that the request should use. Send it explicitly when the authenticated user has more than one product or when the integration must select a specific product. If omitted and the endpoint does not require it, the API uses the authenticated user's default product.

    x-product-target-user-uuid string

    UUID (v4) of the user on whose behalf the request should run within the selected product. If omitted, the request runs as the authenticated user. Requires x-product-uuid.

    x-wallet-uuid string

    Sender Wallet UUID (if empty, your default Wallet UUID will be settled)

Responses

Client wallet returned successfully.

Schema
    id stringrequired

    Wallet ID.

    user_id stringrequired

    User ID.

    client_id stringrequired

    Client ID.

    name stringrequired

    Wallet name.

    address stringrequired

    Wallet address.

    network stringrequired

    Network.

    provider stringrequired

    Wallet provider.

    status stringrequired

    Possible values: [ACTIVE, INACTIVE, PENDING, BLOCKED]

    Wallet status.

    currency_symbol objectrequired

    Currency symbol.

    created_at date-timerequired

    Wallet created date.

    updated_at date-timerequired

    Wallet updated date.

Loading...