- Create Webhook Configuration
List Webhook Subscribers
Delete Webhook Configuration
Update Webhook Configuration
Create Webhook Configurat...
Creates a webhook configuration for the organization to receive event notifications via HTTP callbacks.
Security
ApiKey
- Mock serverhttps://developer.getparallax.com/_mock/api-documentation/swagger/v1/webhook-subscribers
- Production Serverhttps://api.getparallax.com/v1/webhook-subscribers
- application/json-patch+json
- application/json
curl -i -X POST \
https://developer.getparallax.com/_mock/api-documentation/swagger/v1/webhook-subscribers \
-H 'Content-Type: application/json-patch+json' \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-d '{
"callback_url": "string",
"active": true
}'Created
The HTTPS URL endpoint where webhook event notifications will be sent. Must be a valid HTTPS URL.
The secret key used to sign webhook payloads for verification. This will be generated when the Webhook Subscriber is created and returned in the response body.
The date and time when the webhook configuration was initially created in Parallax.
Response
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "callback_url": "string", "secret": "string", "active": true, "created_date": "2019-08-24T14:15:22Z", "modified_date": "2019-08-24T14:15:22Z" }