List the outgoing webhooks of an app

GET /apps/{app-slug}/outgoing-webhooks

List all the outgoing webhooks registered for a specified Bitrise app. This returns all the relevant data of the webhook, including the slug of the webhook and its URL.

Path parameters

Query parameters

  • next string

    Slug of the first webhook in the response

  • limit integer

    Max number of elements per page (default: 50)

    Maximum value is 50.

Responses

  • OK

    Hide response attributes Show response attributes object
    • data array[object]
      Hide data attributes Show data attributes object
    • paging object

      pagination

      Additional properties are allowed.

      Hide paging attributes Show paging attributes object
      • next string

        Next is the "anchor" for pagination. This value should be passed to the same endpoint to get the next page. Empty/not included if there's no "next" page. Stop paging when there's no "Next" item in the response!

      • PageItemLimit - per-page item count. A given page might include less items if there's not enough items. This value is the "max item count per page".

      • TotalItemCount - total item count, through "all pages"

  • Bad Request

    Hide response attribute Show response attribute object
  • Unauthorized

    Hide response attribute Show response attribute object
  • Internal Server Error

    Hide response attribute Show response attribute object
GET /apps/{app-slug}/outgoing-webhooks
curl \
 --request GET 'https://api.bitrise.io/v0.1/apps/{app-slug}/outgoing-webhooks' \
 --header "Authorization: $API_KEY"
Response examples (200)
{
  "data": [
    {
      "created_at": "string",
      "events": [
        "string"
      ],
      "headers": {},
      "registered_by_addon": true,
      "slug": "string",
      "updated_at": "string",
      "url": "string"
    }
  ],
  "paging": {
    "next": "string",
    "page_item_limit": 42,
    "total_item_count": 42
  }
}
Response examples (400)
{
  "message": "string"
}
Response examples (401)
{
  "message": "string"
}
Response examples (500)
{
  "message": "string"
}