Bank account updated (deprecated)
Type: object
Domain: intl-bankaccounts
Event: bankaccount_update
Version: 1
|
account_id required
Title: Account Identifier
Description: Account Identifier on Pismo platform
Type: integer
Example:
123
region
Title: Region
Description: Bank account country abbreviation. Will be used to convert to international formats
Type: string
Example:
BR
bank_code
Title: Bank Code
Description: Bank code
Type: string
Example:
0010
updated_datetime required
Title: Bank Account Update Datetime
Description: Bank Account Update Datetime
Type: string
Format: date-time
Example:
2021-10-29T11:00:00.000Z
status
Title: International Bank Account Status
Description: International Bank Account Status
Type: string
Example:
ACTIVE
UPDATED
{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"title": "Bank account updated (deprecated)",
"required": [
"account_id",
"updated_datetime"
],
"properties": {
"account_id": {
"type": "integer",
"title": "Account Identifier",
"description": "Account Identifier on Pismo platform",
"examples": [
123
]
},
"region": {
"type": "string",
"title": "Region",
"description": "Bank account country abbreviation. Will be used to convert to international formats",
"examples": [
"BR"
]
},
"bank_code": {
"type": "string",
"title": "Bank Code",
"description": "Bank code",
"examples": [
"0010"
]
},
"updated_datetime": {
"type": "string",
"title": "Bank Account Update Datetime",
"description": "Bank Account Update Datetime",
"format": "date-time",
"examples": [
"2021-10-29T11:00:00.000Z"
]
},
"status": {
"type": "string",
"title": "International Bank Account Status",
"description": "International Bank Account Status",
"examples": [
"ACTIVE",
"UPDATED"
]
}
}
}
{
"account_id": 123,
"region": "BR",
"bank_code": "0010",
"updated_datetime": "2021-10-29T11:00:00.000Z",
"status": "ACTIVE"
}
Updated 23 days ago