GET api/2.0/files/file/app-{fileId}
Returns the detailed information about a third-party file with the ID specified in the request.
Name |
Description |
Type |
Example |
fileId
sent in url
|
File ID
|
string
|
some text
|
GET api/2.0/files/file/app-%22some+text%22
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
application/json
{
"status": 0,
"response": {
"Title": "some text",
"Access": "ReadWrite",
"Shared": true,
"ProviderKey": "some text"
}
}
text/xml
<result>
<status>0</status>
<response>
<Title>some text</Title>
<Access>ReadWrite</Access>
<Shared>True</Shared>
<ProviderKey>some text</ProviderKey>
</response>
</result>