curl --request PUT \
--url https://apix.us.amity.co/api/v3/messages/{messageId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"data": {
"text": "<string>"
},
"metadata": {},
"tags": [
"<string>"
],
"mentionees": [
{
"type": "user",
"userIds": [
"<string>"
]
}
]
}
'curl --request PUT \
--url https://apix.us.amity.co/api/v3/messages/{messageId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"data": {
"text": "<string>"
},
"metadata": {},
"tags": [
"<string>"
],
"mentionees": [
{
"type": "user",
"userIds": [
"<string>"
]
}
]
}
'Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
150Information of message to be updated