GET v3/standardcampaigns/{standardCampaignId}/sends/{standardCampaignSendId}/events/{eventType}

https://api.questline.com/v3/standardcampaigns/{standardCampaignId}/sends/{standardCampaignSendId}/events/{eventType}

Gets a list of events for a standard campaign send.

Request Information

URI Parameters

Name Description Type Additional Info
standardCampaignId The ID of the standard campaign. globally unique identifier Required
standardCampaignSendId The ID of the standard campaign send. globally unique identifier Required
eventType The event type of the events to return. EventType Required

Body Parameters

None.

Filters

Name Description Usage
date Filters the request by date. GET v3/standardcampaigns/{standardCampaignId}/sends/{standardCampaignSendId}/events/{eventType}?filter=date~{operator}~{value}
subscriberId Filters the request by subscriber ID. GET v3/standardcampaigns/{standardCampaignId}/sends/{standardCampaignSendId}/events/{eventType}?filter=subscriberid~{operator}~{value}

Paging

Name Description Usage
index The index to retrieve when requesting paged results. GET v3/standardcampaigns/{standardCampaignId}/sends/{standardCampaignSendId}/events/{eventType}?page=index~{value}
size The size of the page when requesting paged results. GET v3/standardcampaigns/{standardCampaignId}/sends/{standardCampaignSendId}/events/{eventType}?page=size~{value}

Response Information

Resource Description

GetStandardCampaignSendEventsResponseV3
Name Description Type Additional Info
StandardCampaignSendEvents The list of events. Collection of StandardCampaignEventV3 None.
NextPageUrl The URL of the next page of data for the list. string None.
PageIndex The index of the requested page. integer None.
PageSize The size of the requested page. integer None.
TotalPages The total number of pages, based on total results and page size. integer None.
TotalResults The total number of results. integer None.
Error The response error, if any. ResponseErrorV3 None.

Response Formats

application/json, text/json

Sample:

{
  "StandardCampaignSendEvents": [
    {
      "StandardCampaignId": "58d30b6d-235e-49b6-ac1f-79d43e860fb4",
      "StandardCampaignSendId": "56d9e059-d08b-4073-8b5d-fcdda562c24c",
      "Date": "2024-05-04T13:10:51.0140443+00:00",
      "EventGuid": "45e5ef78-a1d6-4d14-b3c9-93bd1fb994d3",
      "EventType": "sample string 3",
      "SubscriberId": "44d7f501-0a9c-4c99-8447-22a1cd82d993",
      "Target": "sample string 5",
      "Data": "sample string 6"
    },
    {
      "StandardCampaignId": "58d30b6d-235e-49b6-ac1f-79d43e860fb4",
      "StandardCampaignSendId": "56d9e059-d08b-4073-8b5d-fcdda562c24c",
      "Date": "2024-05-04T13:10:51.0140443+00:00",
      "EventGuid": "45e5ef78-a1d6-4d14-b3c9-93bd1fb994d3",
      "EventType": "sample string 3",
      "SubscriberId": "44d7f501-0a9c-4c99-8447-22a1cd82d993",
      "Target": "sample string 5",
      "Data": "sample string 6"
    }
  ],
  "NextPageUrl": "sample string 1",
  "PageIndex": 1,
  "PageSize": 1,
  "TotalPages": 1,
  "TotalResults": 1,
  "Error": {
    "ErrorId": 1,
    "ErrorMessage": "sample string 1"
  }
}

text/javascript, application/javascript, application/json-p

Sample:

/**/ typeof  === 'function' && ({"StandardCampaignSendEvents":[{"StandardCampaignId":"58d30b6d-235e-49b6-ac1f-79d43e860fb4","StandardCampaignSendId":"56d9e059-d08b-4073-8b5d-fcdda562c24c","Date":"2024-05-04T13:10:51.0140443+00:00","EventGuid":"45e5ef78-a1d6-4d14-b3c9-93bd1fb994d3","EventType":"sample string 3","SubscriberId":"44d7f501-0a9c-4c99-8447-22a1cd82d993","Target":"sample string 5","Data":"sample string 6"},{"StandardCampaignId":"58d30b6d-235e-49b6-ac1f-79d43e860fb4","StandardCampaignSendId":"56d9e059-d08b-4073-8b5d-fcdda562c24c","Date":"2024-05-04T13:10:51.0140443+00:00","EventGuid":"45e5ef78-a1d6-4d14-b3c9-93bd1fb994d3","EventType":"sample string 3","SubscriberId":"44d7f501-0a9c-4c99-8447-22a1cd82d993","Target":"sample string 5","Data":"sample string 6"}],"NextPageUrl":"sample string 1","PageIndex":1,"PageSize":1,"TotalPages":1,"TotalResults":1,"Error":{"ErrorId":1,"ErrorMessage":"sample string 1"}});