POST
/
entities
/
asset
/
{asset_id}
/
callback
/
{event_id}
curl --request POST \
  --url http://localhost:8002/entities/asset/{asset_id}/callback/{event_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "timestamp": "2023-11-07T05:31:56Z",
  "status": "RECEIVED"
}'
"<any>"

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

asset_id
string
required
event_id
string
required

Query Parameters

asset_id_is_external
boolean
default:false

Body

application/json

Response for an asset event status update.

timestamp
string
required

Timestamp for the response (UTC)

status
enum<string>
required

Status values for asset event handling.

  • RECEIVED: Event was received by the system
  • ACCEPTED: Event was accepted for processing
  • REJECTED: Event was rejected (invalid or not applicable)
  • FAILED: Event processing failed
  • EXECUTED: Event was successfully executed
Available options:
RECEIVED,
ACCEPTED,
REJECTED,
FAILED,
EXECUTED

Response

200
application/json
Status update successfully recorded

The response is of type any.