Queues
Ticket
Ticket Link
Ticket Message
webhooks
Get webhook by ID
GET
/
webhooks
/
{id}
Copy
curl --request GET \
--url https://core.api.ravennahq.com/api/webhooks/{id} \
--header 'x-ravenna-api-token: <api-key>'
Copy
{
"id": "<string>",
"name": "<string>",
"url": "<string>",
"secret": "<string>",
"active": true,
"eventTypes": [
"Ticket"
],
"workspaceId": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
Authorizations
Path Parameters
Response
200
application/json
Successful response
The response is of type object
.
Copy
curl --request GET \
--url https://core.api.ravennahq.com/api/webhooks/{id} \
--header 'x-ravenna-api-token: <api-key>'
Copy
{
"id": "<string>",
"name": "<string>",
"url": "<string>",
"secret": "<string>",
"active": true,
"eventTypes": [
"Ticket"
],
"workspaceId": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.