| Name | Description | Type |
|---|---|---|
| LightningInvoice |
The lightning invoice required to be settled |
string |
| CardData |
lnurlw string taken from NFC card |
string |
| APIKey |
Your public API Key which can be found in your account |
globally unique identifier |
| Signature |
Your encrypted signature which includes your APIKey, UserId and Nonce, then salted with your API Secret |
string |
| Nonce |
A constantly incrementing integer, you can use a timestamp for example. Example: 34235 |
integer |
Request Formats
application/json, text/json
Sample:
{
"LightningInvoice": "sample string 1",
"CardData": "sample string 2",
"APIKey": "f082034d-6e50-487a-839d-60586e9d125c",
"Signature": "sample string 4",
"Nonce": 5
}
application/xml, text/xml
Sample:
<ProcessCardParams xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CCPayments.Controllers"> <APIKey xmlns="http://schemas.datacontract.org/2004/07/CCPayments.Models">f082034d-6e50-487a-839d-60586e9d125c</APIKey> <Nonce xmlns="http://schemas.datacontract.org/2004/07/CCPayments.Models">5</Nonce> <Signature xmlns="http://schemas.datacontract.org/2004/07/CCPayments.Models">sample string 4</Signature> <CardData>sample string 2</CardData> <LightningInvoice>sample string 1</LightningInvoice> </ProcessCardParams>
Response Information
Resource Description
None.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.
