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