Webhook endpoints receive event notifications from StellarTools when things happen in your account. See the Webhooks guide for the full list of event types and how to handle deliveries.Documentation Index
Fetch the complete documentation index at: https://docs.stellartools.dev/llms.txt
Use this file to discover all available pages before exploring further.
The webhook object
Unique identifier. Prefixed with
wh_.Always
"webhook".A label for this endpoint.
The HTTPS URL that receives event POSTs.
List of event types this endpoint is subscribed to.
When
true, deliveries to this endpoint are suspended.Optional description.
ISO 8601 timestamp.
ISO 8601 timestamp.
Create a webhook
POST /webhooks
Body
Label for this endpoint.
The HTTPS URL to send events to.
Event types to subscribe to. At least one required. See event types.
Optional description.
Retrieve a webhook
GET /webhooks/{id}
Update a webhook
PUT /webhooks/{id}
Body
New label.
New destination URL.
Updated event type list. At least one required.
Set to
true to pause deliveries, false to resume.New description.
Delete a webhook
DELETE /webhooks/{id}

