POST
/
v1
/
session
/
agent
/
message-human-and-get-response
curl --request POST \
  --url https://api.agentreach.ai/v1/session/agent/message-human-and-get-response \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "sessionId": "<string>",
  "message": "<string>"
}'
{
  "shouldRetry": true,
  "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
Message details to send to the human.
sessionId
string
required

Unique identifier for the session.

message
string
required

Message content to send to the human.

Response

200
application/json
Message sent successfully or response received.
shouldRetry
boolean
required

Indicates if the client should retry the request to get the human's response.

id
string

Unique identifier for the message.

sessionId
string

Session identifier.

message
string

Message content (agent's message when shouldRetry is true, human's response when shouldRetry is false).

createdAt
string

Timestamp of message creation.

fromAgent
boolean

Indicates if the message is from the agent (true) or human (false).