Name | Description | Type |
---|---|---|
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:
{ "APIKey": "e90d4369-baf9-4267-bb54-ebad469cc327", "Signature": "sample string 2", "Nonce": 3 }
application/xml, text/xml
Sample:
<APIKeyParameters xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CCPayments.Models"> <APIKey>e90d4369-baf9-4267-bb54-ebad469cc327</APIKey> <Nonce>3</Nonce> <Signature>sample string 2</Signature> </APIKeyParameters>
Response Information
Resource Description
Name | Description | Type |
---|---|---|
CompanyName | string | |
Website | string | |
LogoURL | string | |
MinSale | decimal number | |
MaxSale | decimal number | |
CheckoutButtonsActive | boolean | |
SettleCurrency | string | |
NotificationURL | string | |
APIWithdrawBTC | boolean | |
APIBuySell | boolean | |
LNActive | boolean | |
TetherActive | boolean | |
MinTether | decimal number | |
MaxTether | decimal number | |
Rolling30DayLimit | decimal number | |
Rolling24HourLimit | decimal number | |
MaxBTCWithdraw | decimal number |
Response Formats
application/json, text/json
Sample:
{ "CompanyName": "sample string 1", "Website": "sample string 2", "LogoURL": "sample string 3", "MinSale": 4.0, "MaxSale": 5.0, "CheckoutButtonsActive": true, "SettleCurrency": "sample string 7", "NotificationURL": "sample string 8", "APIWithdrawBTC": true, "APIBuySell": true, "LNActive": true, "TetherActive": true, "MinTether": 13.0, "MaxTether": 14.0, "Rolling30DayLimit": 15.0, "Rolling24HourLimit": 16.0, "MaxBTCWithdraw": 1.0 }
application/xml, text/xml
Sample:
<MerchantSettings xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CCPayments.Models"> <APIBuySell>true</APIBuySell> <APIWithdrawBTC>true</APIWithdrawBTC> <CheckoutButtonsActive>true</CheckoutButtonsActive> <CompanyName>sample string 1</CompanyName> <LNActive>true</LNActive> <LogoURL>sample string 3</LogoURL> <MaxBTCWithdraw>1</MaxBTCWithdraw> <MaxSale>5</MaxSale> <MaxTether>14</MaxTether> <MinSale>4</MinSale> <MinTether>13</MinTether> <NotificationURL>sample string 8</NotificationURL> <Rolling24HourLimit>16</Rolling24HourLimit> <Rolling30DayLimit>15</Rolling30DayLimit> <SettleCurrency>sample string 7</SettleCurrency> <TetherActive>true</TetherActive> <Website>sample string 2</Website> </MerchantSettings>