Skip to main content
POST
/
webhooks
/
{id}
/
test
Fire a synthetic test event to the endpoint.
curl --request POST \
  --url https://api.novatrade24.com/v1/webhooks/{id}/test \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'Idempotency-Key: <idempotency-key>' \
  --data '
{
  "eventType": "compliance.status_changed",
  "data": {}
}
'
{
  "type": "<string>",
  "title": "<string>",
  "status": 123,
  "detail": "<string>",
  "instance": "<string>",
  "traceId": "<string>"
}

Authorizations

Authorization
string
header
required

OAuth 2.0 client_credentials grant via Keycloak service account. Clients are provisioned per IntegrationOrganization in the nt24-idp realm.

Headers

Idempotency-Key
string
required

Client-generated unique key (UUID recommended) for this write operation. Identical key + identical body within 24h returns the cached response. Identical key + different body returns 422.

Required string length: 1 - 255

Path Parameters

id
string
required

Body

application/json
eventType
enum<string>
required
Available options:
compliance.status_changed,
compliance.decision_made,
kyc.vies_check_failed,
kyc.verification_completed,
export_file.generated,
prospect.submitted,
self_service_invitation.used,
self_service_invitation.expired,
webhook.endpoint_auto_paused,
webhook.delivery_failed_terminal
data
object
required

Response

Test fire queued.