Unique identifier for a given Organization.
webhookEndpoints field
curl --request POST \
--url https://api.turnkey.com/public/v1/query/list_webhook_endpoints \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header "X-Stamp: <string> (see Authorizations)" \
--data '{
"organizationId": "<string>"
}'
{
"webhookEndpoints": [
{
"endpointId": "<string>",
"organizationId": "<string>",
"url": "<string>",
"name": "<string>",
"isActive": "<boolean>",
"subscriptions": [
{
"eventType": "<string>",
"filtersJson": "<string>",
"isActive": "<boolean>"
}
]
}
]
}
List webhook endpoints within an organization.
Show webhookEndpoints details
curl --request POST \
--url https://api.turnkey.com/public/v1/query/list_webhook_endpoints \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header "X-Stamp: <string> (see Authorizations)" \
--data '{
"organizationId": "<string>"
}'
{
"webhookEndpoints": [
{
"endpointId": "<string>",
"organizationId": "<string>",
"url": "<string>",
"name": "<string>",
"isActive": "<boolean>",
"subscriptions": [
{
"eventType": "<string>",
"filtersJson": "<string>",
"isActive": "<boolean>"
}
]
}
]
}
Was this page helpful?