Content Management API > Editing session
Allows all actions on editing sessions
Warning: Experimental API
Please note that this API method is marked as unstable and should be avoided in production environments. Changes may occur at any time without warning, potentially impacting your scripts. We recommend contacting our Support Team to explore alternative approaches that are safer and more reliable!
Examples
import { buildClient } from "@datocms/cma-client-node";
async function run() { const client = buildClient({ apiToken: process.env.DATOCMS_API_TOKEN });
const editingSessionId = "312";
const editingSession = await client.editingSessions.rawUpdate( editingSessionId, { type: "editing_session_enter_item", relationships: { item: { data: { type: "item", id: "hWl-mnkWRYmMCSTq4z_piQ" } }, }, }, );
// Check the 'Returned output' tab for the result ☝️ console.log(editingSession);}
run();{ type: "editing_session", id: "312", attributes: { last_activity_at: "2019-03-30T09:29:14.872Z", locked_at: "2019-03-30T09:29:14.872Z", }, relationships: { editor: { data: { type: "account", id: "312" } }, active_item: { data: { type: "item", id: "hWl-mnkWRYmMCSTq4z_piQ" } }, active_item_type: { data: { type: "item_type", id: "DxMaW10UQiCmZcuuA-IkkA" }, }, },}