> For the complete documentation index, see [llms.txt](https://customer-api-docs.ibanera.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://customer-api-docs.ibanera.com/callbacks/transaction-status-updated.md).

# Transaction Status Updated

## Overview

Sent when an outbound transfer (Wire or ACH) status changed or when comply advantage approved a pending screening.

## Data Object

<table><thead><tr><th width="260">Field</th><th>Description</th></tr></thead><tbody><tr><td>Id</td><td>Transaction Id</td></tr><tr><td>AccountsId</td><td>Transaction account Id</td></tr><tr><td>FromTransactionsId</td><td>Nullable linked from transaction Id</td></tr><tr><td>FromAccountsId</td><td>Nullable linked from account Id</td></tr><tr><td>ToTransactionsId</td><td>Nullable linked to transaction Id</td></tr><tr><td>ToAccountsId</td><td>Nullable linked to account Id</td></tr><tr><td>RollbackTransactionsID</td><td>In cases where a transaction is rejected, failed, or refunded, this field will contain the ID of the refund transaction</td></tr><tr><td>Amount</td><td>Transaction amount</td></tr><tr><td>Description</td><td>Transaction description</td></tr><tr><td>DateTime</td><td>Transaction date</td></tr><tr><td>bPending</td><td>True when transaction is pending</td></tr><tr><td>bCompleted</td><td>True when the transaction is completed successfully</td></tr><tr><td>bRejected</td><td>True when a transaction is Rejected. When a transaction is rejected, it will be refunded. The transaction ID of the refund is found in <strong><code>RollbackTransactionsId</code></strong></td></tr></tbody></table>

## Data Example

#### Completed Example

```json
{
        "Id": "53105295-5905-41e6-ad16-b5dea5c0f2ad",
        "Type": "TRANSACTION_STATUS_UPDATED"
        "Data": {
                "Id": 19605,
                "AccountsId": 2001,
                "FromTransactionsId": null,
                "FromAccountsId": null,
                "ToTransactionsId": null,
                "ToAccountsId": null,
                "RollbackTransactionsId": null,
                "Amount": -100,
                "Description": "External transfer - Payment from Test Account",
                "DateTime": "2023-10-16T14:14:44.43+00:00",
                "bPending": false,
                "bCompleted": true,
                "bRejected": false
        }
}
```

#### Rejected Example

```json
{
        "Id": "53105295-5905-41e6-ad16-b5dea5c0f2ad",
        "Type": "TRANSACTION_STATUS_UPDATED"
        "Data": {
                "Id": 19605,
                "AccountsId": 2001,
                "FromTransactionsId": null,
                "FromAccountsId": null,
                "ToTransactionsId": null,
                "ToAccountsId": null,
                "RollbackTransactionsId": 10001,
                "Amount": -100,
                "Description": "External transfer - Payment from Test Account",
                "DateTime": "2023-10-16T14:14:44.43+00:00",
                "bPending": false,
                "bCompleted": false,
                "bRejected": true
        }
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://customer-api-docs.ibanera.com/callbacks/transaction-status-updated.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
