Get webhooks
GET/webhooks
Return a list of webhooks; each webhook's id can be provided to an external service, allowing data to be sent, received, and processed via that webhook
Request
Query Parameters
siteId string
Site Identifier
next string
Next page of results token
limit string
Limit Results
Default value:
10
Responses
- 200
200 OK
Response Headers
Access-Control-Allow-Origin
string
Access-Control-Allow-Methods
string
Access-Control-Allow-Headers
string
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
next string
Next page of results token
webhooks
object[]
List of webhooks
siteId string
Site Identifier
name string
Webhook name
url string
Webhook url
insertedDate string
Inserted Timestamp
webhookId string
Webhook Identifier
userId string
User who added document
enabled string
Is webhook enabled
ttl string
Webhook time to live (expiry in seconds)
{
"next": "string",
"webhooks": [
{
"siteId": "string",
"name": "string",
"url": "string",
"insertedDate": "string",
"webhookId": "string",
"userId": "string",
"enabled": "string",
"ttl": "string"
}
]
}
Loading...