GET/webhooks.json

Get all Webhooks

Request Examples

Example Request

GET
/webhooks.json
curl --request GET \
     --url https://{site_name}.teamwork.com/tags.json

Responses

  • Code
    200
    Type
    object
    Schema
    Description
    200 Response

Examples

200 Response

application/json
{
  "webhooks": [
    {
      "event": "TASK.CREATED",
      "id": "34",
      "status": "ACTIVE",
      "url": "http://myserver.com/tw-webhooks/receiver.php",
      "validated": "1"
    },
    {
      "event": "TASK.UPDATED",
      "id": "32",
      "status": "ACTIVE",
      "url": "http://myserver.com/tw-webhooks/receiver.php",
      "validated": "1"
    }
  ],
  "STATUS": "OK"
}