Virtual Accounts (UK and Europe)
API reference for Virtual Accounts endpoints and webhooks
Manage the entire lifecycle of a payment. For how-to guidance, see the Virtual Accounts documentation.
| Endpoints | |
|---|---|
/wallet/create | Create a virtual account |
/wallet/get | Fetch a virtual account |
/wallet/list | List all virtual accounts |
/wallet/transaction/execute | Execute a transaction |
/wallet/transaction/get | Fetch a transaction |
/wallet/transaction/list | List all transactions |
| See also | |
|---|---|
/payment_initiation/payment/reverse | Refund a payment from a virtual account |
| Webhooks | |
|---|---|
WALLET_TRANSACTION_STATUS_UPDATE | The status of a transaction has changed |
Endpoints
/wallet/create
Create an e-wallet
Create an e-wallet. The response is the newly created e-wallet object.
Request fields
client_idclient_id. The client_id is required and may be provided either in the PLAID-CLIENT-ID header or as part of a request body.secretsecret. The secret is required and may be provided either in the PLAID-SECRET header or as part of a request body.iso_currency_codeGBP, EUR3 3 const request: WalletCreateRequest = {
iso_currency_code: isoCurrencyCode,
};
try {
const response = await plaidClient.walletCreate(request);
const walletID = response.data.wallet_id;
const balance = response.data.balance;
const numbers = response.data.numbers;
const recipientID = response.data.recipient_id;
} catch (error) {
// handle error
}
Response fields
wallet_idbalanceiso_currency_codecurrentdouble availabledouble numbersbacsinternationalrecipient_idstatusUNKNOWN: The wallet status is unknown.ACTIVE: The wallet is active and ready to send money to and receive money from.CLOSED: The wallet is closed. Any transactions made to or from this wallet will error.UNKNOWN, ACTIVE, CLOSEDrequest_id{
"wallet_id": "wallet-id-production-53e58b32-fc1c-46fe-bbd6-e584b27a88",
"recipient_id": "recipient-id-production-9b6b4679-914b-445b-9450-efbdb80296f6",
"balance": {
"iso_currency_code": "GBP",
"current": 123.12,
"available": 100.96
},
"request_id": "4zlKapIkTm8p5KM",
"numbers": {
"bacs": {
"account": "12345678",
"sort_code": "123456"
}
},
"status": "ACTIVE"
}/wallet/get
Fetch an e-wallet
Fetch an e-wallet. The response includes the current balance.
Request fields
client_idclient_id. The client_id is required and may be provided either in the PLAID-CLIENT-ID header or as part of a request body.secretsecret. The secret is required and may be provided either in the PLAID-SECRET header or as part of a request body.wallet_id1 const request: WalletGetRequest = {
wallet_id: walletID,
};
try {
const response = await plaidClient.walletGet(request);
const walletID = response.data.wallet_id;
const balance = response.data.balance;
const numbers = response.data.numbers;
const recipientID = response.data.recipient_id;
} catch (error) {
// handle error
}
Response fields
wallet_idbalanceiso_currency_codecurrentdouble availabledouble numbersbacsinternationalrecipient_idstatusUNKNOWN: The wallet status is unknown.ACTIVE: The wallet is active and ready to send money to and receive money from.CLOSED: The wallet is closed. Any transactions made to or from this wallet will error.UNKNOWN, ACTIVE, CLOSEDrequest_id{
"wallet_id": "wallet-id-production-53e58b32-fc1c-46fe-bbd6-e584b27a88",
"recipient_id": "recipient-id-production-9b6b4679-914b-445b-9450-efbdb80296f6",
"balance": {
"iso_currency_code": "GBP",
"current": 123.12,
"available": 100.96
},
"request_id": "4zlKapIkTm8p5KM",
"numbers": {
"bacs": {
"account": "12345678",
"sort_code": "123456"
},
"international": {
"iban": "GB33BUKB20201555555555",
"bic": "BUKBGB22"
}
},
"status": "ACTIVE"
}/wallet/list
Fetch a list of e-wallets
This endpoint lists all e-wallets in descending order of creation.
Request fields
client_idclient_id. The client_id is required and may be provided either in the PLAID-CLIENT-ID header or as part of a request body.secretsecret. The secret is required and may be provided either in the PLAID-SECRET header or as part of a request body.iso_currency_codeGBP, EUR3 3 cursornext_cursor received from the previous /wallet/list request. If provided, the response will only contain e-wallets created before that e-wallet. If omitted, the response will contain e-wallets starting from the most recent, and in descending order.1024 count1 20 10 const request: WalletListRequest = {
iso_currency_code: 'GBP',
count: 10,
};
try {
const response = await plaidClient.walletList(request);
const wallets = response.data.wallets;
const nextCursor = response.data.next_cursor;
} catch (error) {
// handle error
}
Response fields
walletswallet_idbalanceiso_currency_codecurrentdouble availabledouble numbersbacsinternationalrecipient_idstatusUNKNOWN: The wallet status is unknown.ACTIVE: The wallet is active and ready to send money to and receive money from.CLOSED: The wallet is closed. Any transactions made to or from this wallet will error.UNKNOWN, ACTIVE, CLOSEDnext_cursorrequest_id{
"wallets": [
{
"wallet_id": "wallet-id-production-53e58b32-fc1c-46fe-bbd6-e584b27a88",
"recipient_id": "recipient-id-production-9b6b4679-914b-445b-9450-efbdb80296f6",
"balance": {
"iso_currency_code": "GBP",
"current": 123.12,
"available": 100.96
},
"numbers": {
"bacs": {
"account": "12345678",
"sort_code": "123456"
}
},
"status": "ACTIVE"
},
{
"wallet_id": "wallet-id-production-53e58b32-fc1c-46fe-bbd6-e584b27a999",
"recipient_id": "recipient-id-production-9b6b4679-914b-445b-9450-efbdb80296f7",
"balance": {
"iso_currency_code": "EUR",
"current": 456.78,
"available": 100.96
},
"numbers": {
"international": {
"iban": "GB22HBUK40221241555626",
"bic": "HBUKGB4B"
}
},
"status": "ACTIVE"
}
],
"request_id": "4zlKapIkTm8p5KM"
}/wallet/transaction/execute
Execute a transaction using an e-wallet
Execute a transaction using the specified e-wallet. Specify the e-wallet to debit from, the counterparty to credit to, the idempotency key to prevent duplicate transactions, the amount and reference for the transaction. Transactions will settle in seconds to several days, depending on the underlying payment rail.
Request fields
client_idclient_id. The client_id is required and may be provided either in the PLAID-CLIENT-ID header or as part of a request body.secretsecret. The secret is required and may be provided either in the PLAID-SECRET header or as part of a request body.idempotency_keyThe API supports idempotency for safely retrying requests without accidentally performing the same operation twice. If a request to execute a wallet transaction fails due to a network connection error, then after a minimum delay of one minute, you can retry the request with the same idempotency key to guarantee that only a single wallet transaction is created. If the request was successfully processed, it will prevent any transaction that uses the same idempotency key, and was received within 24 hours of the first request, from being processed.
128 1 wallet_id1 counterpartyname1 numbersinternationaliban15 34 addressstreet1 1 city1 35 postal_code1 16 country2 2 date_of_birthamountiso_currency_codeGBP, EUR3 3 value1.23.double 0.01 referencereference field is unique for each transaction.18 6 originating_fund _sourcefull_nameaddressstreet1 1 city1 35 postal_code1 16 country2 2 account_numberbic8 11 const request: WalletTransactionExecuteRequest = {
wallet_id: walletID,
counterparty: {
name: 'Test',
numbers: {
bacs: {
account: '12345678',
sort_code: '123456',
},
},
},
amount: {
value: 1,
iso_currency_code: 'GBP',
},
reference: 'transaction ABC123',
idempotency_key: '39fae5f2-b2b4-48b6-a363-5328995b2753',
};
try {
const response = await plaidClient.walletTransactionExecute(request);
const transactionID = response.data.transaction_id;
const status = response.data.status;
} catch (error) {
// handle error
}
Response fields
transaction_idstatusAUTHORISING: The transaction is being processed for validation and compliance.INITIATED: The transaction has been initiated and is currently being processed.EXECUTED: The transaction has been successfully executed and is considered complete. This is only applicable for debit transactions.SETTLED: The transaction has settled and funds are available for use. This is only applicable for credit transactions. A transaction will typically settle within seconds to several days, depending on which payment rail is used.FAILED: The transaction failed to process successfully. This is a terminal status.BLOCKED: The transaction has been blocked for violating compliance rules. This is a terminal status.AUTHORISING, INITIATED, EXECUTED, SETTLED, BLOCKED, FAILEDrequest_id{
"transaction_id": "wallet-transaction-id-production-53e58b32-fc1c-46fe-bbd6-e584b27a88",
"status": "EXECUTED",
"request_id": "4zlKapIkTm8p5KM"
}/wallet/transaction/get
Fetch an e-wallet transaction
Fetch a specific e-wallet transaction
Request fields
client_idclient_id. The client_id is required and may be provided either in the PLAID-CLIENT-ID header or as part of a request body.secretsecret. The secret is required and may be provided either in the PLAID-SECRET header or as part of a request body.transaction_id1 const request: WalletTransactionGetRequest = {
transaction_id: transactionID,
};
try {
const response = await plaidClient.walletTransactionGet(request);
const transactionID = response.data.transaction_id;
const reference = response.data.reference;
const type = response.data.type;
const amount = response.data.amount;
const counterparty = response.data.counterparty;
const status = response.data.status;
const createdAt = response.created_at;
} catch (error) {
// handle error
}
Response fields
transaction_idwallet_idreferencetypeBANK_TRANSFER: a transaction which credits an e-wallet through an external bank transfer.PAYOUT: a transaction which debits an e-wallet by disbursing funds to a counterparty.PIS_PAY_IN: a payment which credits an e-wallet through Plaid's Payment Initiation Services (PIS) APIs. For more information see the Payment Initiation endpoints.REFUND: a transaction which debits an e-wallet by refunding a previously initiated payment made through Plaid's PIS APIs.FUNDS_SWEEP: an automated transaction which debits funds from an e-wallet to a designated client-owned account.RETURN: an automated transaction where a debit transaction was reversed and money moved back to originating account.RECALL: a transaction where the sending bank has requested the return of funds due to a fraud claim, technical error, or other issue associated with the payment.BANK_TRANSFER, PAYOUT, PIS_PAY_IN, REFUND, FUNDS_SWEEP, RETURN, RECALLschemePAYOUT and REFUND.FASTER_PAYMENTS: The standard payment scheme within the UK.SEPA_CREDIT_TRANSFER: The standard payment to a beneficiary within the SEPA area.SEPA_CREDIT_TRANSFER_INSTANT: Instant payment to a beneficiary within the SEPA area.null, FASTER_PAYMENTS, SEPA_CREDIT_TRANSFER, SEPA_CREDIT_TRANSFER_INSTANTamountiso_currency_codeGBP, EUR3 3 value1.23.double 0.01 counterpartyname1 numbersinternationaliban15 34 addressstreet1 1 city1 35 postal_code1 16 country2 2 date_of_birthstatusAUTHORISING: The transaction is being processed for validation and compliance.INITIATED: The transaction has been initiated and is currently being processed.EXECUTED: The transaction has been successfully executed and is considered complete. This is only applicable for debit transactions.SETTLED: The transaction has settled and funds are available for use. This is only applicable for credit transactions. A transaction will typically settle within seconds to several days, depending on which payment rail is used.FAILED: The transaction failed to process successfully. This is a terminal status.BLOCKED: The transaction has been blocked for violating compliance rules. This is a terminal status.AUTHORISING, INITIATED, EXECUTED, SETTLED, BLOCKED, FAILEDcreated_atlast_status_updatestatus was updated, in IS0 8601 formatdate-time payment_idPIS_PAY_IN and REFUND.failure_reasonEXTERNAL_SYSTEM: The transaction was declined by an external system.
EXPIRED: The transaction request has expired.
CANCELLED: The transaction request was rescinded.
INVALID: The transaction did not meet certain criteria, such as an inactive account or no valid counterparty, etc.
UNKNOWN: The transaction was unsuccessful, but the exact cause is unknown.EXTERNAL_SYSTEM, EXPIRED, CANCELLED, INVALID, UNKNOWNerrorerror_code and categorized by error_type. Use these in preference to HTTP status codes to identify and handle specific errors. HTTP status codes are set and provide the broadest categorization of errors: 4xx codes are for developer- or user-related errors, and 5xx codes are for Plaid-related errors, and the status will be 2xx in non-error cases. An Item with a non-null error object will only be part of an API response when calling /item/get to view Item status. Otherwise, error fields will be null if no error has occurred; if an error has occurred, an error code will be returned instead.error_typeINVALID_REQUEST, INVALID_RESULT, INVALID_INPUT, INSTITUTION_ERROR, RATE_LIMIT_EXCEEDED, API_ERROR, ITEM_ERROR, ASSET_REPORT_ERROR, RECAPTCHA_ERROR, OAUTH_ERROR, PAYMENT_ERROR, BANK_TRANSFER_ERROR, INCOME_VERIFICATION_ERROR, MICRODEPOSITS_ERROR, SANDBOX_ERROR, PARTNER_ERROR, SIGNAL_ERROR, TRANSACTIONS_ERROR, TRANSACTION_ERROR, TRANSFER_ERROR, CHECK_REPORT_ERROR, CONSUMER_REPORT_ERROR, USER_ERRORerror_codeerror_code_reasonnull will be returned otherwise. Safe for programmatic use.Possible values:
OAUTH_INVALID_TOKEN: The user’s OAuth connection to this institution has been invalidated.OAUTH_CONSENT_EXPIRED: The user's access consent for this OAuth connection to this institution has expired.OAUTH_USER_REVOKED: The user’s OAuth connection to this institution is invalid because the user revoked their connection.error_messagedisplay_messagenull if the error is not related to user action.This may change over time and is not safe for programmatic use.
request_idcausescauses will return an array of errors containing a breakdown of these errors on the individual Item level, if any can be identified.causes will be provided for the error_type ASSET_REPORT_ERROR or CHECK_REPORT_ERROR. causes will also not be populated inside an error nested within a warning object.statusdocumentation_urlsuggested_actionrelated_transactionsrequest_id{
"transaction_id": "wallet-transaction-id-sandbox-feca8a7a-5591-4aef-9297-f3062bb735d3",
"wallet_id": "wallet-id-production-53e58b32-fc1c-46fe-bbd6-e584b27a88",
"type": "PAYOUT",
"reference": "Payout 99744",
"amount": {
"iso_currency_code": "GBP",
"value": 123.12
},
"status": "EXECUTED",
"created_at": "2020-12-02T21:14:54Z",
"last_status_update": "2020-12-02T21:15:01Z",
"counterparty": {
"numbers": {
"bacs": {
"account": "31926819",
"sort_code": "601613"
}
},
"name": "John Smith"
},
"request_id": "4zlKapIkTm8p5KM",
"related_transactions": [
{
"id": "wallet-transaction-id-sandbox-2ba30780-d549-4335-b1fe-c2a938aa39d2",
"type": "RETURN"
}
]
}/wallet/transaction/list
List e-wallet transactions
This endpoint lists the latest transactions of the specified e-wallet. Transactions are returned in descending order by the created_at time.
Request fields
client_idclient_id. The client_id is required and may be provided either in the PLAID-CLIENT-ID header or as part of a request body.secretsecret. The secret is required and may be provided either in the PLAID-SECRET header or as part of a request body.wallet_id1 cursornext_cursor received in the previous /wallet/transaction/list request. If provided, the response will only contain that transaction and transactions created before it. If omitted, the response will contain transactions starting from the most recent, and in descending order by the created_at time.256 count1 200 10 optionsstart_timedate-time const request: WalletTransactionListRequest = {
wallet_id: walletID,
count: 10,
};
try {
const response = await plaidClient.walletTransactionList(request);
const transactions = response.data.transactions;
const nextCursor = response.data.next_cursor;
} catch (error) {
// handle error
}
Response fields
transactionswallet_idtransaction_idwallet_idreferencetypeBANK_TRANSFER: a transaction which credits an e-wallet through an external bank transfer.PAYOUT: a transaction which debits an e-wallet by disbursing funds to a counterparty.PIS_PAY_IN: a payment which credits an e-wallet through Plaid's Payment Initiation Services (PIS) APIs. For more information see the Payment Initiation endpoints.REFUND: a transaction which debits an e-wallet by refunding a previously initiated payment made through Plaid's PIS APIs.FUNDS_SWEEP: an automated transaction which debits funds from an e-wallet to a designated client-owned account.RETURN: an automated transaction where a debit transaction was reversed and money moved back to originating account.RECALL: a transaction where the sending bank has requested the return of funds due to a fraud claim, technical error, or other issue associated with the payment.BANK_TRANSFER, PAYOUT, PIS_PAY_IN, REFUND, FUNDS_SWEEP, RETURN, RECALLschemePAYOUT and REFUND.FASTER_PAYMENTS: The standard payment scheme within the UK.SEPA_CREDIT_TRANSFER: The standard payment to a beneficiary within the SEPA area.SEPA_CREDIT_TRANSFER_INSTANT: Instant payment to a beneficiary within the SEPA area.null, FASTER_PAYMENTS, SEPA_CREDIT_TRANSFER, SEPA_CREDIT_TRANSFER_INSTANTamountiso_currency_codeGBP, EUR3 3 value1.23.double 0.01 counterpartyname1 numbersinternationaliban15 34 addressstreet1 1 city1 35 postal_code1 16 country2 2 date_of_birthstatusAUTHORISING: The transaction is being processed for validation and compliance.INITIATED: The transaction has been initiated and is currently being processed.EXECUTED: The transaction has been successfully executed and is considered complete. This is only applicable for debit transactions.SETTLED: The transaction has settled and funds are available for use. This is only applicable for credit transactions. A transaction will typically settle within seconds to several days, depending on which payment rail is used.FAILED: The transaction failed to process successfully. This is a terminal status.BLOCKED: The transaction has been blocked for violating compliance rules. This is a terminal status.AUTHORISING, INITIATED, EXECUTED, SETTLED, BLOCKED, FAILEDcreated_atlast_status_updatestatus was updated, in IS0 8601 formatdate-time payment_idPIS_PAY_IN and REFUND.failure_reasonEXTERNAL_SYSTEM: The transaction was declined by an external system.
EXPIRED: The transaction request has expired.
CANCELLED: The transaction request was rescinded.
INVALID: The transaction did not meet certain criteria, such as an inactive account or no valid counterparty, etc.
UNKNOWN: The transaction was unsuccessful, but the exact cause is unknown.EXTERNAL_SYSTEM, EXPIRED, CANCELLED, INVALID, UNKNOWNerrorerror_code and categorized by error_type. Use these in preference to HTTP status codes to identify and handle specific errors. HTTP status codes are set and provide the broadest categorization of errors: 4xx codes are for developer- or user-related errors, and 5xx codes are for Plaid-related errors, and the status will be 2xx in non-error cases. An Item with a non-null error object will only be part of an API response when calling /item/get to view Item status. Otherwise, error fields will be null if no error has occurred; if an error has occurred, an error code will be returned instead.error_typeINVALID_REQUEST, INVALID_RESULT, INVALID_INPUT, INSTITUTION_ERROR, RATE_LIMIT_EXCEEDED, API_ERROR, ITEM_ERROR, ASSET_REPORT_ERROR, RECAPTCHA_ERROR, OAUTH_ERROR, PAYMENT_ERROR, BANK_TRANSFER_ERROR, INCOME_VERIFICATION_ERROR, MICRODEPOSITS_ERROR, SANDBOX_ERROR, PARTNER_ERROR, SIGNAL_ERROR, TRANSACTIONS_ERROR, TRANSACTION_ERROR, TRANSFER_ERROR, CHECK_REPORT_ERROR, CONSUMER_REPORT_ERROR, USER_ERRORerror_codeerror_code_reasonnull will be returned otherwise. Safe for programmatic use.Possible values:
OAUTH_INVALID_TOKEN: The user’s OAuth connection to this institution has been invalidated.OAUTH_CONSENT_EXPIRED: The user's access consent for this OAuth connection to this institution has expired.OAUTH_USER_REVOKED: The user’s OAuth connection to this institution is invalid because the user revoked their connection.error_messagedisplay_messagenull if the error is not related to user action.This may change over time and is not safe for programmatic use.
request_idcausescauses will return an array of errors containing a breakdown of these errors on the individual Item level, if any can be identified.causes will be provided for the error_type ASSET_REPORT_ERROR or CHECK_REPORT_ERROR. causes will also not be populated inside an error nested within a warning object.statusdocumentation_urlsuggested_actionrelated_transactionsnext_cursorcursor parameter to /wallet/transaction/list, will return the corresponding transaction as its first entry.request_id{
"next_cursor": "YWJjMTIzIT8kKiYoKSctPUB",
"transactions": [
{
"transaction_id": "wallet-transaction-id-sandbox-feca8a7a-5591-4aef-9297-f3062bb735d3",
"wallet_id": "wallet-id-production-53e58b32-fc1c-46fe-bbd6-e584b27a88",
"type": "PAYOUT",
"reference": "Payout 99744",
"amount": {
"iso_currency_code": "GBP",
"value": 123.12
},
"status": "EXECUTED",
"created_at": "2020-12-02T21:14:54Z",
"last_status_update": "2020-12-02T21:15:01Z",
"counterparty": {
"numbers": {
"bacs": {
"account": "31926819",
"sort_code": "601613"
}
},
"name": "John Smith"
},
"related_transactions": [
{
"id": "wallet-transaction-id-sandbox-2ba30780-d549-4335-b1fe-c2a938aa39d2",
"type": "RETURN"
}
]
},
{
"transaction_id": "wallet-transaction-id-sandbox-feca8a7a-5591-4aef-9297-f3062bb735d3",
"wallet_id": "wallet-id-production-53e58b32-fc1c-46fe-bbd6-e584b27a88",
"type": "PAYOUT",
"reference": "Payout 99744",
"amount": {
"iso_currency_code": "EUR",
"value": 456.78
},
"status": "EXECUTED",
"created_at": "2020-12-02T21:14:54Z",
"last_status_update": "2020-12-02T21:15:01Z",
"counterparty": {
"numbers": {
"international": {
"iban": "GB33BUKB20201555555555"
}
},
"name": "John Smith"
},
"related_transactions": []
}
],
"request_id": "4zlKapIkTm8p5KM"
}Webhooks
Updates are sent to indicate that the status of transaction has changed. All virtual account webhooks have a webhook_type of WALLET.
WALLET_TRANSACTION_STATUS_UPDATE
Fired when the status of a wallet transaction has changed.
Properties
webhook_typeWALLETwebhook_codeWALLET_TRANSACTION_STATUS_UPDATEtransaction_idtransaction_id for the wallet transaction being updatedpayment_idpayment_id associated with the transaction. This will be present in case of REFUND and PIS_PAY_IN.wallet_idnew_statusAUTHORISING: The transaction is being processed for validation and compliance.INITIATED: The transaction has been initiated and is currently being processed.EXECUTED: The transaction has been successfully executed and is considered complete. This is only applicable for debit transactions.SETTLED: The transaction has settled and funds are available for use. This is only applicable for credit transactions. A transaction will typically settle within seconds to several days, depending on which payment rail is used.FAILED: The transaction failed to process successfully. This is a terminal status.BLOCKED: The transaction has been blocked for violating compliance rules. This is a terminal status.AUTHORISING, INITIATED, EXECUTED, SETTLED, BLOCKED, FAILEDold_statusAUTHORISING: The transaction is being processed for validation and compliance.INITIATED: The transaction has been initiated and is currently being processed.EXECUTED: The transaction has been successfully executed and is considered complete. This is only applicable for debit transactions.SETTLED: The transaction has settled and funds are available for use. This is only applicable for credit transactions. A transaction will typically settle within seconds to several days, depending on which payment rail is used.FAILED: The transaction failed to process successfully. This is a terminal status.BLOCKED: The transaction has been blocked for violating compliance rules. This is a terminal status.AUTHORISING, INITIATED, EXECUTED, SETTLED, BLOCKED, FAILEDerrorerror_code and categorized by error_type. Use these in preference to HTTP status codes to identify and handle specific errors. HTTP status codes are set and provide the broadest categorization of errors: 4xx codes are for developer- or user-related errors, and 5xx codes are for Plaid-related errors, and the status will be 2xx in non-error cases. An Item with a non-null error object will only be part of an API response when calling /item/get to view Item status. Otherwise, error fields will be null if no error has occurred; if an error has occurred, an error code will be returned instead.error_typeINVALID_REQUEST, INVALID_RESULT, INVALID_INPUT, INSTITUTION_ERROR, RATE_LIMIT_EXCEEDED, API_ERROR, ITEM_ERROR, ASSET_REPORT_ERROR, RECAPTCHA_ERROR, OAUTH_ERROR, PAYMENT_ERROR, BANK_TRANSFER_ERROR, INCOME_VERIFICATION_ERROR, MICRODEPOSITS_ERROR, SANDBOX_ERROR, PARTNER_ERROR, SIGNAL_ERROR, TRANSACTIONS_ERROR, TRANSACTION_ERROR, TRANSFER_ERROR, CHECK_REPORT_ERROR, CONSUMER_REPORT_ERROR, USER_ERRORerror_codeerror_code_reasonnull will be returned otherwise. Safe for programmatic use.Possible values:
OAUTH_INVALID_TOKEN: The user’s OAuth connection to this institution has been invalidated.OAUTH_CONSENT_EXPIRED: The user's access consent for this OAuth connection to this institution has expired.OAUTH_USER_REVOKED: The user’s OAuth connection to this institution is invalid because the user revoked their connection.error_messagedisplay_messagenull if the error is not related to user action.This may change over time and is not safe for programmatic use.
request_idcausescauses will return an array of errors containing a breakdown of these errors on the individual Item level, if any can be identified.causes will be provided for the error_type ASSET_REPORT_ERROR or CHECK_REPORT_ERROR. causes will also not be populated inside an error nested within a warning object.statusdocumentation_urlsuggested_actionenvironmentsandbox, production{
"webhook_type": "WALLET",
"webhook_code": "WALLET_TRANSACTION_STATUS_UPDATE",
"transaction_id": "wallet-transaction-id-production-2ba30780-d549-4335-b1fe-c2a938aa39d2",
"payment_id": "payment-id-production-feca8a7a-5591-4aef-9297-f3062bb735d3",
"wallet_id": "wallet-id-production-53e58b32-fc1c-46fe-bbd6-e584b27a88",
"new_status": "SETTLED",
"old_status": "INITIATED",
"timestamp": "2017-09-14T14:42:19.350Z",
"environment": "production"
}