# Webhook events

We generate an event when something happens in our system, and we record the relevant data. Use this guide to understand Moov's webhook events, and what kind of payloads are supported.

This page details the variety of event types and schemas Moov has for supported webhooks.

## [Events](#events)

Let's use creating a customer as an example. When a customer is created, we generate an event called `account.created`. The contents of an event object depend on its type.

Here's a sample event payload, with `account.created` as an example.

```json
{
  "eventID": "30f39f5b-6a26-4772-b5a5-d8148d2e7c8f",
  "type": "account.created",
  "data": {
    "account": {
      "accountID": "b6d8cc28a443ef03c1d45a3cdcd7dec4237ec1a8"
    }
  },
  "createdOn": "2026-03-10T03:07:19Z"
}
```

| Key         | Type      | Description                                 |
|-------------|-----------|---------------------------------------------|
| `type`      | string    | Description of the event                    |
| `data`      | string    | Data associated with the event              |
| `eventID`   | string    | Unique identifier for the event object      |
| `createdOn` | timestamp | Timestamp for when event object was created |

## [Event types](#event-types)

Here are the event types that we capture and send. This may not be a comprehensive list as we are continuing to add events to our system.

| Event identifier            | Description                                                                                                                                                |
|-----------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------|
| `account.created`           | A new account was created in Moov                                                                                                                          |
| `account.updated`           | One of the fields for an existing Moov account was updated                                                                                                 |
| `account.deleted`           | An account was deleted                                                                                                                                     |
| `representative.created`    | A representative was added to an account                                                                                                                   |
| `representative.updated`    | A representative was updated                                                                                                                               |
| `representative.deleted`    | A representative was deleted                                                                                                                               |
| `capability.requested`      | A capability was requested for a Moov account                                                                                                              |
| `capability.updated`        | A capability was updated for a Moov account                                                                                                                |
| `bankAccount.created`       | A bank account was created for a Moov account                                                                                                              |
| `bankAccount.updated`       | A bank account was updated for a Moov account                                                                                                              |
| `bankAccount.deleted`       | A bank account was deleted for a Moov account                                                                                                              |
| `transfer.created`          | A transfer was created to send money from one account to another                                                                                           |
| `transfer.updated`          | The status of a transfer is pending, completed, failed, or reversed. Granular rail-specific updates on the source and destination also trigger this event. |
| `walletTransaction.updated` | A wallet transaction's status has been changed to pending, completed, canceled, or failed                                                                  |
| `dispute.created`           | A dispute has been created for a particular transfer.                                                                                                      |
| `paymentMethod.enabled`     | A payment method for account has been enabled                                                                                                              |
| `paymentMethod.disabled`    | A payment method for account has been disabled                                                                                                             |
| `balance.updated`           | The balance of a Moov wallet has been updated                                                                                                              |
| `cancellation.created`      | A cancellation has been created                                                                                                                            |
| `cancellation.updated`      | A cancellation's status has changed to pending, completed, or failed                                                                                       |
| `refund.created`            | A card payment refund has been created                                                                                                                     |
| `refund.updated`            | A card payment refund's status has changed to pending, completed, or failed                                                                                |
| `networkID.updated`         | The network ID of a merchant with an issued card has been updated                                                                                          |

### [HTTP Delivery headers](#http-delivery-headers)

Once a webhook event is sent to your endpoint, you will receive a delivery via HTTP `POST` with some unique headers. These headers are important for verifying that Moov (vs. a third party) sent the payload. For more information on verifying webhooks, see our guide on checking [webhook signatures](/guides/webhooks/check-webhook-signatures/).

Here are the unique headers you can expect to see in a webhook event delivery.

| Header Name    | Description                                                                  |
|----------------|------------------------------------------------------------------------------|
| `X-Signature`  | Cryptographically generated hash to be checked against for security purposes |
| `X-Timestamp`  | Timestamp of the event delivery                                              |
| `X-Nonce`      | One time use number for webhook signature verification                       |
| `X-Webhook-ID` | Unique identifier for the delivery                                           |

