Store adapter — ClickBank¶
The adapter
object contains properties for connecting to the ClickBank API.
Parent object: a store with property "platform" : "click_bank"
Required properties¶
The following adapter
properties are required for ClickBank stores.
clerk_api_key
¶
Property | clerk_api_key |
---|---|
Name | ClickBank Clerk API Key |
Data type | string |
Example | "API-xxxx" |
Required? | Yes |
developer_key
¶
Property | developer_key |
---|---|
Name | ClickBank Developer Key |
Data type | string |
Example | "DEV-xxxx" |
Required? | Yes |
Optional properties¶
The following adapter
properties are optional for ClickBank stores.
fill_order
¶
Property | fill_order |
---|---|
Name | Fill Order |
Description | Indicates that the receipt is part of the order being shipped altogether, for which the remaining shipping notices should be automatically generated. Enable this if orders are bundled together at the warehouse. |
Data type | boolean |
Default | false |
Example¶
Example: create a new ClickBank store
curl -X POST \
-H "Authorization: Bearer $JWT_TOKEN" \
-H "Content-Type: application/json" \
https://api.getdropstream.com/stores \
-d @- <<EOF
{ "customer_id": "3775",
"name": "Your ClickBank Store",
"platform": "click_bank",
"adapter": {
"clerk_api_key": "API-12345",
"developer_key": "DEV-12345",
"fill_order": "false"
}
}
EOF
For details about this request type, see: Create a new store.