Git Integration for Jira Cloud Documentation

Creating indexing triggers for a single repository

Create an indexing trigger for any individual repository. Use this with continuous integration services to trigger immediate reindexing.

Required Headers

Header Value
x-bbb-webhook-type push
Content-Type application/json

Optional Headers

Header Description
x-bbb-webhook-id Any string representing the request ID

 

Usage Examples

Basic request:

curl -H 'x-bbb-webhook-type: push' -H 'content-type: application/json' -X POST -d @payload.json https://webhook/url

Request with custom ID:

curl -H 'x-bbb-webhook-type: push' -H 'x-bbb-webhook-id: id-string' -H 'content-type: application/json' -X POST -d @payload.json https://webhook/url

 

Payload Format

Create a payload.json file with the repository origin:

{
    "origin": "repository-origin"
}

Last updated: December 2025

Have feedback about this article? Did we miss something? Let us know!
On this page