GET api/2.0/mailserver/groupaddress/get
Returns a list of mail groups associated with the tenant.
This method doesn't have any parameters.
GET api/2.0/mailserver/groupaddress/get
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
List of mail group data for the current tenant
application/json
{
"status": 0,
"response": [
{
"Id": 1234,
"Address": {
"Id": 1234,
"DomainId": 1234,
"Email": "Email@only.com"
},
"Addresses": [
{
"Id": 1234,
"DomainId": 1234,
"Email": "Email@only.com"
}
]
}
]
}
text/xml
<result>
<status>0</status>
<response>
<Id>1234</Id>
<Address>
<Id>1234</Id>
<DomainId>1234</DomainId>
<Email>Email@only.com</Email>
</Address>
<Addresses>
<Id>1234</Id>
<DomainId>1234</DomainId>
<Email>Email@only.com</Email>
</Addresses>
</response>
</result>