Skip to main content

Get Wallet by ID

GET 

/v1/operations/wallets/:id

Retrieve detailed information about a wallet by specifying its ID.

Request

Path Parameters

    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-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-lang string

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

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

Responses

The wallet returned successfully.

Schema
    id stringrequired

    Wallet id.

    name stringrequired

    Wallet name.

    default booleanrequired

    Wallet default flag.

    state stringrequired

    Possible values: [pending, active, deactivate, blocked]

    Wallet state.

    permission_types string[]required

    Wallet permission type that defines what the user can do.

    owner_id stringrequired

    Wallet owner id.

    owner_name stringrequired

    Wallet owner name.

    created_at date-timerequired

    Wallet created at.

Loading...