Get Sequences

This endpoint returns a JSON array of all sequences assigned to the specifed contact

URL:

https://vortext.ca/vapi/1.0/

Method:

POST

Header Parameters

Authorization Basic [your API key]
(The API key can be found in the My Accouny area of the vorText App)
Action getSequences

JSON Parameters:

* = Required parameters

Parameter Value
id The Contact ID of the user that owns the sequence(s)
rowsPerPage The total number of rows to return with the result
currentPage The current page to start on

This option s used to return a JSON .

Example Request
POST https://vortext.ca/vapi/1.0/
-H "Authorization: Basic [your API key]"
-H "Action: getSequences"
-D { "id": "12334567","rowsPerPage":"10", "currentPage:"1" }
			

Response:

{ "morePages":"Yes or No","nextpage":"2",sequences":[ { "Name":"Test Enrollment", "ID":"146", "tag":"Lead" },
{ "Name":"Prospects", "ID":"147", "tag":"Prospect" } ]}