Overview
The Click API provides a complete workflow for processing Click payments, starting from payment initiation to fiscalization and receipt generation. The integration is split into two logical stages:- Click Pass – initiates a payment request using a QR code and amount.
- Fiscalization – confirms the completed payment and registers it with the tax system.
General Setup
All Click endpoints share these common settings:- Status code:
200/400/500 - Method:
POST - Auth required:
No - Content-Type:
application/json
Note: Even in case of validation, payment, or fiscalization errors, the API returns HTTP 200.
- Always check
is_successandHTTP status codeto determine if the request succeeded. datacontains the payload on success;errorcontains details on failure.
Payment Flow
The typical Click payment flow looks like this:- The client initiates a payment using Click Pass API
- Click processes the payment and returns a
payment_id - After successful payment, the transaction is fiscalized
- A fiscal receipt is generated and registered in the Soliq system
Click APIs
Use the sections below to explore each part of the Click integration in detail.Click Pass
Initiate Click payments by sending the payment amount and QR code.
Returns a payment identifier used for further processing.
Fiscalization
Confirm and fiscalize completed Click payments.
Registers the transaction and generates a fiscal receipt.

