> ## Documentation Index > Fetch the complete documentation index at: https://developer.rocket.chat/llms.txt > Use this file to discover all available pages before exploring further. # Get a Livechat Message > Retrieve specific livechat message information. ## OpenAPI ````json GET /api/v1/livechat/message/{_id} { "openapi": "3.0.0", "info": { "version": "1.0.0", "title": "Omnichannel" }, "servers": [ { "url": "https://apiexplorer.support.rocket.chat" } ], "tags": [ { "name": "Omnichannel Users" }, { "name": "Omnichannel Agents" }, { "name": "Omnichannel Monitors" }, { "name": "Omnichannel Visitors" }, { "name": "Omnichannel Contacts" }, { "name": "Omnichannel Rooms" }, { "name": "Omnichannel Departments" }, { "name": "Omnichannel Custom Fields" }, { "name": "Omnichannel Business Hours" }, { "name": "Omnichannel Priorities" }, { "name": "Omnichannel Tags" }, { "name": "Omnichannel Units" }, { "name": "SLA Policies" }, { "name": "Canned Responses" }, { "name": "Omnichannel Transcript" }, { "name": "Omnichannel Statistics" }, { "name": "Omnichannel Agent Stats" }, { "name": "Omnichannel Dashboards" }, { "name": "Reports" }, { "name": "Omnichannel Inquiries" }, { "name": "Omnichannel Webhooks" }, { "name": "Livechat" }, { "name": "Livechat Appearance" }, { "name": "Livechat Triggers" }, { "name": "Livechat Messages" }, { "name": "Livechat Page Visited" } ], "paths": { "/api/v1/livechat/message/{_id}": { "parameters": [ { "schema": { "type": "string" }, "example": "ZKWP8LfGnRHQ3ozWa", "name": "_id", "in": "path", "required": "true", "description": "The message ID that you want to update." } ], "get": { "summary": "Get a Livechat Message", "operationId": "get-api-v1-livechat-message-_id", "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "object", "properties": { "_id": { "type": "string" }, "rid": { "type": "string" }, "msg": { "type": "string" }, "token": { "type": "string" }, "alias": { "type": "string" }, "ts": { "type": "string" }, "u": { "type": "object", "properties": { "_id": { "type": "string" }, "username": { "type": "string" }, "name": { "type": "string" } } }, "unread": { "type": "boolean" }, "_updatedAt": { "type": "string" }, "urls": { "type": "array", "items": { "type": "object", "properties": {} } }, "mentions": { "type": "array", "items": { "type": "object", "properties": {} } }, "channels": { "type": "array", "items": { "type": "object", "properties": {} } }, "md": { "type": "array", "items": { "type": "object", "properties": { "type": { "type": "string" }, "value": { "type": "array", "items": { "type": "object", "properties": { "type": { "type": "string" }, "value": { "type": "string" } } } } } } } } }, "success": { "type": "boolean" } } }, "examples": { "Success Example": { "value": { "message": { "_id": "AgRFdj96mbHDPrTHq", "rid": "mmqCzYgiL8fzRYfuY", "msg": "hi", "token": "8s7e9ony6ctl27e1qf8kue", "alias": "Mary", "ts": "2021-07-13T16:20:26.672Z", "u": { "_id": "47Dajwh9DjpnTAugW", "username": "guest-165", "name": "Mary" }, "unread": "true", "_updatedAt": "2021-07-13T16:20:26.776Z", "urls": [], "mentions": [], "channels": [], "md": [ { "type": "PARAGRAPH", "value": [ { "type": "PLAIN_TEXT", "value": "hi" } ] } ] }, "success": "true" } } } } } }, "400": { "description": "Bad Request", "content": { "application/json": { "schema": { "type": "object", "properties": { "success": { "type": "boolean" }, "error": { "type": "string" }, "errorType": { "type": "string" } } }, "examples": { "Example 1": { "value": { "success": "false", "error": "must have required property 'rid' [invalid-params]", "errorType": "invalid-params" } }, "Example 2": { "value": { "success": "false", "error": "must have required property 'token' [invalid-params]", "errorType": "invalid-params" } } } } } } }, "description": "Retrieve specific livechat message information.", "parameters": [ { "schema": { "type": "string" }, "example": "8s7e9ony6ctl27e1qf8kue", "in": "query", "name": "token", "description": "The visitor token.", "required": "true" }, { "schema": { "type": "string" }, "example": "mmqCzYgiL8fzRYfuY", "in": "query", "name": "rid", "description": "The room ID.", "required": "true" } ], "tags": [ "Livechat Messages" ] } } } } ````