In this guide we will be going over the concept and API needed to automate importing emails captured from your brand’s LikeShop so that you don’t have to manually upload them to your email marketing tool such as MailChimp, Hubspot, etc.Documentation Index
Fetch the complete documentation index at: https://developer.dashsocial.com/llms.txt
Use this file to discover all available pages before exploring further.
Get up to speed quickly
You will need two things to get started and make any Dash Social API calls:- API Key: Our API key (Bearer Token) can be generated directly from our platform under the Developer section.
- Brand ID: You can see your
brand_idnext to your brand name under the Developer section as well.
API Key & brand_id.
Get emails from LikeShop
Getting LikeShop emails in JSON is simple — start by callinghttps://library-backend.dashsocial.com/brands/{brand_id}/galleries/likeshop/email_submissions with your brand_id.
| Parameter | Description |
|---|---|
brand_id (REQUIRED) | The Dash Social assigned ID of the brand. |
start_date | string or null. Default: null. Example: start_date=2019-12-01. Filter results starting from a date in UTC. |
end_date | string or null. Default: null. Example: end_date=2019-12-12. Filter results ending at a date in UTC. |
limit | integer [ 0 .. 5000 ]. Default: 2000. Number of results to return in a single response. |
offset | integer >= 0. Default: 0. The offset of the result to be returned. |