Bank account updated
Bank account updated. The Bank account updated endpoint generates this event.
Type: object
Domain: intl-bankaccounts
Event: intl_bankaccount_update
Version: 1
account_id required
Title: Account ID
Description: Pismo account ID
Type: integer
Example:
8675309
scheme required
Title: International bank account scheme
Description: International bank account scheme. A scheme is how a bank account is identified, such as sort code + account number (SCAN) in the UK.
Type: object
Example:
{'sort_code': '100000', 'account_number': '31510604'}
{'iban': 'GB24BKEN10000031510604'}
status required
Title: International bank account status
Description: International Bank Account Status
Type: string
Must be one of the following:
ACTIVE
DELETED
Example:
DELETED
updated_datetime required
Title: Bank account update datetime
Description: Bank account updated datetime, RFC 3339 format.
Type: string
Format: date-time
Example:
2021-10-29T11:00:00.000Z
type
Title: International bank account type
Description: International bank account type:CACC
- Checking account,SVGS
- Savings account,TRAN
- Brazilian specific account,SLRY
- Salary account, employer deposits salary.
Type: string
Must be one of the following:
CACC
SVGS
TRAN
SLRY
Example:
CACC
metadata
Title: International bank account metadata
Description: International bank account metadata
Type: object
Example:{ "custom_field_1": "custom data 1", "custom_field_2": "custom data 2" }
{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"title": "Bank account updated",
"description": "Bank account updated. The <a href='https://developers.pismo.io/pismo-docs/reference/delete-intl-bank-accounts-v2-accounts-account-id-bank-accounts-scheme-name'>Bank account updated</a> endpoint generates this event.",
"required": [
"account_id",
"scheme",
"status",
"updated_datetime"
],
"properties": {
"account_id": {
"type": "integer",
"title": "Account ID",
"description": "Pismo account ID",
"examples": [
8675309
]
},
"scheme": {
"type": "object",
"title": "International bank account scheme",
"description": "International bank account scheme. A scheme is how a bank account is identified, such as sort code + account number (SCAN) in the UK.",
"examples": [
{
"sort_code": "100000",
"account_number": "31510604"
},
{
"iban": "GB24BKEN10000031510604"
}
]
},
"status": {
"type": "string",
"title": "International bank account status",
"description": "International Bank Account Status",
"enum": [
"ACTIVE",
"DELETED"
],
"examples": [
"DELETED"
]
},
"updated_datetime": {
"type": "string",
"title": "Bank account update datetime",
"description": "Bank account updated datetime, RFC 3339 format.",
"format": "date-time",
"examples": [
"2021-10-29T11:00:00.000Z"
]
},
"type": {
"type": "string",
"title": "International bank account type",
"description": "International bank account type: `CACC` - Checking account, `SVGS` - Savings account, `TRAN` - Brazilian specific account, `SLRY` - Salary account, employer deposits salary.",
"enum": [
"CACC",
"SVGS",
"TRAN",
"SLRY"
],
"examples": [
"CACC"
]
},
"metadata": {
"type": "object",
"title": "International bank account metadata",
"description": "International bank account metadata",
"examples": [
{
"custom_field_1": "custom data 1",
"custom_field_2": "custom data 2"
}
]
}
}
}
{
"account_id": 8675309,
"scheme": {
"sort_code": "100000",
"account_number": "31510604"
},
"status": "DELETED",
"updated_datetime": "2021-10-29T11:00:00.000Z",
"type": "CACC",
"metadata": {
"custom_field_1": "custom data 1",
"custom_field_2": "custom data 2"
}
}
Updated 23 days ago