List webhooks for the authenticated user.
Parameters
Output
Encoding
application/jsoncursor
string
Optional
A cursor for pagination, if there are more results.
webhooks
array
Required
No description available.
Errors
InvalidCursor
The provided cursor is invalid or expired. Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "InvalidCursor",
"description": "The provided cursor is invalid or expired."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"webhooks"
],
"properties": {
"cursor": {
"type": "string",
"description": "A cursor for pagination, if there are more results."
},
"webhooks": {
"type": "array",
"items": {
"ref": "place.stream.server.defs#webhook",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"event": {
"enum": [
"chat",
"livestream",
"follow",
"mention"
],
"type": "string",
"description": "Filter webhooks that handle this event type."
},
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "The number of webhooks to return."
},
"active": {
"type": "boolean",
"description": "Filter webhooks by active status."
},
"cursor": {
"type": "string",
"description": "An optional cursor for pagination."
}
}
},
"description": "List webhooks for the authenticated user."
}