Skip to content

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

Propertyclerk_api_key
NameClickBank Clerk API Key
Data typestring
Example"API-xxxx"
Required?Yes

developer_key

Propertydeveloper_key
NameClickBank Developer Key
Data typestring
Example"DEV-xxxx"
Required?Yes

Optional properties

The following adapter properties are optional for ClickBank stores.

fill_order

Propertyfill_order
NameFill Order
DescriptionIndicates 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 typeboolean
Defaultfalse

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.