Skip to main content
POST
/
v2
/
project
/
{projectID}
/
session
/
{sessionID}
/
event
Emit session event
curl --request POST \
  --url https://general-runtime.voiceflow.com/v2/project/{projectID}/session/{sessionID}/event \
  --header 'Content-Type: application/json' \
  --data '
{
  "action": {
    "type": "<string>",
    "payload": "<unknown>",
    "diagramID": "<string>",
    "time": 123
  }
}
'

Path Parameters

projectID
string
required

ID of the target Voiceflow project.

sessionID
string
required

Unique ID of the conversation session.

Body

application/json
action
object
required

The event to be sent to the active conversation.

Response

201 - undefined