POST
/
v1
/
requests
/
{task_uid}
/
messages
curl --request POST \
  --url https://api.siit.io/v1/requests/{task_uid}/messages \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "body_text": "<string>",
  "sent_by_uid": "<string>",
  "attachments": [
    "<any>"
  ]
}'
{
  "result": {
    "uid": "<string>",
    "body_text": "<string>",
    "sender_type": "user",
    "sent_by_uid": "<string>",
    "submitted_from": "public_api",
    "attachments": [
      {
        "filename": "<string>",
        "url": "<string>"
      }
    ],
    "created_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

task_uid
string
required

The UID of the request

Body

application/json
body_text
string
required

Content of the comment

sent_by_uid
string | null

Optional UID of another user

attachments
any[] | null

Response

201
application/json
Request created
result
object