PUT
/
v1
/
sessions
/
{id}
/
update-human-input
curl --request PUT \
  --url https://api.allyson.ai/v1/sessions/{id}/update-human-input \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "sessionId": "<string>",
  "humanInputResponse": [
    {
      "title": "<string>",
      "description": "<string>",
      "value": "<string>"
    }
  ],
  "messageIndex": 123
}'
{
  "message": "<string>",
  "updatedMessage": {}
}

Authorizations

x-api-key
string
header
required

Add your API key from app.allyson.ai/api to the x-api-key header.

Path Parameters

id
string
required

The ID of the session to update.

Body

application/json
sessionId
string
required

The ID of the session.

humanInputResponse
object[]
required
messageIndex
integer
required

The index of the message to update.

Response

200
application/json
Human input updated successfully
message
string
updatedMessage
object

The updated message object.