Cheqi provides APIs for creating receipts and reading receipts for customers
Cheqi API (v1)
Download OpenAPI description
Languages
Servers
Mock server
https://docs.cheqi.io/_mock/apis/api-docs
Generated server url
https://test.api.cheqi.io
Bodyapplication/jsonrequired
The payment type
Enum"CARD_PAYMENT""DIRECT_DEBIT""CASH"
Example: "CREDIT_CARD"
The payment account details, for now only IBAN/WERO is supported
The Cheqi receipt ID, only needed for credit notes
Example: "CHQ-12345678-123456-123456"
- Mock serverhttps://docs.cheqi.io/_mock/apis/api-docs/recipient/resolve
- Generated server urlhttps://test.api.cheqi.io/recipient/resolve
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.cheqi.io/_mock/apis/api-docs/recipient/resolve \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"paymentType": "CREDIT_CARD",
"cardDetails": {
"cardProvider": "MAESTRO",
"paymentAccountNumber": "string",
"paymentAccountReference": "string",
"additionalProperties": {
"property1": {},
"property2": {}
}
},
"paymentAccountDetails": {
"identifier": "string",
"accountIdentifierType": "IBAN",
"bic": "string",
"bankName": "string",
"accountHolderName": "string",
"institutionName": "string"
},
"paymentIds": [
"string"
],
"recipientEmail": "recipient@example.com",
"cheqiReceiptId": "CHQ-12345678-123456-123456",
"userId": "2c4a230c-5085-4924-a3e1-25fb4fc5965b"
}'