List the webhook delivery items of an app

GET /apps/{app-slug}/outgoing-webhooks/{app-webhook-slug}/delivery-items

List all the delivery items of an outgoing webhook of a Bitrise application

Path parameters

  • app-slug string Required

    App slug

  • app-webhook-slug string Required

    App webhook slug

Query parameters

  • next string

    Slug of the first delivery item in the response

  • limit integer

    Max number of elements per page (default: 50)

    Maximum value is 50.

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
      • request_headers string
      • request_payload string
      • request_url string
      • response_body string
      • response_headers string
      • response_http_status integer
      • response_seconds integer
      • slug string
      • updated_at string
  • 400

    Bad Request

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

    Unauthorized

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

    Internal Server Error

    Hide response attribute Show response attribute object
    • message string
GET /apps/{app-slug}/outgoing-webhooks/{app-webhook-slug}/delivery-items
curl \
 --request GET 'https://api.bitrise.io/v0.1/apps/{app-slug}/outgoing-webhooks/{app-webhook-slug}/delivery-items' \
 --header "Authorization: $API_KEY"
Response examples (200)
{
  "data": {
    "created_at": "string",
    "request_headers": "string",
    "request_payload": "string",
    "request_url": "string",
    "response_body": "string",
    "response_headers": "string",
    "response_http_status": 42,
    "response_seconds": 42,
    "slug": "string",
    "updated_at": "string"
  }
}
Response examples (400)
{
  "message": "string"
}
Response examples (401)
{
  "message": "string"
}
Response examples (500)
{
  "message": "string"
}