Show examples in:
Javascript HTTP
Endpoint info
Available examples
Content Management API > Editing session

List all 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!

Returns

Returns an array of resource objects of type editing_session.

Examples

GET https://site-api.datocms.com/editing-sessions HTTP/1.1
Authorization: Bearer YOUR-API-TOKEN
Accept: application/json
X-Api-Version: 3
Terminal window
curl -g 'https://site-api.datocms.com/editing-sessions' \
\
-H "Authorization: Bearer YOUR-API-TOKEN" \
-H "Accept: application/json" \
-H "X-Api-Version: 3"
await fetch("https://site-api.datocms.com/editing-sessions", {
headers: {
Authorization: "Bearer YOUR-API-TOKEN",
Accept: "application/json",
"X-Api-Version": "3",
},
});
HTTP/1.1 200 OK
Content-Type: application/json
Cache-Control: cache-control: max-age=0, private, must-revalidate
X-RateLimit-Limit: 30
X-RateLimit-Remaining: 28
{
"data": [
{
"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"
}
}
}
}
]
}