Nurture API Read
Marcel Ursprung avatar
Written by Marcel Ursprung
Updated over a week ago

Return a list of nurture campaigns / autoresponders

Endpoint: /autoresponders
HTTP method: GETURL: https://e1.envoke.com/v1/autoresponders

Get a list of all account nurture campaigns / autoresponders.

NOTE: All examples below are formatted for readability, actual GET requests require URI encoding. Each example below also includes a cURL request. Make sure to change the API_ID and API_KEY with your values.

Return all nurture campaigns / autoresponders

https://e1.envoke.com/v1/autoresponders
curl -X GET -u API_ID:API_KEY "https://e1.envoke.com/v1/autoresponders"

Return type

Object with nurture id key / name value pairs
The key is the nurture id.
The value is the nurture name.

Nurture object key / value format example

{
   "123": "New purchase",
   "124": "New lead": ,
   "125": "Prospect series"
}
Did this answer your question?