Documentation Index

Fetch the complete documentation index at: https://help.mozenda.com/llms.txt

Use this file to discover all available pages before exploring further.

Sequence.GetStepParameters

Prev Next

Description

Get the currently configured step parameters.

URL parameters

Name Required Type Description
SequenceStepID True numeric Unique identifier of the SequenceStep.
Note

A Sequence.GetStatus API call can be used to quickly get the SequenceStepID.

Responses

Name Type Description
Result string Success if the operation was successful.
StepParameter StepParameter StepParameter object.

Sample request

curl -X GET "https://api.mozenda.com/rest?WebServiceKey=XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX&Service=Mozenda10&Operation=Sequence.GetStepParameters&SequenceStepID=1010"

Sample responses

XML

<?xml version="1.0" encoding="utf-8"?>
<GetStepParametersResponse 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
	<Result>Success</Result>
	<StepParameterList>
	<StepParameter>
	<Name>URL</Name>
	<Value>http://mozendastaging.wpengine.com/api</Value>
	</StepParameter>
	</StepParameterList>
</GetStepParametersResponse>

JSON (add &ResponseFormat=JSON)

{
   "StepParameter":[
      {
         "Name":"URL",
         "Value":"http://mozendastaging.wpengine.com/api"
      }
   ],
   "JsonResult":{
      "Command":"Sequence.GetStepParameters",
      "AutoLoggedIn":false,
      "WebConsoleKey":"",
      "Result":"Success",
      "ErrorCode":"",
      "ErrorDescription":"",
      "ErrorList":[

      ],
      "ExecutionTime":{
         "Ticks":0,
         "Days":0,
         "Hours":0,
         "Milliseconds":0,
         "Minutes":0,
         "Seconds":0,
         "TotalDays":0,
         "TotalHours":0,
         "TotalMilliseconds":0,
         "TotalMinutes":0,
         "TotalSeconds":0
      }
   }
}


Enterprise Feature

Please contact your sales representative at +1 (801) 995-4550 or sales@mozenda.com for more information about enabling Sequences on your account.