POST
/
v3
/
bots
/
{botId}
/
results
/
{resultId}
/
answers
Create Answers
curl --request POST \
  --url http://127.0.0.1:3333/v3/bots/{botId}/results/{resultId}/answers \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "blockId": "<string>",
    "content": "<string>",
    "groupId": "<string>",
    "variableId": "<string>",
    "attachedFileUrls": [
      "<string>"
    ]
  }
]
'
{
  "count": 123
}

Authorizations

Authorization
string
header
required

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

Path Parameters

botId
string
required
resultId
string
required

Body

application/json
blockId
string
required
content
string
required
groupId
string
variableId
string
attachedFileUrls
string[]

Response

200 - application/json

Default Response

count
number
required