Skip to content

Follows

List all follows

The following method allows you to retrieve a list of all follow mes in your unit.

URL

/api/v2/follows/list

Supported Parameters

There are no supported parameters for this method.

Example JSON

{
    "status":"success",
    "time":0.01,
    "flags":{},
    "data":
    [
        {
            "id":232,
            "name":"Test",
            "created_at":"2015-08-12T13:38:19.000Z",
            "updated_at":"2015-09-03T09:21:23.000Z",
            "noanswer_destination":
                {
                    "type":"Follow",
                    "object":
                        {
                            "id":232,
                            "name":"Test"
                        }
                }
        }
    ]
}

Get follow properties

This method allows you to retrieve information about a particular follow on your account:

URL

/api/v2/follows/info

Supported Parameters

  • id - the ID of the follow me you wish to view (required)

Example JSON

{
    "status":"success",
    "time":0.01,
    "flags":{},
    "data":
        {
            "id":232,
            "name":"Test",
            "created_at":"2015-08-12T13:38:19.000Z",
            "updated_at":"2015-09-03T09:21:23.000Z",
            "noanswer_destination":
                {
                    "type":"Follow",
                    "object":
                        {
                            "id":232,
                            "name":"Test"
                        }
                }
        }
}