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:

FieldDescriptionTypeRequired
MethodAPI method to be invoked.StringYes
PartnerIdIdentifier of the partner making the request.IntegerYes
BusinessUnitIdIdentifier of the business unit associated with the partner.IntegerYes

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:

FieldDescriptionTypeRequired
MethodAPI method to be invoked.StringYes
PartnerIdIdentifier of the partner making the request.IntegerYes
BusinessUnitIdIdentifier of the business unit associated with the partner.IntegerYes
IdentifierCardUnique identifier of the card for which the information is requested.StringYes
TaxNumberTax number (e.g., CPF in Brazil) of the card owner.StringYes