POST
/
v1
/
session
/
client
/
next
curl --request POST \
  --url https://api.agentreach.ai/v1/session/client/next \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "sessionId": "<string>"
}'
{
  "nextStep": "session-completed",
  "id": "<string>",
  "sessionId": "<string>",
  "message": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "fromAgent": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
Session ID for which to fetch the next step.
sessionId
string
required

Unique identifier for the session.

Response

200
application/json
Next step retrieved successfully.
nextStep
enum<string>
required

Indicates the next action to be taken in the session

Available options:
session-completed,
send-message-to-human,
message-human-and-get-response
id
string

Unique identifier for the message (included when nextStep is not session-completed)

sessionId
string

Unique identifier for the session (included when nextStep is not session-completed)

message
string

Content of the message (included when nextStep is not session-completed)

createdAt
string

Timestamp when the message was created (included when nextStep is not session-completed)

fromAgent
boolean

Indicates if the message is from the agent (included when nextStep is not session-completed)