Delete an outgoing webhook of an app

DELETE /apps/{app-slug}/outgoing-webhooks/{app-webhook-slug}

Delete an existing outgoing webhook for a specified Bitrise app.

Path parameters

Responses

DELETE /apps/{app-slug}/outgoing-webhooks/{app-webhook-slug}
curl \
 --request DELETE 'https://api.bitrise.io/v0.1/apps/{app-slug}/outgoing-webhooks/{app-webhook-slug}' \
 --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"
  }
}
Response examples (400)
{
  "message": "string"
}
Response examples (401)
{
  "message": "string"
}
Response examples (404)
{
  "message": "string"
}
Response examples (500)
{
  "message": "string"
}