curl --location --request POST 'https://apigw.klinkcx.com/api/v1/comments/rooms/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"text": "Hey {0}, can you review this with {1} when you have a moment?",
"mentions": [
{
"index": 0,
"userId": "123e4567-e89b-12d3-a456-426614174000"
},
{
"index": 1,
"userId": "987fcdeb-51a2-43d7-9012-349857218934"
}
]
}'{
"requestId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"data": {
"id": "comment-uuid-002",
"roomId": "room-uuid-abc",
"text": "Hey @John Doe, can you review this with @Jane Smith?",
"type": "comment",
"mentions": [
{
"userId": "user-uuid-456",
"name": "John Doe"
},
{
"userId": "user-uuid-789",
"name": "Jane Smith"
}
],
"sender": {
"id": "user-uuid-123",
"name": "Current Auth User"
},
"createdAt": "2026-02-27T12:20:00.000000Z"
}
}