Skip to main content
POST
/
webhooks
/
test
Send a test webhook
curl --request POST \
  --url https://api.lightspark.com/grid/2025-10-13/webhooks/test \
  --header 'Authorization: Basic <encoded-value>'
{
  "url": "https://api.mycompany.com/webhooks/uma",
  "response_status": 200,
  "response_body": "<string>"
}

Authorizations

Authorization
string
header
required

API token authentication using format <api token id>:<api client secret>

Response

Webhook delivered successfully

response_status
integer
required

The HTTP status code returned by the webhook endpoint

Example:

200

url
string<uri>

URL where the webhook was sent

Example:

"https://api.mycompany.com/webhooks/uma"

response_body
string

The raw body content returned by the webhook endpoint in response to the request

I