Webhook Job
Webhook Job
Section titled “Webhook Job”Make HTTP requests to external services.
Configuration
Section titled “Configuration”| Option | Description |
|---|---|
| URL | Endpoint URL (supports variables) |
| Method | GET, POST, PUT |
| Headers | Custom headers |
| Body | Request body (for POST/PUT) |
Example
Section titled “Example”Trigger a deployment service:
URL: https://api.example.com/deployMethod: POSTHeaders: Authorization: Bearer {{API_TOKEN}} Content-Type: application/jsonBody: { "app": "{{repositoryName}}", "version": "{{commitShort}}" }Use Cases
Section titled “Use Cases”- Trigger external deployments
- Notify third-party services
- Custom integrations
- API calls