Welcome to the GovWorx Beta API Documentation! Please reach out to support if you are interested in gaining access to the GovWorx API.
cURL
curl --request POST \ --url https://realtime.govworx.net/realtime/v1/webhook/call \ --header 'Content-Type: application/json' \ --data ' { "event_type": "<string>", "auth_token": "<string>", "target_url": "<string>" } '
{ "webhook_id": "<string>", "error": true, "error_message": "<string>" }
Register a webhook handler URL to receive notifications about call status events.
Information needed to register a webhook handler.
Events to register for. Pipe delimited list, single value, or * for all events.
AuthToken that will be sent to the handler with all payloads in the HTTP Authorization header.
URL to send the AuthToken and payload to for matching events.
Webhook registered successfully
Result of attempted webhook registration.
Unique ID for this webhook registration.
True if the registration failed, false otherwise.
Details about registration failure, or empty if no error.