Skip to main content
POST
/
api
/
integrations
/
sandbox
/
events
/
fire
Fire Sandbox Event
curl --request POST \
  --url https://mm-midmarket-integrations-api-preview.azurewebsites.net/api/integrations/sandbox/events/fire \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "eventType": "asset.processing.completed",
  "submissionId": "550e8400-e29b-41d4-a716-446655440000"
}
'
{
  "dispatched": 123
}

Authorizations

X-API-Key
string
header
default:sk_live_your_api_key_here
required

Workspace-scoped API key. Format: sk_live_{64 hex chars}

Body

application/json

Request model for firing a synthetic sandbox webhook event.

eventType
enum<string>
required

The webhook event type to fire.

Available options:
asset.processing.completed,
asset.processing.failed
submissionId
string<uuid>
required

Submission UUID to embed in the event payload.

errorMessage
string | null

Error message forwarded to subscribers for 'asset.processing.failed' events. Defaults to 'Sandbox simulated failure' when omitted.

Response

Successful Response

Response model for a fired sandbox event.

dispatched
integer
required

Number of webhook subscriptions notified.