Cardholder
All the APIs to manage cardholder
Register a cardholder synchronously
curl --location --request POST 'https://issuecards.api.bridgecard.co/v1/issuing/sandbox/cardholder/register_cardholder_synchronously' \
--header 'token: Bearer xxxxx' \
--header 'Content-Type: application/json' \
--data-raw '{
"first_name": "John",
"last_name": "Doe",
"address": {
"address": "9 Jibowu Street",
"city": "Aba North",
"state": "Abia",
"country": "Nigeria",
"postal_code": "1000242",
"house_no": "13"
},
"phone": "08122277789",
"email_address": "[email protected]",
"identity": {
"id_type": "NIGERIAN_BVN_VERIFICATION",
"bvn": "22222222222222",
"selfie_image": "https://image.com"
},
"meta_data":{"any_key": "any_value"}
}'Register a cardholder asynchronously (Recommended)
Get cardholder details.
Delete cardholder
Last updated