GET api/2.0/mail/signature/{mailbox_id}
Returns a signature of a mailbox with the ID specified in the request.
Name |
Description |
Type |
Example |
mailbox_id
sent in url
|
Mailbox ID
|
number
|
1234
|
GET api/2.0/mail/signature/1234
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
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>