Get Started
API backend
API system
More information

POST api/2.0/files/logos This function requires authentication

Description

Uploads a temporary image to create a room logo.

Parameters
Name Description Type Example
formCollection
sent in body
Image data Microsoft.AspNetCore.Http.IFormCollection
Example
POST api/2.0/files/logos
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json

{
  "formCollection": null
}
Returns

Upload result

Example Response

application/json

{
  "status": 0,
  "response": {
    "Success": true,
    "Message": "some text"
  }
}

text/xml

<result>
  <status>0</status>
  <response>
    <Success>True</Success>
    <Message>some text</Message>
  </response>
</result>