Backend
Card List
Fetching customer's Accounts list
This API is called card list but it returns a list of accounts linked to the user's SuperQi account (idk why)
Calling the API
API Path: /v1/users/inquiryUserCardList
When calling this API, a special scope "CARD_LIST" is required in the my.getAuthToken() call, it also needs to be enabled for the merchant account
Request Body
{
"accessToken": "user access token"
}
Response Body
{
...
"cardList": [
{
"maskedCardNo": "",
"accountNumber": ""
}
]
}