This post is also available in:
If you want to create automatic reports in your internal CRM system, you can gather data from the Samba dashboard via API.
Please ask us for the API key via email.
GET
https://api.samba.ai/shop/sambaId/dashboard/json?from=YYYY-MM-DDThh:mm:ssTZD
&to=YYYY-MM-DDThh:mm:ssTZD
header: X-Api-Key: your-api-key
sambaId
– Samba ID of your e-shopyour-api-key
– Samba API key for your e-shopfrom, to
- Complete date in YYYY-MM-DDThh:mm:ssTZD format (ISO8601) or UTC timestamp (milliseconds since 1970-01-01).
- When providing only date, time is set to 00:00 at Europe/Prague timezone.
- You may provide time and timezone, e.g.
"from": "2016-09-01T05:00+0200"
,"from": "2016-09-01T12:00Z"
. - To use default time (midnight), just provide timezone info after empty date/time delimiter e.g.
"2016-09-01T-04"
for EDT midnight.
RESPONSE
- JSON format (application/json)
- Results are grouped by the type label:
internal
– One-off email campaignsexternal
– One-off email campaigns – External campaignsfmcg
– Repeated orders triggerzsv
– Shopping intention triggercart
– Abandoned cart triggerapi
– API triggerflow
– Flow campaignspush
– One-off push campaignssms
– One-off SMS campaigns
- Each type can include following metrics:
time
– when the campaign was senttimestamp
– when the campaign was sentname
– name of the campaignitemName
– name of the campaign item (if available)- email messages (type internal, external, fmcg, zsv, cart, api, flow/email)
total
– total size of the audience to be targetedsent
– number of sent messagesdelivered
– number of delivered messages (can be set automatically to 0)unsubscribed
– number of unsubscribes due to this campaignbounced
– soft bouncesdropped
– hard bouncescomplained
– marked as spamopened
– how many messages were openclicked
– how many messages were clicked-throughinteracted
– for Samba.ai attribution model purposesdeliveryRate
–delivered/sent
openRate
–opened/sent
clickThroughRate
–clicked/sent
unsubscribeRate
–unsubscribed/sent
utm_campaign
utm_source
utm_medium
custom_query_parameters
orders
– number of attributed orders according to set Conversion Analysis Methodrevenue
– sum of the revenue according to set Conversion Analysis MethodaverageOrderValue
–revenue/orders
revenuePerEmail
–revenue/sent
conversionRateOverClicks
–orders/clicked
conversionRateOverInteractions
–orders/interacted
- push messages (type push, flow/push)
pushAudience
– total size of the audience to be targetedpushSent
– number of sent messagespushReceived
– number of received messagespushThrottled
– number of throttled messages (already recently targeted customers)pushFailed
– number of failed messagespushClicked
– how many messages were clicked-throughpushClosed
– how many messages were closedpushOrders
– number of attributed orders according to set Conversion Analysis MethodpushRevenue
– sum of the revenue according to set Conversion Analysis MethodpushAverageOrderValue
–pushRevenue
/pushOrders
pushConversionRateOverClicks
–pushOrders
/pushClicked
pushConversionRateOverInteractions
–pushOrders
/pushClicked
pushUtmCampaign
pushUtmMedium
pushUtmSource
- SMS messages
smsAudience
– total size of the audience to be targetedsmsSent
– number of sent messagessmsThrottled
– number of throttled messages (already recently targeted customers)smsFailed
– number of failed messages
EXAMPLE
curl -s -H "X-Api-Key: your-api-key" 'https://api.yottly.com/shop/123456789/dashboard/json?from=1735739438000&to=1736779840000' | jq -C . | less -RS