Sorry, no results found for "".

Show examples in:
Javascript HTTP
Endpoint info
Available examples

Content Management API > Editing session

Delete an editing session

Returns

Returns a resource object of type editing_session

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.destroy(editingSessionId);
// Check the 'Returned output' tab for the result ☝️
console.log(editingSession);
}
run();
{
id: "312",
last_activity_at: "2019-03-30T09:29:14.872Z",
locked_at: "2019-03-30T09:29:14.872Z",
editor: { type: "account", id: "312" },
active_item: { type: "item", id: "hWl-mnkWRYmMCSTq4z_piQ" },
active_item_type: { type: "item_type", id: "DxMaW10UQiCmZcuuA-IkkA" },
}