Skip to content

Store adapter — LimeLight

The adapter object contains properties for connecting to the LimeLight API.

Parent object: a store with property "platform" : "limelight"

Required properties

The following adapter properties are required for LimeLight stores.

password

Propertypassword
NameLimeLight API Password
Data typestring
Required?Yes

url

Propertyurl
NameLimeLight Admin URL
Data typestring
Required?Yes

username

Propertyusername
NameLimeLight API Username
Data typestring
Required?Yes

Optional properties

The following adapter properties are optional for LimeLight stores.

campaign_ids

Propertycampaign_ids
NameCampaigns To Import
DescriptionOnly orders for the specified Campaigns will be imported
Data typearray of strings
Example[ "abc123", "bcd234" ]

Example

Example: create a new LimeLight 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 LimeLight Store",
  "platform": "limelight",
  "adapter": {
    "url": "https://www.example.com",
    "username": "abc123",
    "password": "abc123",
    "campaign_ids": [ "abc123", "bcd234" ]
  }
}
EOF

For details about this request type, see: Create a new store.