List the outgoing webhooks of an app
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
-
app-slug
string Required App slug
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"
}