## [Event schemas](#event-schemas)

Here are sample event payloads for the webhooks we currently support.

### [Accounts](#accounts)

#### [`account.created`, `account.updated`, `account.deleted`](#accountcreated-accountupdated-accountdeleted)

Events for when a new account was created, updated, or deleted in Moov.

[account.created](#tab-514376892-4-0) [account.updated](#tab-514376892-4-1) [account.deleted](#tab-514376892-4-2)

```json
{
  "eventID": "14980a04-2e32-4921-a771-4959a36534a6",
  "type": "account.created",
  "data": {
    "accountID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "foreignID": "4528aba-b9a1-11eb-8529-0242ac13003"
  },
  "createdOn": "2026-09-02T13:57:50Z"
}
```

```json
{
  "eventID": "14980a04-2e32-4921-a771-4959a36534a6",
  "type": "account.updated",
  "data": {
    "accountID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "foreignID": "4528aba-b9a1-11eb-8529-0242ac13003"
  },
  "createdOn": "2026-09-02T13:57:50Z"
}
```

```json
{
  "eventID": "14980a04-2e32-4921-a771-4959a36534a6",
  "type": "account.deleted",
  "data": {
    "accountID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "foreignID": "4528aba-b9a1-11eb-8529-0242ac13003"
  },
  "createdOn": "2026-09-02T13:57:50Z"
}
```

### [Balance](#balance)

#### [`balance.updated`](#balanceupdated)

Event for when the balance of a Moov wallet has been updated.

```json
{
  "eventID": "14980a04-2e32-4921-a771-4959a36534a6",
  "type": "balance.updated",
  "data": {
    "accountID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "walletID": "51015d0d-8dca-49a0-ba70-abfed073f785"
  },
  "createdOn": "2026-09-02T13:57:50Z"
}
```

### [Bank accounts](#bank-accounts)

#### [`bankAccount.created`, `bankAccount.deleted`, `bankAccount.updated`](#bankaccountcreated-bankaccountdeleted-bankaccountupdated)

Events for when a bank account has been created, deleted, or updated in Moov.

[bankAccount.created](#tab-953614872-5-0) [bankAccount.deleted](#tab-953614872-5-1) [bankAccount.updated](#tab-953614872-5-2)

```json
{
  "eventID": "14980a04-2e32-4921-a771-4959a36534a6",
  "type": "bankAccount.created", 
  "data": {
    "bankAccountID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "accountID": "51015d0d-8dca-49a0-ba70-abfed073f785", 
    "status": "new" 
  },
  "createdOn": "2026-09-02T13:57:50Z"
}
```

```json
{
  "eventID": "14980a04-2e32-4921-a771-4959a36534a6",
  "type": "bankAccount.deleted", 
  "data": {
    "bankAccountID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "accountID": "51015d0d-8dca-49a0-ba70-abfed073f785", 
    "status": "verificationFailed" 
  },
  "createdOn": "2026-09-02T13:57:50Z"
}
```

```json
{
  "eventID": "14980a04-2e32-4921-a771-4959a36534a6",
  "type": "bankAccount.updated", 
  "data": {
    "bankAccountID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "accountID": "51015d0d-8dca-49a0-ba70-abfed073f785", 
    "status": "pending" 
  },
  "createdOn": "2026-09-02T13:57:50Z"
}
```

The status of the bank account related events can be `new`, `verified`, `verificationFailed`, `pending`, `errored`.

### [Billing](#billing)

#### [`billingStatement.created`](#billingstatementcreated)

Event for when a merchant billing statement is available for download.

```json
{
  "eventID": "14980a04-2e32-4921-a771-4959a36534a6",
  "type": "billingStatement.created",
  "data": {
    "statementID": "9d45acbf-c4fe-4843-846c-eaa43c9ca17f",
    "accountID": "51015d0d-8dca-49a0-ba70-abfed073f785"
  },
  "createdOn": "2026-09-02T13:57:50Z"
}
```

### [Cancellations](#cancellations)

#### [`cancellation.created`, `cancellation.updated`](#cancellationcreated-cancellationupdated)

Events for when a cancellation has been be created or the status of a cancellation has changed.

[cancellation.created](#tab-147963825-7-0) [cancellation.updated](#tab-147963825-7-1)

```json
{
  "eventID": "14980a04-2e32-4921-a771-4959a36534a6",
  "type": "cancellation.created", 
  "data": {
    "transferID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "cancellationID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "status": "pending"
  },
  "createdOn": "2026-09-02T13:57:50Z"
}
```

```json
{
  "eventID": "14980a04-2e32-4921-a771-4959a36534a6",
  "type": "cancellation.updated",
  "data": {
    "transferID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "cancellationID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "status": "completed"
  },
  "createdOn": "2026-09-02T13:57:50Z"
}
```

### [Capabilities](#capabilities)

#### [`capability.requested` and `capability.updated`](#capabilityrequested-and-capabilityupdated)

Event for when a [capability](/guides/accounts/capabilities/) was requested or updated for a Moov account.

[capability.requested](#tab-513986247-8-0) [capability.updated](#tab-513986247-8-1)

```json
{
  "eventID": "14980a04-2e32-4921-a771-4959a36534a6",
  "type": "capability.requested", 
  "data": {
    "capabilityID": "transfers",
    "accountID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "foreignID": "4528aba-b9a1-11eb-8529-0242ac13003"
  },
  "createdOn": "2026-09-02T13:57:50Z"
}
```

```json
{
  "eventID": "14980a04-2e32-4921-a771-4959a36534a6",
  "type": "capability.updated", 
  "data": {
    "capabilityID": "transfers",
    "accountID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "foreignID": "4528aba-b9a1-11eb-8529-0242ac13003",
    "status": "enabled" 
  },
  "createdOn": "2026-09-02T13:57:50Z"
}
```

The status of capability related events can be `enabled`, `disabled`, or `pending`.

### [Card acceptance](#card-acceptance)

#### [`card.autoUpdated`](#cardautoupdated)

You can receive notifications when any of the following details of a linked card are automatically updated through the [card account updater](/guides/sources/cards/card-account-updater/):

| Update type          | Description                                                               |
|----------------------|---------------------------------------------------------------------------|
| `number-update`      | A new account number has been provided                                    |
| `expiration-update`  | A new expiration date has been provided                                   |
| `contact-cardholder` | A match was found, but the account information on file may not be current |
| `account-closed`     | The account is closed (possibly due to permanent closure or fraud )       |

```json
{
  "eventID": "14980a04-2e32-4921-a771-4959a36534a6",
  "type": "card.autoUpdated", 
  "data": {
    "cardID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "accountID": "51015d0d-8dca-49a0-ba70-abfed073f785", 
    "updateType": "number-update"
  },
  "createdOn": "2026-09-02T13:57:50Z"
}
```

### [Card issuing (beta)](#card-issuing-beta)

#### [`networkID.updated`](#networkidupdated)

External identifier that's used to identify the merchant with the card brand has been updated.

```json
{
  "eventID": "14980a04-2e32-4921-a771-4959a36534a6",
  "type": "networkID.updated", 
  "data": {
    "accountID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "visaMid": "S123456789",
    "updatedOn": "2026-10-02T15:06:40Z"
  },
  "createdOn": "2026-09-02T13:57:50Z"
}
```

### [Disputes](#disputes)

#### [`dispute.created` and `dispute.updated`](#disputecreated-and-disputeupdated)

You can receive notifications on disputes through the `dispute.created` and `dispute.updated` webhook events. Subscribing to these events will let you know the dispute was created, updated, and completed. The `dispute.updated` webhook will generate if there is a change to `status` or `phase`.

Note that even if a transfer has a dispute, its overall transfer status will remain `completed`.

[dispute.created](#tab-275843691-10-0) [dispute.updated](#tab-275843691-10-1)

```json
{
  "eventID": "14980a04-2e32-4921-a771-4959a36534a6",
  "type": "dispute.created", 
  "data": {
    "accountID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "transferID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "disputeID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "status": "created"
  },
  "createdOn": "2026-09-02T13:57:50Z"
}
```

```json
{
  "eventID": "14980a04-2e32-4921-a771-4959a36534a6",
  "type": "dispute.updated", 
  "data": {
    "accountID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "transferID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "disputeID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "status": "response-needed",
    "phase": "chargeback"
  },
  "createdOn": "2026-09-02T13:57:50Z"
}
```

### [Invoices](#invoices)

#### [`invoice.created` and `invoice.updated`](#invoicecreated-and-invoiceupdated)

Events for when an invoice has been created or updated.

[invoice.created](#tab-492518736-11-0) [invoice.updated](#tab-492518736-11-1)

```json
{
  "eventID": "14980a04-2e32-4921-a771-4959a36534a6",
  "type": "invoice.created", 
  "data": {
    "accountID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "invoiceID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "status": "draft" //unpaid, payment-pending, paid, overdue, canceled
  },
  "createdOn": "2026-09-02T13:57:50Z"
}
```

```json
{
  "eventID": "14980a04-2e32-4921-a771-4959a36534a6",
  "type": "invoice.updated", 
  "data": {
    "accountID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "invoiceID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "status": "unpaid", //draft, payment-pending, paid, overdue, canceled
  },
  "createdOn": "2026-09-02T13:57:50Z"
}
```

### [Payment methods](#payment-methods)

#### [`paymentMethod.enabled` and `paymentMethod.disabled`](#paymentmethodenabled-and-paymentmethoddisabled)

Events for when a [payment method](/guides/money-movement/payment-methods/) for a Moov account has been enabled or disabled.

[paymentMethod.enabled](#tab-152463789-12-0) [paymentMethod.disabled](#tab-152463789-12-1)

```json
{
  "eventID": "14980a04-2e32-4921-a771-4959a36534a6",
  "type": "paymentMethod.enabled", 
  "data": {
    "paymentMethodID": "51015d0d-8dca-49a0-ba70-abfed073f785", 
    "accountID": "51015d0d-8dca-49a0-ba70-abfed073f785", 
    "sourceID": "51015d0d-8dca-49a0-ba70-abfed073f785"
  },
  "createdOn": "2026-09-02T13:57:50Z"
}
```

```json
{
  "eventID": "14980a04-2e32-4921-a771-4959a36534a6",
  "type": "paymentMethod.disabled", 
  "data": {
    "paymentMethodID": "51015d0d-8dca-49a0-ba70-abfed073f785", 
    "accountID": "51015d0d-8dca-49a0-ba70-abfed073f785", 
    "sourceID": "51015d0d-8dca-49a0-ba70-abfed073f785"
  },
  "createdOn": "2026-09-02T13:57:50Z"
}
```

### [Refunds](#refunds)

#### [`refund.created`, `refund.updated`](#refundcreated-refundupdated)

Events for when a refund has been be created or the status of a refund has changed.

[refund.created](#tab-285137694-13-0) [refund.updated](#tab-285137694-13-1)

```json
{
  "eventID": "14980a04-2e32-4921-a771-4959a36534a6",
  "type": "refund.created", 
  "data": {
    "accountID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "transferID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "refundID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "status": "created"
  },
  "createdOn": "2026-09-02T13:57:50Z"
}
```

```json
{
  "eventID": "14980a04-2e32-4921-a771-4959a36534a6",
  "type": "refund.updated",
  "data": {
    "accountID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "transferID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "refundID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "status": "completed"
  },
  "createdOn": "2026-09-02T13:57:50Z"
}
```

### [Representatives](#representatives)

#### [`representative.created`, `representative.updated`, `representative.disabled`](#representativecreated-representativeupdated-representativedisabled)

Events for when a business representative gets created, updated, or disabled for a Moov account.

[representative.created](#tab-281596743-14-0) [representative.updated](#tab-281596743-14-1) [representative.disabled](#tab-281596743-14-2)

```json
{
  "eventID": "14980a04-2e32-4921-a771-4959a36534a6",
  "type": "representative.created", 
  "data": {
    "representativeID": "51015d0d-8dca-49a0-ba70-abfed073f785", 
    "accountID": "51015d0d-8dca-49a0-ba70-abfed073f785"
  },
  "createdOn": "2026-09-02T13:57:50Z"
}
```

```json
{
  "eventID": "14980a04-2e32-4921-a771-4959a36534a6",
  "type": "representative.updated", 
  "data": {
    "representativeID": "51015d0d-8dca-49a0-ba70-abfed073f785", 
    "accountID": "51015d0d-8dca-49a0-ba70-abfed073f785"
  },
  "createdOn": "2026-09-02T13:57:50Z"
}
```

```json
{
  "eventID": "14980a04-2e32-4921-a771-4959a36534a6",
  "type": "representative.disabled", 
  "data": {
    "representativeID": "51015d0d-8dca-49a0-ba70-abfed073f785", 
    "accountID": "51015d0d-8dca-49a0-ba70-abfed073f785"
  },
  "createdOn": "2026-09-02T13:57:50Z"
}
```

### [Transfers](#transfers)

#### [`transfer.created`, `transfer.updated`](#transfercreated-transferupdated)

Events for when a transfer is created or updated in Moov. As a transfer progresses through its lifecycle, Moov will send events on both the overall transfer as well as the granular, rail-specific updates to keep you informed every step of the way.

The `transfer.created` event confirms a transfer has been created in the Moov system. The `transfer.updated` event means the transfer’s status has changed to one of the following:

- `queued`
- `pending`
- `completed`
- `canceled`
- `failed`
- `reversed`

Rail-specific updates on the source and destination also trigger the `transfer.updated` event.

[transfer.created](#tab-832569147-15-0) [transfer.updated](#tab-832569147-15-1)

```json
{
  "eventID": "14980a04-2e32-4921-a771-4959a36534a6",
  "type": "transfer.created", 
  "data": {
    "accountID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "transferID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "status": "created"
  },
  "createdOn": "2026-09-02T13:57:50Z"
}
```

```json
{
  "eventID": "14980a04-2e32-4921-a771-4959a36534a6",
  "type": "transfer.updated", 
  "data": {
    "accountID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "transferID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "status": "pending",
    "source": {
      "accountID": "51015d0d-8dca-49a0-ba70-abfed073f785",
      "paymentMethodID":"51015d0d-8dca-49a0-ba70-abfed073f785"
    },
    "destination": {
      "accountID": "51015d0d-8dca-49a0-ba70-abfed073f785",
      "paymentMethodID": "51015d0d-8dca-49a0-ba70-abfed073f785"
    }
  },
  "createdOn": "2026-09-02T13:57:50Z"
}
```

The accountID is the ID for the account facilitating the transfer.

#### [Rail-specific transfer statuses](#rail-specific-transfer-statuses)

Transfer statuses are specific to different rails, so you have insight into what stage money movement is in. The `transfer.updated` event will be sent each time we receive an update from the rail networks.

Rail specific statuses are also available under the source and destination. See statuses by rail below:

[Card statuses](#tab-251764983-17-0) [ACH statuses](#tab-251764983-17-1) [Wallet statuses](#tab-251764983-17-2)

| Status             | Description                                                                                         |
|--------------------|-----------------------------------------------------------------------------------------------------|
| `source.initiated` | The card transfer was successfully started                                                          |
| `source.confirmed` | The payment request was approved by the cardholder’s bank and the funds are eligible for settlement |
| `source.settled`   | Funds have settled and are in the disbursement process                                              |
| `source.completed` | Funds have been credited to the destination and are available for use                               |
| `source.canceled`  | The transfer has been canceled and authorization has been reversed                                  |
| `source.failed`    | The payment has failed due to a decline or network error                                            |

| Status                   | Description                                                                                                                            |
|--------------------------|----------------------------------------------------------------------------------------------------------------------------------------|
| `source.initiated`       | The ACH transfer from the source into Moov's system has been created                                                                   |
| `source.originated`      | Payment instructions about the source transfer have been sent to Moov's originating depository financial institution (ODFI) partner    |
| `source.corrected`       | The source transfer completed but a notification of change was received                                                                |
| `source.completed`       | Funds are available in Moov and ready to flow out to the destination                                                                   |
| `source.returned`        | The payment was returned by Moov to the source financial institution                                                                   |
| `destination.initiated`  | The ACH transfer from Moov to the destination bank account has been created                                                            |
| `destination.originated` | Payment instructions about the destination transfer have been sent to Moov's receiving depository financial institution (ODFI) partner |
| `destination.corrected`  | Transfer to the destination completed but a notification of change was received                                                        |
| `destination.returned`   | The transfer was returned by the receiving financial institution                                                                       |

| Status                  | Description                                                                |
|-------------------------|----------------------------------------------------------------------------|
| `source.completed`      | The transfer from the source wallet has successfully completed             |
| `destination.completed` | The transfer is complete and funds are available in the destination wallet |

### [Wallet transactions](#wallet-transactions)

#### [`sweep.created`, `sweep.updated`, `walletTransaction.updated`](#sweepcreated-sweepupdated-wallettransactionupdated)

Events for when a sweep has been created or updated, as well as events for when a wallet transaction is pending or has recently completed.

[sweep.created](#tab-428613579-18-0) [sweep.updated](#tab-428613579-18-1)

```json
{
  "eventID": "14980a04-2e32-4921-a771-4959a36534a6",
  "type": "sweep.created", 
  "data": {
    "sweepID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "walletID": "51015d0d-8dca-49a0-ba70-abfed073f785", 
  },
  "createdOn": "2026-09-02T13:57:50Z"
}
```

```json
{
  "eventID": "14980a04-2e32-4921-a771-4959a36534a6",
  "type": "sweep.updated", 
  "data": {
    "sweepID": "51015d0d-8dca-49a0-ba70-abfed073f785",
    "walletID": "50f31cfa-6e41-412b-9935-655e58127583", 
    "status": "failed",
    "transferID" : "0a958eb7-4384-41d6-8bd9-ba1cf9e2f5d2"
  },
  "createdOn": "2026-09-02T13:57:50Z"
}
```

[walletTransaction.updated (pending)](#tab-731294586-19-0) [walletTransaction.updated (completed)](#tab-731294586-19-1)

```json
{
  "eventID": "14980a04-2e32-4921-a771-4959a36534a6",
    "type": "walletTransaction.updated", 
    "data": {
      "accountID": "51015d0d-8dca-49a0-ba70-abfed073f785", //account that owns the wallet
      "walletID": "51015d0d-8dca-49a0-ba70-abfed073f785",
      "transactionID": "51015d0d-8dca-49a0-ba70-abfed073f785",
      "status": "pending"
    },
  "createdOn": "2026-09-02T13:57:50.762679289Z"
}
```

```json
{
  "eventID": "14980a04-2e32-4921-a771-4959a36534a6",
    "type": "walletTransaction.updated", 
    "data": {
      "accountID": "51015d0d-8dca-49a0-ba70-abfed073f785", //account that owns the wallet
      "walletID": "51015d0d-8dca-49a0-ba70-abfed073f785",
      "transactionID": "51015d0d-8dca-49a0-ba70-abfed073f785",
      "status": "completed",
      "availableBalance": {
        "currency": "USD", 
        "value": 1204,
        "valueDecimal": "12.04632"
      },
    },
  "createdOn": "2026-09-02T13:57:50.762679289Z"
}
```
