Skip to main content

Full API Integration

Full API Integration is designed for partners who want to embed the full card issuing flow directly into their own system.

In this model, the partner does not use Sparados hosted mobile or web applications. Instead, the partner manages the end-user experience on its own side and communicates with Sparados APIs directly.

Full API Integration allows partners to:

  • create users via API
  • create cards via API
  • manage card lifecycle
  • retrieve and display card data, including PAN / CVV
  • handle OTP and 3DS flows
  • receive Apple Pay / Google Pay OTP notifications
  • retrieve transactions and receive transaction notifications

This integration model gives the partner full control over the user and card flow, but may require PCI DSS compliance if sensitive card data is received, processed, stored, or displayed.

Before using Full API Integration, the partner must complete onboarding with Sparados, sign the cooperation agreement, and configure Mutual TLS authentication for the selected environment.

API Addresses

API

Integration

BETA

PROD

Card, User, Card Data, 3DS and X-Pay Notifications API (swagger)

Simple / Full

https://sp-api.secure-verestro.dev

https://sp-api.secure-verestro.com

Transaction API (swagger)

Simple / Full

https://services.upaidtest.pl/thc

https://services.upaid.pl/thc

1. HOW FULL API INTEGRATION WORKS

Full API documentation is available here:

Swagger Full API Documentation

In the Full API model, the partner creates the end user and card directly through API.
The process starts with creating a user using:

POST /secure/users/

The partner must provide the required user details, including email, phone number, first name, last name, date of birth, and nationality. After the user is created, Sparados returns userId.

The partner then creates a card for this user using:

POST /secure/cards/

The partner provides the received userId in the card creation request body, together with the balanceId of the balance from which the card should be funded and basic card details such as description and visual identifier.

After receiving the card creation request, Sparados performs several internal operations between Sparados API and the card processing system.  Because these internal operations must be completed before the card can be returned, the response from POST /secure/cards/ may take approximately 1–2 seconds.

Once the card has been created successfully, Sparados returns cardId.

If additional limits need to be assigned to the card, they should be added only after the card has been created, using:

POST /secure/cards/{cardId}/limits

After the additional limits are created successfully, Sparados returns 201 Created with the created limit details. The partner should store the returned cardId, as this value is required for later card management and card data retrieval.


User and card Creation.png


2. VALUES USED IN SPARADOS CARDS API

Swagger documentation is in the end of document 

This section describes common value formats used across Sparados Cards API.
These rules apply when creating cards, defining card limits, setting validity periods, and managing card-related operations.

Date format

Sparados APIs use the ISO 8601 date and time format.

The expected format is:

YYYY-MM-DDTHH:mm:ss.SSSZ

Where:

  • T separates the date from the time
  • Z represents Zulu time / UTC time

Example:

2023-05-22T10:00:01.953Z

Minor values

All numeric amount values used in Sparados Cards API are provided in minor units.
For example, to assign a card with a limit of 100.50 EUR, send:

10050

This applies to values such as:

  • card budget
  • additional limits
  • budget increases
  • budget decreases

Currency

Cards entity are created in the currency of the account / balance. The currency does not need to be provided separately when creating a card, because it is inherited from the selected account / balance.
Each account can have only one currency. Transactions may still be performed in other currencies, depending on the card configuration and transaction rules.

3. USER MANAGEMENT

In Full API Integration, the partner manages end users directly through API.

The user must be created before card can be assigned directly to this user.

User API Methods

Method

Endpoint

Description

POST

/secure/users/

Creates a new end user.

GET

/secure/users/{userId}

Retrieves details of a specific user.

PATCH

/secure/users/{userId}

Updates selected user details.

DELETE

/secure/users/{userId}

Deletes or deactivates the user, depending on the agreed configuration.

Create User

POST /secure/users/

Required fields:

Field

Type

Description

email

string

End user’s email address.

phoneNumber

string

End user’s phone number.

firstName

string

End user’s first name.

lastName

string

End user’s last name.

dateOfBirth

string

End user’s date of birth. Recommended format: YYYY-MM-DD.

nationality

string

End user’s nationality. Recommended ISO country code, for example PL.

Example request:

