Receive asynchronous events from Subscription API

Receive asynchronous events

SecurityBearerAuth or ApiKeyAuth
Request
Request Body schema: application/json

Event from a Record or Data Model

subscriberId
string

Subscriber's Unique identifier as a SUID

triggerId
string

Trigger's Unique identifier as a SUID

offset
number

Position of the event in the subscription Queue source

creationDate
string <date-time>

Date of the event creation

object (signalEventDTO)
Responses
400

Bad Request.

401

Unauthorized access.

403

Forbidden.

429

Too Many Requests.

500

Internal Server Error.

503

Service Unavailable.

2XX

Event received

post/api/events
Request samples
application/json
{
  • "subscriberId": "abc-123-bad-123",
  • "triggerId": "abc-123-bad-123",
  • "offset": 1234,
  • "creationDate": "2023-07-21T17:32:28Z",
  • "event": {
    }
}
Response samples
application/problem+json
{
  • "title": "string",
  • "status": 0,
  • "detail": "string",
  • "errorCode": "string",
  • "type": "string"
}