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": "5ea4d86b-9128-4cc7-95cc-1cc01d7ce6c7", "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">5ea4d86b-9128-4cc7-95cc-1cc01d7ce6c7</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.