{
  "email": "john.smith@example.com",
  "phoneNumber": "48123456789",
  "firstName": "John",
  "lastName": "Smith",
  "dateOfBirth": "1990-01-01",
  "nationality": "PL"
}

Example response:

{
  "id": 123456
}

The returned userId should be stored by the partner and used when creating a card through POST /secure/cards/.

4. CREATE CARD

To issue a new virtual card for an existing user, use:

POST /secure/cards/

This endpoint issues a new virtual card linked to the selected balance and assigns it to the specified user.

The user must be created first through:

POST /secure/users/

After the user is created, Sparados returns userId. This userId must then be provided in the card creation request body.

The card is created directly using the selected balanceId and the assigned userId. If visualId is not provided, the default card visual will be used.

The partner can obtain the available balanceId values by calling:

GET /secure/balances/

The currency of the card depends on the selected balanceId. For example, if the card is linked to a EUR balance, the card currency will be EUR. If the card is linked to a PLN balance, the card currency will be PLN.

The budgetMinor field is optional. If it is not provided, the user can spend up to the amount available on the corporation balance linked to the card. If budgetMinor is provided, the transaction will be approved only if both the available corporation balance and the card budget are higher than or equal to the transaction amount. The remaining card budget is returned as balanceMinor in the method GET /secure/balances/.

The visualId is provided by Sparados when a new card visual is created for the client. If it is not provided, the default card visual is used. Providing the correct visualId ensures that the card is displayed correctly in Apple Wallet and Google Wallet.

The description field is optional. It is displayed in the Sparados webview when the partner uses it to present card details, but the partner may also use this field to store its own card description or reference.

The response from POST /secure/cards/ may take approximately 1–2 seconds, because Sparados creates the card, assigns it to the user, and configures the card balance before returning the response.

Once the response is returned, the card is already created and ready to use. Sparados returns the created card data, including cardId. The partner should store this value, as it is required for later card management, card data retrieval, and adding additional limits to the card.

Request body example:

{
  "balanceId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "userId": 0,
  "budgetMinor": 0,
  "description": "string",
  "visualId": 0
}

Request body fields:

Field Type Description
balanceId* string, uuid UUID of the balance the card will be funded from. The partner can obtain this value by calling GET /secure/balances/. The card currency depends on the selected balance.
userId* integer ID of the user the card will be assigned to. This value is returned by POST /secure/users/.
budgetMinor integer Optional spend limit in minor currency units, for example 10000 = 100.00 PLN. If this field is not provided, the user can spend up to the amount available on the corporation balance linked to the card. If this field is provided, the transaction is approved only if both the available corporation balance and the card budget are higher than or equal to the transaction amount.
description string Optional card description. It is displayed in the Sparados webview and may also be used by the partner to store its own card description or reference.
visualId integer Card visual identifier provided by Sparados when a new card visual is created for the client. If not provided, the default card visual will be used. This value is required for correct card display in Apple Wallet and Google Wallet.

Additional properties are not processed by the API.

Example response:

{
  "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "balanceId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "userId": 0,
  "budgetMinor": 0,
  "description": "string",
  "visualId": 0
}
Additional card limits

After the card has been created, additional card limits can be assigned using:

POST /secure/cards/{id}/limits

This endpoint adds one limit to an existing card. Additional limits should be added only after the card has been successfully created and is ready to use. Each POST /secure/cards/{id}/limits request adds a single additional limit. Editing and deleting limits are also performed one by one. Only the GET method returns a list of limits assigned to the card.

All amountMinor values are provided in minor currency units, for example 10000 = 100.00 PLN. Amount-based limits are cumulative, not per-transaction limits. Each successful transaction reduces the remaining amount available until the applicable limit period resets or the limit is removed.

Request body fields
Field Type Description
type string Type of the card limit.
amountMinor integer Amount limit in minor currency units, for example 10000 = 100.00 PLN. Used for amount-based limits.
maxAttempts integer Maximum number of transactions allowed within the selected period. Used for quantity-based limits.
period string Limit period. Available values: DAILY, WEEKLY, MONTHLY.
mccList array of strings List of merchant category codes used for MCC whitelist or blacklist limits.
merchantIdList array of strings List of merchant IDs used for merchant whitelist or blacklist limits.
Supported limit types

