Skip to main content

List Repo Web Hooks

Returns a paginated list of webhooks installed on this repository.

External Documentation

To learn more, visit the Bitbucket documentation.

Parameters

ParameterDescription
Repo SlugThis can either be the repository slug or the UUID of the repository,surrounded by curly-braces, for example: {repository UUID}.
Workspace SlugThis can either be the workspace ID (slug) or the workspace UUIDsurrounded by curly-braces, for example: {workspace UUID}.

Example Output

{
"next": "Link to the next page if it exists. The last page of a collection does not have this value. Use this link to navigate the result set and refrain from constructing your own URLs.",
"page": 0,
"pagelen": 0,
"previous": "Link to previous page if it exists. A collections first page does not have this value. This is an optional element that is not provided in all responses. Some result sets strictly support forward navigation and never provide previous links. Clients must anticipate that backwards navigation is not always available. Use this link to navigate the result set and refrain from constructing your own URLs.",
"size": 0,
"values": [
{
"active": false,
"created_at": "date-time",
"description": "A user-defined description of the webhook.",
"events": [
"string"
],
"subject": {
"type": "string"
},
"subject_type": "The type of entity, which is `repository` in the case of webhook subscriptions on repositories.",
"type": "string",
"url": "The URL events get delivered to.",
"uuid": "The webhook's id"
}
]
}

Workflow Library Example

List Repo Web Hooks with Bitbucket and Send Results Via Email

Workflow LibraryPreview this Workflow on desktop