Get details for a specific webhook.
Parameters
Output
Encoding
application/jsonwebhook
refplace.stream.server.defs#webhook
Required
No description available.
Errors
WebhookNotFound
The specified webhook was not found. Unauthorized
The authenticated user does not have access to this webhook. Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "WebhookNotFound",
"description": "The specified webhook was not found."
},
{
"name": "Unauthorized",
"description": "The authenticated user does not have access to this webhook."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"webhook"
],
"properties": {
"webhook": {
"ref": "place.stream.server.defs#webhook",
"type": "ref"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"id"
],
"properties": {
"id": {
"type": "string",
"description": "The ID of the webhook to retrieve."
}
}
},
"description": "Get details for a specific webhook."
}