Skip to main content
GET
/
transfer
/
managed
/
deposit-intents
List Managed Deposit Intents
curl --request GET \
  --url https://api.paxos.com/v2/transfer/managed/deposit-intents \
  --header 'Authorization: Bearer <token>'
{
  "deposit_intents": [
    {
      "managed_deposit_intent_id": "<string>",
      "customer_id": "<string>",
      "identity_id": "<string>",
      "profile_id": "<string>",
      "matched_deposit": {
        "id": "<string>",
        "crypto_tx_hash": "<string>",
        "destination_address": "<string>",
        "created_at": "2023-11-07T05:31:56Z",
        "updated_at": "2023-11-07T05:31:56Z",
        "transfer_id": "<string>"
      },
      "other_deposits": [
        {
          "id": "<string>",
          "crypto_tx_hash": "<string>",
          "destination_address": "<string>",
          "created_at": "2023-11-07T05:31:56Z",
          "updated_at": "2023-11-07T05:31:56Z",
          "transfer_id": "<string>"
        }
      ],
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://paxos-0ac97319-feat-managed-transfer-preview.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Paxos APIs use OAuth 2 with the client credentials grant flow.

Token URLs:

Learn more in the API credentials guide →

Query Parameters

identity_id
string
required

The Paxos ID of the Identity associated with the transfer.

profile_ids
string[]

Return managed deposit intents related to the given profile_ids. At least one of managed_deposit_intent_id or identity_id is required.

managed_deposit_intent_id
string

Return the managed deposit intent for the given id. At least one of managed_deposit_intent_id or identity_id is required.

Response

200 - application/json

A successful response.

deposit_intents
object[]