Bank account registered (deprecated)
Type: object
Domain: intl-bankaccounts
Event: bankaccount_register
Version: 1
account_id required
Title: Account Identifier
Description: Account Identifier on Pismo platform
Type: integer
Example:
123
region required
Title: Region
Description: Bank account country abbreviation. Will be used to convert to international formats
Type: string
Example:
BR
bank_code required
Title: Bank Code
Description: Bank code
Type: string
Example:
0010
branch
Title: Bank Branch
Description: Bank branch
Type: string
Example:
0440
account_number
Title: Bank Account number
Description: Bank account number
Type: string
Example:
007283684
account_type
Title: Bank Account Type
Description: Bank account type
Type: string
Example:
CACC
clearing_code
Title: Clearing system code
Description: Code used to identify the bank in it's clearing system. (COMPE in Brazil, for instance)
Type: string
Example:
999
creation_datetime required
Title: Bank Account Creation Datetime
Description: Bank Account Creation Datetime
Type: string
Format: date-time
Example:
2021-10-29T11:00:00.000Z
{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"title": "Bank account registered (deprecated)",
"required": [
"account_id",
"region",
"bank_code",
"creation_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"
]
},
"branch": {
"type": "string",
"title": "Bank Branch",
"description": "Bank branch",
"examples": [
"0440"
]
},
"account_number": {
"type": "string",
"title": "Bank Account number",
"description": "Bank account number",
"examples": [
"007283684"
]
},
"account_type": {
"type": "string",
"title": "Bank Account Type",
"description": "Bank account type",
"examples": [
"CACC"
]
},
"clearing_code": {
"type": "string",
"title": "Clearing system code",
"description": "Code used to identify the bank in it's clearing system. (COMPE in Brazil, for instance)",
"examples": [
"999"
]
},
"creation_datetime": {
"type": "string",
"title": "Bank Account Creation Datetime",
"description": "Bank Account Creation Datetime",
"format": "date-time",
"examples": [
"2021-10-29T11:00:00.000Z"
]
}
}
}
{
"account_id": 123,
"region": "BR",
"bank_code": "0010",
"branch": "0440",
"account_number": "007283684",
"account_type": "CACC",
"clearing_code": "999",
"creation_datetime": "2021-10-29T11:00:00.000Z"
}
Updated 6 days ago