Read
POST api/v1/message/read
Note: To update the counts of messages read.
Header
Field
Type
Remarks
Authorization
String
Bearer ${unifiedAuthToken} , in which the unifiedAuthToken is returned by /api/v1/auth
Request Parameters
Field
Type
Remarks
channelUuid
String
the uuid of the group chat
total
int
the counts of messages read
Request Example
curl POST 'https://api.relationlabs.ai/api/v1/message/read' \
--header 'ApiKey: <ApiKey>' \
--header 'Authorization: bearer eyJhbG1ciOiJFUzI1NiJ9.eyJqdGkiOiI0MzdiN2EzZDEwMGY0ODVkOWVhMWUzZmZlOWE1NmEyZSIsImlzcyI6InJlbGF0aW9ubGFicy5haSIsImlhdCI6MTY2NTIxNTUzNSwic3ViIjoiZGhreXEtc3FhYWEtYWFhYWotc2d6M3EtY2FpIiwiZXhwIjoxNjY11ODIwMzM1fQ.rj7KKuIcgmvaIwZ63YHnXQ4jvvI-eR2Wo7k3YEyzM1uxo8j5ezCowKDpcW0u9zIuHPFqwD0-1XPWdPLR1d1HLFw' \
--header 'Content-Type: application/json' \
--data-raw '{
"channelUuid": "4f326124812c41448bc587bf6b2eaf42",
"total": 20
}'
Response Parameters
Field
Type
Remarks
code
String
the Return Code
desc
String
the Return Message
data
int
update result: 1-updated, others-update failure
Response Body
{
"code": "0",
"desc": "success",
"data": 1
}
Return Code
code
desc
Remarks
0
success
the flag for a successful request
Last updated