Total Blocked Contacts

This request returns the total count of blocked contacts in the user's profile.

Path Variables

The URL of this request includes a path variable with the group id of the blocked group. The group id of this group is always fixed to the value of 1.

HTTP Request

URLMethodDescription
https://app.tellody.com/CampaignCloud/Group/1/count GET Get blocked contacts

Sample Request

PythonOther

#Retrieving the XSRF Token needed for Session
pingResponse = my_session.get("https://app.tellody.com/CampaignCloud/RememberMeController/ping")

#Import the X-XSRF-Token returned from RememberMeController/ping into the request headers
xsrfToken = pingResponse.headers.get("X-XSRF-TOKEN")

#HTTP request header
header = {"Content-Type" : "application/json", "X-XSRF-TOKEN" : xsrfToken}
url="https://app.tellody.com/CampaignCloud/Group/1/count"
response = my_session.get(url,headers=header).json()
print(json.dumps(response,ensure_ascii=False))

Response

The response is an integer representing the total count of blocked contacts in the user's profile.

Errors

In case of an error, information may be derived by the HTTP Status in the result of each request (e.g. HTTP 400 – Bad Request).

Back to Top