Skip to main content
GET
/
api
/
v2
/
lists
/
{ID}
/
subscribers
/
unsubscribed
cURL
curl "https://app.tatango.com/api/v2/lists/<ID>/subscribers/unsubscribed" -X GET \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -u [email protected]:my_api_key \
  -H "Host: example.org" \
  -H "Cookie: "
{
  "status": "OK",
  "per_page": 10,
  "count": 1,
  "page": 1,
  "pages_count": 1,
  "phone_numbers": [
    "2145550816"
  ]
}

Request URL

GET https://app.tatango.com/api/v2/lists/{ID}/subscribers/unsubscribed

Authorizations

Authorization
string
header
required

Tatango authenticates API requests by validating an API key passed via HTTP Basic Authentication. Use your login email as the username and your API key as the password.

Path Parameters

ID
integer
required

ID of the list

Response

200 - application/json

Successful response

status
string
required

Status of the request ("OK" for successful requests)

Example:

"OK"

per_page
integer
required

Number of results per page

Example:

10

count
integer
required

Total number of unsubscribed phone numbers

Example:

1

page
integer
required

Current page number

Example:

1

pages_count
integer
required

Total number of pages available

Example:

1

phone_numbers
string[]
required

Array of unsubscribed phone numbers

Example:
["2145550816"]