Properties
| Name | Type | Description |
|---|---|---|
| paymentAccountNumber | string | The payment account number is used for payments in all regions, this may be looked as an ACH account number in the US. Endpoints:
|
| unmaskedAccountNumber | string | The unmasked account number is same as account number that is used to refer to an account and is not partial or masked. Endpoints:
|
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/FullAccountNumbers",
"title": "FullAccountNumbers",
"type": "object",
"properties": {
"paymentAccountNumber": {
"type": "string",
"description": "The payment account number is used for payments in all regions, this may be looked as an ACH account number in the US.<br><b>Endpoints</b>:<ul><li>GET /partner/paymentProcessor/account</li></ul>",
"readOnly": true
},
"unmaskedAccountNumber": {
"type": "string",
"description": "The unmasked account number is same as account number that is used to refer to an account and is not partial or masked.<br><b>Endpoints</b>:<ul><li>GET /partner/paymentProcessor/account</li></ul>",
"readOnly": true
}
}
}