GET api/2.0/mail/signature/{mailbox_id} This function requires authentication

Description

Returns a signature of a mailbox with the ID specified in the request.

Parameters
Name Description Type Example
mailbox_id
sent in url
Mailbox ID number 1234
Example
GET api/2.0/mail/signature/1234
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
Returns

Signature object

Example Response

application/json

{
  "status": 0,
  "response": {
    "mailboxId": "132",
    "html": "html",
    "isActive": true
  }
}

text/xml

<result>
  <status>0</status>
  <response>
    <mailboxId>132</mailboxId>
    <html>html</html>
    <isActive>True</isActive>
  </response>
</result>