Unique identifier for the organization.
Webhook endpoints owned by the organization.Show webhook endpoint details
curl --request POST \
--url https://api.0xkey.io/public/v1/query/list_webhook_endpoints \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header 'X-Stamp: <string> (see Authorizations)' \
--data '{
"organizationId": "<organization-id>"
}'
{
"webhookEndpoints": [
{
"endpointId": "<endpoint-id>",
"organizationId": "<organization-id>",
"url": "https://example.com/webhooks/0xkey",
"name": "Production activity webhook",
"isActive": true,
"subscriptions": [
{
"eventType": "ACTIVITY_UPDATES",
"filtersJson": "",
"isActive": true
}
]
}
]
}