GET v3/automatedcampaigns/{automatedCampaignId}/steps

https://api.questline.com/v3/automatedcampaigns/{automatedCampaignId}/steps

Gets a list of steps for an automated campaign.

Request Information

URI Parameters

Name Description Type Additional Info
automatedCampaignId The ID of the automated campaign. integer Required

Body Parameters

None.

Response Information

Resource Description

GetAutomatedCampaignStepsResponseV3
Name Description Type Additional Info
AutomatedCampaignSteps The list of automated campaign steps. Collection of AutomatedCampaignStepV3 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:

{
  "AutomatedCampaignSteps": [
    {
      "AutomatedCampaignStepId": 1,
      "AutomatedCampaignId": 2,
      "RunOrder": 3,
      "StepType": "sample string 4"
    },
    {
      "AutomatedCampaignStepId": 1,
      "AutomatedCampaignId": 2,
      "RunOrder": 3,
      "StepType": "sample string 4"
    }
  ],
  "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' && ({"AutomatedCampaignSteps":[{"AutomatedCampaignStepId":1,"AutomatedCampaignId":2,"RunOrder":3,"StepType":"sample string 4"},{"AutomatedCampaignStepId":1,"AutomatedCampaignId":2,"RunOrder":3,"StepType":"sample string 4"}],"NextPageUrl":"sample string 1","PageIndex":1,"PageSize":1,"TotalPages":1,"TotalResults":1,"Error":{"ErrorId":1,"ErrorMessage":"sample string 1"}});