TRX_ALL — cap on all transactions combined.

{
  "type": "TRX_ALL",
  "amountMinor": 50000,
  "maxAttempts": 10,
  "period": "MONTHLY"
}

TRX_E_COM — cap on e-commerce transactions only.

{
  "type": "TRX_E_COM",
  "amountMinor": 10000,
  "maxAttempts": 5,
  "period": "DAILY"
}

TRX_ATM — cap on ATM withdrawals.

{
  "type": "TRX_ATM",
  "amountMinor": 30000,
  "maxAttempts": 2,
  "period": "WEEKLY"
}

FOREIGN_AMOUNT — cap on the total amount spent in a foreign currency.

{
  "type": "FOREIGN_AMOUNT",
  "amountMinor": 20000,
  "period": "MONTHLY"
}

FOREIGN_QUANTITY — cap on the number of foreign-currency transactions.

{
  "type": "FOREIGN_QUANTITY",
  "maxAttempts": 3,
  "period": "DAILY"
}

QUANTITY — cap on total transaction count regardless of transaction type.

{
  "type": "QUANTITY",
  "maxAttempts": 100,
  "period": "DAILY"
}

AMOUNT_PLN — cap on PLN-denominated spend.

{
  "type": "AMOUNT_PLN",
  "amountMinor": 50000,
  "period": "WEEKLY"
}

AMOUNT_EUR — cap on EUR-denominated spend.

{
  "type": "AMOUNT_EUR",
  "amountMinor": 20000,
  "period": "MONTHLY"
}

MCC_BLACKLIST — blocks transactions at terminals with the given merchant category codes.

{
  "type": "MCC_BLACKLIST",
  "mccList": ["5812", "5813"]
}

MCC_WHITELIST — allows transactions only at terminals with the given merchant category codes.

{
  "type": "MCC_WHITELIST",
  "mccList": ["5812"]
}

MERCHANT_ID_BLACKLIST — blocks transactions at specific merchants.

{
  "type": "MERCHANT_ID_BLACKLIST",
  "merchantIdList": ["9AF3C2B1D4E5"]
}

MERCHANT_ID_WHITELIST — allows transactions only at specific merchants.

{
  "type": "MERCHANT_ID_WHITELIST",
  "merchantIdList": ["9AF3C2B1D4E5"]
}
Response

After the limit has been created successfully, the API returns 201 Created with the created limit details.

Example response:

{
  "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "type": "TRX_ALL",
  "amountMinor": 0,
  "maxAttempts": 0,
  "period": "DAILY",
  "mccList": [
    "string"
  ],
  "merchantIdList": [
    "string"
  ]
}

The returned id is the limit ID. The partner should store this value if the limit may need to be edited or removed later. The same limit ID can also be retrieved using the GET method that returns the list of limits assigned to the card.

Multiple and overlapping limits

The API allows multiple limits of the same type, including limits with the same period. All applicable limits are checked for each transaction, so the most restrictive limit is effectively enforced. For example, if a card has two weekly TRX_ATM limits of 100 EUR and 50 EUR, the effective weekly ATM limit is 50 EUR.

The API validates conflicts between whitelists and blacklists because these rules are mutually exclusive. MCC_WHITELIST and MCC_BLACKLIST cannot be active at the same time, and the same rule applies to MERCHANT_ID_WHITELIST and MERCHANT_ID_BLACKLIST.

Getting, editing and deleting card limits

If the partner wants to edit an existing limit, the partner must use the limit ID in the PATCH method. This limit ID is returned when the limit is created using POST /secure/cards/{id}/limits. It can also be retrieved by calling the GET method that returns the list of limits assigned to the card. To change an existing limit, the partner should either edit the existing limit using its limit ID or remove the existing limit first and then add a new one.

The difference is how accumulated usage counters are handled. If the existing limit is edited, the current usage counter is preserved. If the limit is removed and a new limit is created, the accumulated usage counter associated with the removed limit is not carried over to the new limit

For example, if the card has a TRX_ATM limit of 100 EUR and the user has already spent 20 EUR, then increasing the existing limit to 200 EUR means the user will still have 180 EUR available under this limit. However, if the partner removes the existing TRX_ATM limit and then adds a new TRX_ATM limit of 200 EUR, the accumulated usage counter is reset and the user will have the full 200 EUR available under the new limit.

