v11

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-08-017364211.0 KB
Receivers

Update Receiver Wallet

Updates a receiver wallet's Stellar address and memo for user-managed wallets.

patch/receivers/{receiver_id}/wallets/{receiver_wallet_id}

Path parameters

receiver_idstring required

ID of the Receiver.

receiver_wallet_idstring required

ID of the receiver wallet.

Request body

stellar_addressstring required

Stellar account or contract address for the receiver wallet.

stellar_memostring

Optional memo for the Stellar address.

Response

Receiver wallet updated successfully

idstring
stellar_addressstring
stellar_memostring
stellar_memo_typestring
created_atstring
updated_atstring
invited_atstring
last_message_sent_atstring

timestamp when the receiver last received an invitation about this wallet

total_paymentsstring
payments_receivedstring
failed_paymentsstring
remaining_paymentsstring
status'DRAFT' | 'READY' | 'REGISTERED' | 'FLAGGED'

Example response

{
  "id": "803031d4-1d04-4879-b6d9-dc5641f9988e",
  "receiver": {
    "id": "029e2ed0-feb6-4c40-8b47-0836a85741a2"
  },
  "wallet": {
    "id": "5ada9ed5-455a-4782-a0ee-160767e0deb1",
    "name": "Vibrant Assist",
    "homepage": "https://vibrantapp.com",
    "sep_10_client_domain": "api-dev.vibrantapp.com",
    "deep_link_schema": "https://vibrantapp.com/sdp-dev",
    "enabled": true
  },
  "stellar_address": "GCXAJ3XJ3VK3JFH3QMDFOSKM2NMMZBSO3VIT6EUPQWSDW2J74M23RRSL",
  "created_at": "2023-02-03T10:45:51.000Z",
  "updated_at": "2023-02-03T10:45:51.000Z",
  "invited_at": "2023-02-09T10:45:51.000Z",
  "last_message_sent_at": "2023-02-10T10:45:51.000Z",
  "total_payments": "2",
  "payments_received": "2",
  "failed_payments": "0",
  "remaining_payments": "0",
  "received_amounts": [
    {
      "asset_code": "USDC",
      "asset_issuer": "GBBD47IF6LWK7P7MDEVSCWR7DPUWV3NY3DTQEVFL4NAT4AQH3ZLLFLA5",
      "received_amount": "100.00"
    }
  ],
  "status_history": [
    {
      "timestamp": "2023-02-10T10:45:51Z"
    }
  ]
}