v1
latestOpenAPI 3.0.32026-08-0613775357.6 KBwebhooks
Create webhook
Creates a webhook that you can use to receive notifications about key events. Currently, webhooks are supported for the following events:
| Event type | Description |
|---|---|
| project.created | Fires when a new project is created |
| project.updated | Fires when a project is updated |
| time.entry.created | Fires when a new time entry is created |
| time.entry.updated | Fires when a time entry is updated |
| user.created | Fires when a new user is created |
| user.updated | Fires when a user is updated |
| assignment.created | Fires when a new assignment is created |
| assignment.updated | Fires when an assignment is updated |
post/webhooks
Request body
Example request
{
"url": "https://hooks.example.com/process_webhooks",
"event_type": "project.created"
}Response
The webhook was created successfully.
Example response
{
"id": 123456,
"url": "https://hooks.example.com/process_webhooks",
"status": "active",
"event_type": "project.created",
"organization_id": 1
}