If the partner wants to change the limit value while preserving accumulated usage, the existing limit should be edited using its limit ID. If the partner wants to reset accumulated usage, the existing limit should be removed and a new limit should be created.
Although the API allows multiple limits of the same type, removing or editing the existing limit before adding its replacement is recommended to avoid overlapping limits and unclear card configuration.

6. CHECKING ACCOUNT BALANCE

To check the balance of the payment account connected with issued cards, use:

GET /secure/balances/{balanceId}

This method returns the current balance of the account connected with cards.

The balanceId required for this method is provided by Sparados after the payment account is created for the partner.

7. CARD DATA RETRIEVAL

To retrieve encrypted card details, use:

GET /secure/cards/{id}/sensitive

This endpoint returns sensitive card data, including PAN and CVV, in encrypted form.

The {id} parameter is the cardId received from the POST /secure/cards/

Encryption

Card details are always returned as a JWE token.

To decrypt the response, the partner must provide an RSA public key with each request.

The card data is encrypted using the provided public key. Only the holder of the matching private key can decrypt the response.

Requirements

Requirement

Description

RSA key pair

Minimum key size: 2048-bit.

Public key format

Base64-encoded SPKI PEM.

Request header

Public key must be sent in the Public-Key header.

Response format

API returns encrypted payload as a JWE compact token.

Encryption algorithm

RSA-OAEP-256 + A256GCM.

Request Header

Header

Value

Public-Key

Base64-encoded RSA public key in SPKI PEM format.

Response Format

{
  "payload": "<JWE compact token>"
}

Decrypted Payload Example

After decrypting the JWE token, the payload contains card details:

{
  "id": 123,
  "type": "VIRTUAL",
  "cardNo": "5414599451242598",
  "cvv": "111",
  "exp": "2031-05-31",
  "issuerCardId": "1111111111111111",
  "dcCorporationId": "7f846a2f-92b4-4094-a776-35cf3753ef51",
  "balanceId": "67716ba1-081b-4919-8aae-9fdbee10be23"
}

If card data should be visible only to the end user, the key pair should be generated on the frontend side.

  1. The frontend generates a temporary RSA key pair.
  2. The frontend keeps the private key locally, for example in the user session.
  3. The frontend sends only the public key to the partner backend.
  4. The partner backend forwards the public key to Sparados API in the Public-Key header.
  5. Sparados returns encrypted card data as a JWE token.
  6. The encrypted payload is forwarded back to the frontend.
  7. The frontend decrypts the payload using the private key.
  8. PAN and CVV are displayed only to the end user.

Security Note

Never send the private key to Sparados API or to the partner backend if the decrypted card data should be accessible only to the end user. Only the public key should be sent in the request header.

Accessing, processing, storing, or displaying PAN / CVV may require PCI DSS compliance.

8. SPARADOS TRANSACTION API

Sparados Transaction History API allows partners to retrieve transaction history and receive transaction notifications.

The API consists of two parts:

Type

Description

Inbound API

API methods called by the partner to retrieve transaction data from Sparados.

Outbound API

Webhook notifications sent by Sparados to the partner system when transaction events occur.

Transaction API documentation is available here:

https://developer.verestro.com/books/transaction-history-api/page/technical-documentation-thc-external-api

Authentication

Inbound Authentication

Inbound API calls require Mutual TLS authentication.

The same client certificate can be used for all mTLS-secured APIs exposed by Sparados.

If the certificate has not been configured yet, follow the section:

Connecting Server-to-Server

Outbound Authentication

For outbound webhook calls, Sparados presents its own server certificate during the TLS handshake.

The certificate is signed by Verestro CA. The partner system should be configured to trust certificates signed by the relevant Verestro CA.

Each environment has its own CA certificate, so the partner must use the correct root CA certificate for the selected environment.

Backward Compatibility

Future API changes will be backward compatible. The following changes may be introduced without breaking compatibility:

  1. adding a new endpoint
  2. adding a new optional request parameter
  3. adding a new optional response field
  4. adding a new enum value
  5. relaxing validation rules for an existing parameter, for example making it optional
  6. The partner system should ignore unknown fields and unknown enum values received in API responses.

