Skip to main content

List recently opened files

POST /api/v1/files/recents HTTP/1.1
  1. Request parameters
ParameterDescription
applicationNameApplication name is used to filter recent files by their media type. If not specified, all files will be returned.
  1. Example request
curl 'http://localhost:8080/api/v1/files/recents?applicationName=document' -i -X GET \
-H 'X-co-auth-token: e3252b22ac5aefe5b0082a33c8764836'
  1. Example response
[
{
"file": {
"id": "O3221g9u33fVDWSd1bU",
"createdDate": "2018-05-11T13:45:30.000Z",
"creator": "docs@32-2-t5.devoffice.ru",
"fileSize": "7118",
"filename": "Новый документ (2).xodt",
"headRevisionId": "O3221g9u33fXAeTgdp6",
"lastViewedByMeDate": "2018-05-11T13:45:44.000Z",
"mediaTypeForLogging": "application/vnd.collabio.xodocuments.document",
"modifiedByMeDate": "2018-05-11T13:45:30.000Z",
"modifiedDate": "2018-05-11T13:45:30.000Z",
"ownerFsId": "U3221hwoVw9BpMzlnrr",
"ownerId": "docs@32-2-t5.devoffice.ru",
"parentId": "O3221hwoVw9Cr9mGBJ1",
"properties": [],
"totalSize": "7118",
"checksum": "494f4d2af7eacf85ea43500c75482ada",
"ownerFirstName": "Doc",
"autoCreationRevisions": true,
"ownerLastName": "Documentator"
},
"links": [
{
"rel": "self",
"href": "http://localhost:8080/api/v1/files/O3221g9u33fVDWSd1bU"
},
{
"rel": "edit",
"href": "http://localhost:8080/edit/O3221g9u33fVDWSd1bU"
},
{
"rel": "export",
"href": "http://localhost:8080/api/v1/files/O3221g9u33fVDWSd1bU/export"
},
{
"rel": "link",
"href": "http://localhost:8080/link/O3221g9u33fVDWSd1bU"
}
]
},
{
"file": {
"id": "O3221g9u31ZepfGyd3Q",
"createdDate": "2018-05-11T13:45:11.000Z",
"creator": "docs@32-2-t5.devoffice.ru",
"fileSize": "7118",
"filename": "Новый документ.xodt",
"headRevisionId": "O3221g9u31Zhc7cvFoq",
"lastViewedByMeDate": "2018-05-11T13:45:17.000Z",
"mediaTypeForLogging": "application/vnd.collabio.xodocuments.document",
"modifiedByMeDate": "2018-05-11T13:45:11.000Z",
"modifiedDate": "2018-05-11T13:45:11.000Z",
"ownerFsId": "U3221hwoVw9BpMzlnrr",
"ownerId": "docs@32-2-t5.devoffice.ru",
"parentId": "O3221hwoVw9Cr9mGBJ1",
"properties": [],
"totalSize": "7118",
"checksum": "494f4d2af7eacf85ea43500c75482ada",
"ownerFirstName": "Doc",
"ownerLastName": "Documentator"
},
"links": [
{
"rel": "self",
"href": "http://localhost:8080/api/v1/files/O3221g9u31ZepfGyd3Q"
},
{
"rel": "edit",
"href": "http://localhost:8080/edit/O3221g9u31ZepfGyd3Q"
},
{
"rel": "export",
"href": "http://localhost:8080/api/v1/files/O3221g9u31ZepfGyd3Q/export"
},
{
"rel": "link",
"href": "http://localhost:8080/link/O3221g9u31ZepfGyd3Q"
}
]
}
]