6 - Cardholders and Card Owners Management
Get Card Holders
Retrieves the list of cardholders registered in the system, displaying relevant details for management and monitoring.
Example of requisition:
{
"Method": "GetCardHolders",
"PartnerId": 30326,
"BusinessUnitId": 30326
}
{
"Success": "true",
"Message": "ISI0001 - Método executado com sucesso",
"CardHolders": "[{\"HolderTaxNumber\":\"06994676323\",\"Nationality\":\"brasileiro\",\"MotherName\":\"Maria de Lourdes\",\"Gender\":\"Male\",\"FullName\":\"Matheus Cavalcante\",\"BirthDate\":\"03/11/1996 00:00:00\",\"MaritalStatus\":\"Married\"},{\"HolderTaxNumber\":\"61034135325\",\"Nationality\":\"Brasileiro\",\"MotherName\":\"Albaniza Santiago\",\"Gender\":\"Male\",\"FullName\":\"Victor Everton Santiago Barbosa\",\"BirthDate\":\"17/08/1997 00:00:00\",\"MaritalStatus\":\"Single\"}]"
}
Field Descripition:
Field | Description | Type | Required |
---|---|---|---|
Method | API method to be invoked. | String | Yes |
PartnerId | Identifier of the partner making the request. | Integer | Yes |
BusinessUnitId | Identifier of the business unit associated with the partner. | Integer | Yes |
Get Card Owner
Creates a new cardholder, registering personal information and linking them to the system for card issuance or management.
Example of requisition:
{
"Method": "GetCardOwner",
"PartnerId": 30326,
"BusinessUnitId": 30326,
"IdentifierCard": "800015485",
"TaxNumber": "59626023821"
}
{
"Success": "true",
"Message": "ISI0001 - Método executado com sucesso",
"OwnerCard": {
"Bank": "237",
"BankBranch": "0408",
"BankAccount": "000000002279",
"BankAccountDigit": "9"
}
}
Field Descripition:
Field | Description | Type | Required |
---|---|---|---|
Method | API method to be invoked. | String | Yes |
PartnerId | Identifier of the partner making the request. | Integer | Yes |
BusinessUnitId | Identifier of the business unit associated with the partner. | Integer | Yes |
IdentifierCard | Unique identifier of the card for which the information is requested. | String | Yes |
TaxNumber | Tax number (e.g., CPF in Brazil) of the card owner. | String | Yes |
Updated about 22 hours ago