Outbound Retry Strategy

If an outbound webhook call fails because of a timeout, connection issue, or HTTP 5xx response, Sparados will retry the call automatically.

Retry stage

Description

Initial retries

3 retries with up to 5 seconds between each attempt.

Extended retries

If the call still fails, Sparados performs 3 additional retries after 15 minutes, 30 minutes, and 2 hours.

Final result

If all retries fail, the webhook call is dismissed.

The partner endpoint should return a successful HTTP response after receiving and processing the notification.

9. OTP AND WALLET NOTIFICATION WEBHOOKS

In Full API Integration, Sparados can send OTP and wallet-related notifications to endpoints provided by the partner.

The partner must provide Sparados with the full webhook URLs that should be used for notification delivery.

Requests are signed with Verestro’s CA certificate.

The partner endpoint should return:

204 No Content

to confirm that the notification was received successfully.

3DS OTP Notification

This webhook is triggered when a 3DS OTP is generated for a card in your corporation.

Endpoint

POST {3ds_otp_notification_url}

The full endpoint URL is provided by the partner during integration setup.

Request Body

Field

Type

Description

balanceId

string

Balance ID related to the card.

currency

string

Transaction currency.

merchantName

string

Merchant name for the transaction.

otp

string

3DS one-time password generated for the transaction.

cardId

integer

Card ID.

userId

integer

User ID assigned to the card.

amountMinor

integer

Transaction amount in minor units.

cardLast4Digits

string

Last 4 digits of the card number.

Example Request Body

{
  "balanceId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "currency": "EUR",
  "merchantName": "Example Merchant",
  "otp": "123456",
  "cardId": 123,
  "userId": 456,
  "amountMinor": 1000,
  "cardLast4Digits": "2598"
}

Expected Response

204 No Content

Wallet Notifications

This webhook is triggered when a wallet notification event occurs for a card in your corporation.

It is used for Apple Pay / Google Pay related events, including activation code delivery and token status updates.

Endpoint

POST {wallet_notifications_url}

The full endpoint URL is provided by the partner during integration setup.

Message Types

messageType

Description

ACTIVATION_CODE_DELIVERY

Wallet activation code should be delivered to the end user.

TOKEN_ACTIVATED

Wallet token has been activated.

CARD_REMOVED_BY_CUSTOMER

Card has been removed from the wallet by the customer.

CARD_REMOVED_BY_ISSUER

Card has been removed from the wallet by the issuer.

Request Body

Field

Type

Description

cardLast4Digits

string

Last 4 digits of the card number.

tokenRequestorType

string

Wallet provider / token requestor type.

messageType

string

Wallet notification type.

activationMethodType

string

Activation method type. Present only for ACTIVATION_CODE_DELIVERY.

activationMethodValue

string

Activation method value. Present only for ACTIVATION_CODE_DELIVERY.

activationCode

string

Wallet activation code. Present only for ACTIVATION_CODE_DELIVERY.

formFactor

string

Device or wallet form factor.

cardId

integer

Card ID.

Example Request Body

{
  "cardLast4Digits": "2598",
  "tokenRequestorType": "APPLE_PAY",
  "messageType": "ACTIVATION_CODE_DELIVERY",
  "activationMethodType": "SMS",
  "activationMethodValue": "48123456789",
  "activationCode": "123456",
  "formFactor": "PHONE",
  "cardId": 123
}

Expected Response

204 No Content

Important

The fields activationCode, activationMethodType, and activationMethodValue are present only when messageType is:

ACTIVATION_CODE_DELIVERY

10. API SWAGGER DOCUMENTATION

Detailed API documentation is available here:

API

Documentation link

Full API Swagger

https://sp-api.verestro.dev/docs?urls.primaryName=External

Cards API Swagger

https://sparados-bc-api.upaidtest.pl/api-secure.yaml

Transaction API Documentation

https://developer.verestro.com/books/transaction-history-api/page/technical-documentation-thc-external-api

Use the Swagger documentation as the source of detailed endpoint schemas, request parameters, response formats, and available enum values.