provider Messages POST
/messages/{message_id}/seen @utdk/front
/messages/{message_id}/seen Mark message seen
Mark an outbound message from Front as seen. Note, the message seen route should only be called in response to an actual end-user's message-seen action. In accordance with this behavior, the route is rate limited to 10 requests per message per hour.
Required scope: `messages:write`
- 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.markMessageSeen({
"message_id": "msg_123"
})