List client payment methods
Retrieves all saved payment methods for a specific client
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Request Code Samples
curl --location 'https://api.ffdemo.ufp.ai/clients//payment_methods' \
--header 'Authorization: Bearer <token>'
Responses
{
"items": [
{
"id": 0,
"level1": "Cash",
"network_type": "string",
"expiry_date": "2019-08-24T14:15:22.123Z",
"bank_name": "string",
"cardholder_name": "string",
"masked_account_number": "string",
"upi_provider": "string",
"vpa_id": "string",
"masked_card_number": "string",
"status": "iniitiated"
}
]
}
Modified at 2025-03-21 07:23:14