API documentation for Kvitka


Create a New Non-Personalized Digital Card

Endpoint:

POST https://kvitka.org/api/points/new.php

Description:

This endpoint creates a new non-personalized digital card within the Kvitka service. No request body or authentication tokens are required. Once called, it generates a unique digital card code and provides a direct link to access it. The created card is active immediately.

Request Method:

POST

Headers:

Request Body:

No request payload required. The creation process is automatic upon calling the endpoint.

Response Format:

The response is returned as a JSON object.

Response Fields:

Real Example of Integration (PHP Code):

Below is a minimal example that sends a POST request to the endpoint and prints out the response:


<?php
// Set the endpoint URL
$url = 'https://kvitka.org/api/points/new.php';

// Create a POST request with JSON headers
$options = array(
    'http' => array(
        'header'  => "Content-type: application/json\r\n",
        'method'  => 'POST'
    )
);

// Create a context resource for the request
$context = stream_context_create($options);

// Send the request and store the response
$response = file_get_contents($url, false, $context);

// Print the response
echo $response;
?>
        

Expected Output:


{
  "message": "A new digital card has been successfully created!",
  "card_code": "9999999999999999",
  "card_link": "https://kvitka.org/card.php?c=9999999999999999"
}
        

Add Points to a Digital Card

Endpoint:

POST https://kvitka.org/api/points/create.php

Description:

This endpoint allows you to add points to an existing digital card associated with a user. You must provide a valid key_holder, the user's login_user (unique card code), the login_holder (client login), and the number of points to be added. The number of points cannot exceed 500 per request.

If successful, the endpoint will return a confirmation message and the updated points.

Request Method:

POST

Headers:

Request Body:

A JSON object with the following fields:

For example:


{
  "key_holder": "fdpfffffGOZK7BX",
  "login_user": "9999999999999999",
  "login_holder": "wwwwwuNrYr9Z",
  "points_user": "100"
}
        

Response Format:

JSON object with a message and points details.

Response Fields:

Real Example of Integration (PHP Code):

Below is a minimal example that sends a POST request to the endpoint with appropriate data:


<?php
// Set the endpoint URL
$url = 'https://kvitka.org/api/points/create.php';

// Set the access key and other data
$data = array(
    'key_holder' => 'fdpfffffGOZK7BX',
    'login_user' => '9999999999999999',
    'login_holder' => 'wwwwwuNrYr9Z',
    'points_user' => '100'
);

// Create a POST request with JSON headers and encoded data
$options = array(
    'http' => array(
        'header'  => "Content-type: application/json\r\n",
        'method'  => 'POST',
        'content' => json_encode($data)
    )
);

// Create a context resource for the request
$context = stream_context_create($options);

// Send the request and store the response
$response = file_get_contents($url, false, $context);

// Print the response
echo $response;
?>
        

Expected Output:


{
  "message": "Points successfully accrued!",
  "card_code": "9999999999999999",
  "points": "100"
}
        

Exchange Points for a Discount

Endpoint:

POST https://kvitka.org/api/points/update.php

Description:

This endpoint allows you to exchange accumulated points on a digital card for a discount on a purchase. You provide the partner key (key_partner), the user's card code (login_user), the client's login (login_client), the total purchase amount (sum_exchange), the discount percentage (percentages_discount), and the currency (currency_name).

If successful, the endpoint returns a message confirming the exchange, the card code, the discounted amount, Kvitka's service fee, and the currency type.

Request Method:

POST

Headers:

Request Body:

A JSON object containing the following fields:

Example request body:


{
  "key_partner": "FgtyrBVh8P6LNcQ",
  "login_user": "1234567890123456",
  "login_client": "AbCdEfGh12345",
  "sum_exchange": "300",
  "percentages_discount": "10",
  "currency_name": "UAH"
}
        

Response Format:

The response is returned as a JSON object.

Response Fields:

Real Example of Integration (PHP Code):

Below is a minimal example that sends a POST request to the endpoint using fictional data:


<?php
// Set the endpoint URL
$url = 'https://kvitka.org/api/points/update.php';

// Set the access key and other data
$data = array(
    'key_partner' => 'FgtyrBVh8P6LNcQ',
    'login_user' => '1234567890123456',
    'login_client' => 'AbCdEfGh12345',
    'sum_exchange' => '300',
    'percentages_discount' => '10',
    'currency_name' => 'UAH'
);

// Create a POST request with JSON headers and encoded data
$options = array(
    'http' => array(
        'header'  => "Content-type: application/json\r\n",
        'method'  => 'POST',
        'content' => json_encode($data)
    )
);

// Create a context resource for the request
$context = stream_context_create($options);

// Send the request and store the response
$response = file_get_contents($url, false, $context);

// Print the response
echo $response;
?>
        

Expected Output:


{
  "message": "Points have been successfully exchanged!",
  "card_code": "1234567890123456",
  "discount_amount": "300",
  "kvitka_fee": "3",
  "currency_type": "UAH"
}