Extending Alerts
The following APIs are common to both Retail Banking and SME Banking.
| Name | Description | Introduced In |
|---|---|---|
| GetAccountIdAssociatedCustomers | Retrieves the list of customers that are associated with the account ID. | 2021.01 |
| GetCustomerInformation | Retrieves the information of the customer. | 2021.01 |
| Description: | Retrieves the list of customers that are associated with the account ID. | |||||
| Method: | POST | |||||
| URL: | /services/dbpProductServices/GetAccountIdAssociatedCustomers | |||||
| Security Level: | Authenticated App Users | |||||
| Header Request: | X-Kony-Authorization | |||||
| Body Request: |
Parameters accountId Specifies the unique ID of the account. {
"accountId" : "160128223241511"
}
|
|||||
| Response: |
Parameters customers Specifies an array of customers. customerId/customerId Specifies the unique ID that is associated with the customer. {
"opstatus": 0,
"customers": [
{
"customerId": "11"
}
],
"httpStatusCode": 0
}
|
|||||
| Error Code(s): |
Error Code: 10771 |
|||||
| Service Flow: |
|
| Description: | Retrieves the information of the customer. | |||||
| Method: | POST | |||||
| URL: | /services/dbpProductServices/GetCustomerInformation | |||||
| Security Level: | Authenticated App Users | |||||
| Header Request: | X-Kony-Authorization | |||||
| Body Request: |
Parameters coreCustomerId (Mandatory) Specifies the unique ID of the core customer. id (Mandatory) Specifies the DBX user ID. {
"coreCustomerId": "1",
"id": ""
}
|
|||||
| Response: |
Parameters customers Specifies an array of customers. customerId/customerId Specifies the unique ID that is associated with the customer. {
"opstatus": 0,
"customers": [
{
"customerId": "111120200736031994"
}
],
"httpStatusCode": 0
}
|
|||||
| Error Code(s): |
|
|||||
| Service Flow: |
|
In this topic