Get a specific delivery item of a webhook
Get the specified delivery item of an outgoing webhook of a Bitrise application
Path parameters
-
app-slug
string Required App slug
-
app-webhook-slug
string Required App webhook slug
-
webhook-delivery-item-slug
string Required Webhook delivery item slug
GET
/apps/{app-slug}/outgoing-webhooks/{app-webhook-slug}/delivery-items/{webhook-delivery-item-slug}
curl \
--request GET 'https://api.bitrise.io/v0.1/apps/{app-slug}/outgoing-webhooks/{app-webhook-slug}/delivery-items/{webhook-delivery-item-slug}' \
--header "Authorization: $API_KEY"
Response examples (200)
{
"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"
}