Skip to main content
GET
/
api
/
v2
/
lists
/
{ID}
/
webhooks
cURL
curl "https://app.tatango.com/api/v2/lists/ID/webhooks" -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,
  "webhooks": [
    {
      "callback_url": "http://localhost/dev/null",
      "created_at": "2016-09-07T14:11:13-07:00",
      "enabled": true,
      "id": 6,
      "list_id": 31,
      "message_sent": false,
      "subscribe": true,
      "unsubscribe": false,
      "updated_at": "2016-09-07T14:11:13-07:00"
    }
  ]
}

Request URL

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

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

The ID of the list

Response

Successful response

status
string
Example:

"OK"

per_page
integer
Example:

10

count
integer
Example:

1

page
integer
Example:

1

pages_count
integer
Example:

1

webhooks
object[]