Get all webhooks
GET/v3/webhooks
Get all webhooks
Request
Query Parameters
limit number
Possible values: >= 1
and <= 100
Default value: 50
Maximum results per page
page number
Possible values: >= 1
Page number in pagination
survey_id number
Id of Survey
Responses
- 200
Successful
- */*
- Schema
- Example (from schema)
Schema
Array [
Array [
]
]
has_next_page boolean
data
object[]
id number
name string
Possible values: <= 255 characters
url string
Possible values: <= 1000 characters
eventType string
Possible values: <= 255 characters
description string
Possible values: <= 1000 characters
objectType string
Possible values: <= 255 characters
httpMethod string
Possible values: <= 255 characters
headers
object[]
key string
Possible values: <= 255 characters
value string
Possible values: <= 255 characters
properties
object
payload string
includePartialSubmission boolean
disabled boolean
{
"has_next_page": true,
"data": [
{
"id": 1,
"name": "Sample webhook",
"url": "https://webhook.com/data",
"eventType": "submission_completed",
"description": "This is sample webhook",
"objectType": "survey",
"httpMethod": "POST",
"headers": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"properties": {
"payload": "{\n\n\"key1\": \"value1\",\n\"key1\":\"value1\"\n\n}",
"includePartialSubmission": true
},
"disabled": false
}
]
}
Loading...