API - Events

Description
These APIs are used to post the event to the started Interact Runtime session.
Post Event
This API call posts event to the Interact session.
POST/interact/v2/events/{sessionID}/{eventName}
Parameters
Parameters Description
sessionID Interact Runtime Session ID
eventName Event Name
Body Parameter
This is used to provide the post event command details.
Content-Type: application/json
{
  "parameters": [
    {
      "n": "string",
      "t": "string",
      "v": "string"
    }
  ]
}
Example Result
Content-Type: application/json
{
    "messages": null,
    "sessionId": "101",
    "version": "1.0.0",
    "statusCode": 0
}