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

  • app-slug string Required

    App slug

  • app-webhook-slug string Required

    App webhook slug

Responses

  • 200

    OK

    Hide response attribute Show response attribute object
    • data object

      Additional properties are allowed.

      Hide data attributes Show data attributes object
      • created_at string
      • events array[string]
      • headers object

        Additional properties are allowed.

      • registered_by_addon boolean
      • slug string
      • updated_at string
      • url string
  • 400

    Bad Request

    Hide response attribute Show response attribute object
    • message string
  • 401

    Unauthorized

    Hide response attribute Show response attribute object
    • message string
  • 404

    Not Found

    Hide response attribute Show response attribute object
    • message string
  • 500

    Internal Server Error

    Hide response attribute Show response attribute object
    • message string
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"
}