Retrieve Specific Webhook
GET/api/1.0/org/:orgId/webhooks/:hookId
Retrieve Specific Webhook
Request
Path Parameters
orgId stringrequired
The Organization ID (UUID) for which you are querying.
hookId stringrequired
The Webhook ID (UUID) for which you are querying.
Responses
- 200
- 401
- 404
- 500
- 503
Success.
- application/json
- Schema
- Example (from schema)
- Example
Schema
any
{
"status": {
"code": 200,
"i18n_message": "response.ok",
"message": "ok"
},
"response": {
"id": "abc123"
},
"time_to_process": "1.1 seconds"
}
{
"status": {
"code": 200,
"i18n_message": "response.ok",
"message": "ok"
},
"response": {
"id": "abc123"
},
"time_to_process": "1.1 seconds"
}
This error will occur if calling user does not have access right for the API.
This error will occur if calling user does not have access right for the API.
A server error occurred. Check the logs for more details.
This error will occur if Design Center APIs are not enabled.
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L '/api/1.0/org/:orgId/webhooks/:hookId' \
-H 'Accept: application/json'
ResponseClear