API INTEGRATION INFORMATION
RO | EN
Cardapp Cloud API is a flexible interface compatible with the most commonly used programming languages. This API interface allows the integration of the Cardapp Cloud platform with other online applications.

All communications with the Cardapp Cloud API are encrypted using the HTTPS or SSL protocol. Any unsecured call (HTTP only) is automatically rejected.

Features accessible through API methods

Checking card types;
Issuing new loyalty cards;
Adding bonus points and recording payments;
Refund/ cancel an order;
Using / querying / spending points from the card;
Checking the number of points accumulated on the card;
API CONNECTION DETAILS
Username
emailul_dvs@Domeniu_Dvs.ro

API KEY
TEST-123121313132fsdfdsfdsf4546464645

Access link for querying the Cardapp platform via cURL POST / GET
https://Subdomeniu.Domeniu_Dvs.ro/api/response.php

Queries can be performed using CURLOPT_POST (recommended) or GET.

WARNING! Make sure to enter your API credentials correctly. Otherwise, access to the API application will be automatically blocked after 3 consecutive failed queries!
QUERY CARD TYPES
This will return the card types created on your account and their unique IDs (optional).
It is used when you want to create a loyalty card of a specific type—different from the default one—such as PREMIUM, GOLD, VIP, etc., before using the CREATE / GENERATE NEW LOYALTY CARD option.

Example of a GET request:

https://Subdomeniu.Domeniu_Dvs.ro/api/response.php?apikey=TEST-123121313132fsdfdsfdsf4546464645&username=emailul_dvs@Domeniu_Dvs.ro&action=tip_card&tip_response={json sau xml}

Do not use { }. They are only for highlighting purposes. Correct: key=value Wrong: key={value}

Required parameters

Name Mandatory field Description
apikey YES API Key
username YES Email address used to connect to Cardapp
action YES Enter tip_card
tip_response NO Enter xml if you want the response in XML format or json for JSON format
{
"status":"success",
     "tipuri_card":[
{
"id_grup":"GR_11111111",
"denumire":"PREMIUM",
"valoare_bonus":"1",
"procent_discount":5
},
{
"id_grup":"GR_22222222",
"denumire":"VIP",
"valoare_bonus":"1",
"procent_discount":10
}
     ]
}


RESPONSE PARAMETERS DETAILS

- id_grup – Unique ID of the card type
- denumire – Name of the card type
- valoare_bonus – Value in LEI of 1 bonus point
- procent_discount – Percentage of the sale that is accumulated on the client's card as bonus points.
<tipuri_card_response>

<status>success</status>
<tipuri_card>
     <id_grup>GR_11111111</id_grup>
     <denumire>PREMIUM</denumire>
     <valoare_bonus>1</valoare_bonus>
     <procent_discount>5</procent_discount>
</tipuri_card>
<tipuri_card>
     <id_grup>GR_22222222</id_grup>
     <denumire>VIP</denumire>
     <valoare_bonus>1</valoare_bonus>
     <procent_discount>10</procent_discount>
</tipuri_card>

</tipuri_card_response>