post
https://api-sandbox.lafise.com/obl/v1/banks//cards//attribute
Allows additional information (attributes) to be added to a card, such as the cardholder or beneficiary.
Authentication is mandatory.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
💳 Card attributes
📢 Considerations
To fill in the information of the JSON object to be sent, the type of person (according to the catalog) to be added as additional information to the card must be taken into account:
- If the type of person is Beneficiary (1), the following fields are optional:
emailandtelephone. - If the type of person is Tutor (2), the optional fields are:
address.
📖 Example Requests
Below you will find the body of two sample JSON requests:
- Example 1: Create card attribute in Panamá Core.
- Example 2: Create card attribute in Costa Rica Core.
{
"relationship": "1",
"address": "Address PA",
"first_name": "Raul",
"second_name": "Alfonso",
"surname": "Trinidad",
"second_surname": "Montenegro",
"type_id": "0001",
"number_id": "8-9999-99999",
"gender": "M",
"person_type": 1,
"email": "[email protected]",
"telephone": "88888888"
}{
"relationship": "1",
"address": "Address CR",
"first_name": "Walter",
"second_name": "Alfonso",
"surname": "White",
"second_surname": "Gutierrez",
"type_id": "2",
"number_id": "000000000000X",
"gender": "M",
"person_type": 1,
"email": "[email protected]",
"telephone": "88888888"
}JSON response body fields:
| Name | Description | Type |
|---|---|---|
address | The user's address. | string |
relationship | Defines the level of relationship that the user of the additional information has with the owner of the card. | string |
first_name | The user's first name. | string |
second_name | The user's second name. | string |
surname | The user's surname. | string |
second_surname | The user's second surname. | string |
type_id | User's document type code. | string |
number_id | Document number that identifies the user. | string |
gender | User's gender. | string |
telephone | The user's telephone number. | number |
email | User mail. | string |
Cards catalogs
📘 Person type
| Code | Description |
|---|---|
1 | Beneficiary. |
2 | Tutor. |
