List Webhooks

Request

GET /v2/webhooks HTTP/1.1
Authorization: Bearer oauth_token

Response

HTTP/1.1 200 OK
Content-Type: application/hal+json

{
  "_embedded" : {
    "webhooks" : [ {
      "id" : 10,
      "url" : "http://bad-url.com",
      "state" : "enabled",
      "events" : [ "convo.assigned" ],
      "notification" : false,
      "payloadVersion" : "V2",
      "label" : "cool webhook",
      "_links" : {
        "self" : {
          "href" : "..."
        }
      }
    } ]
  },
  "_links" : {
    "self" : {
      "href" : "..."
    },
    "first" : {
      "href" : "..."
    },
    "last" : {
      "href" : "..."
    },
    "page" : {
      "href" : "...",
      "templated" : true
    }
  },
  "page" : {
    "size" : 50,
    "totalElements" : 1,
    "totalPages" : 1,
    "number" : 1
  }
}

Response fields

Path Type Description
_embedded.webhooks Array List of webhooks