provider Messages GET
/messages/{message_id}/seen @utdk/front
/messages/{message_id}/seen Get message seen status
Get the seen receipts for the given message. If no seen-by information is available, there will be a single entry for the first time the message was seen by any recipient. If seen-by information is available, there will be an entry for each recipient who has seen the message.
Required scope: `messages:read`
- message_id path required
- The message ID
- string
Try it
Authentication
Configure credentials for Core API
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.
Saved automatically to browser storage.
Code snippet
Updates live as you fill in the form above.
TypeScript
import front from '@utdk/front';
await front.getMessageSeenStatus({
"message_id": "msg_123"
})