Create a card issue.
Authentication is mandatory.
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
💳 Card issuance
📢 Considerations
The cardholder_name and shipping_address fields are sent and used according to the contract established with the merchant. They are used for the process of requesting the issuance of physical cards.
For debit card creation the customer must receive a confirmation via email. This email contains the card details including the sixteen digits of the card, CVV( card verification value) and expiration date. Please note that this information will be valid for 24 hours, after this period of time this information will not be available, this for security purpose.
Note:For the debit card creation, the API response corresponds to the request number to be able to track it and be able to check the status of the card at all times.
📖 Example Requests
Below you will find the body of two example JSON requests for the api:
- Example 1: Create a VISA DEBIT type card.
- Example 2: Create a VIRTUAL PREPAID VISA type card.
{
"card_type": "VI2021",
"customer_id": "xxxxxx",
"account_number": "133009659",
"cardholder_name": "Ana Larios",
"shipping_address": "Managua, Nicaragua",
"branch_code": "000201"
}{
"card_type": "VI2028",
"customer_id": "xxxxxx",
"cardholder_name": "Ana Larios",
"shipping_address": "Managua, Nicaragua",
"branch_code": "000201"
}📖 Example Response
Below you will find the body of two sample JSON responses:
- Example 1: VISA DEBIT card creation response.
- Example 2: VIRTUAL PREPAYMENT card creation response.
{
"application_number": 6520158
}{
"card_number": "0000000000000000",
"card_type": "VI2028",
"account_number": "XXXXXXXX",
"customer_id": "00000",
"external_reference": "GES-150123-VI2028",
"expires_date": "2023-03-22T22:15:22.612Z",
"request_id": 204075,
"cvv": "608",
"cardholder_name": "Carlos Mora",
"shipping_address ": "Direccion de envío",
"branch_code": "000201"
}JSON response body fields:
| Name | Description | Type |
|---|---|---|
card_number | Card number. | string |
card_type | Card type code to be requested. | string |
account_number | Account number associated with the card. | string |
customer_id | Customer number to which the requested card will be associated. | string |
external_reference | Card application reference. | string |
expires_date | Expires date. | date |
request_id | Request id. | number |
cvv | Card verification value. | string |
cardholder_name | Personalized name printed on the card. | string |
shipping_address | Address to which the card will be delivered. | string |
branch_code | Code of the LAFISE branch where the card will be withdrawn. | string |
url | Link that allows you to view the card data to be used at merchants. Response for VISA DEBIT CARD creation requests. | string |
Cards catalogs
📘 Card types
| Code | Description |
|---|---|
VI2028 | VIRTUAL PREPAID VISA. |
VI2021 | DEBIT VISA. |
📘 Branches
| Code | Description |
|---|---|
000114 | TEGA MAIN AGENCY. |
000201 | HEAD OFFICE SPS. |
000230 | LA CEIBA AGENCY. |
