GET api/Billecta/GetAccounts?PersonNo={PersonNo}&PayerPersonNo={PayerPersonNo}&PublicId={PublicId}
Get list of bank account numbers.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| PersonNo |
Person/Org number. |
string |
Required |
| PayerPersonNo |
Person number of payer. |
string |
Required |
| PublicId |
Billecta's PublicId used to get list of bank account numbers. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
List of bank account numbers.
ResponseOfBillectaGetAccounts| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | BillectaGetAccounts |
None. |
|
| Result | boolean |
None. |
|
| Message | string |
None. |
|
| Errors | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": {
"$id": "2",
"Accounts": [
{
"$id": "3",
"Account": "sample string 1",
"ClearingNo": "sample string 2"
},
{
"$ref": "3"
}
],
"Success": true,
"Error": "sample string 2"
},
"Result": true,
"Message": "sample string 2",
"Errors": {
"$id": "4"
}
}