POST v1/SystemSettings/MailGeographyList
Return System Mail Geography List
Request Information
URI Parameters
None.
Body Parameters
Mail Geography Input Request
MailGeographyRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| MailGeographyID | integer |
None. |
|
| Name | string |
None. |
|
| Active | boolean |
None. |
Remarks
None.
Request Formats
application/json, text/json
Sample:
{
"MailGeographyID": 1,
"Name": "sample string 1",
"Active": true
}
application/xml, text/xml
Sample:
<MailGeographyRequest xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <MailGeographyID>1</MailGeographyID> <Name>sample string 1</Name> <Active>true</Active> </MailGeographyRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Collection of MailGeographyResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| MailGeographyID | integer |
None. |
|
| Name | string |
None. |
|
| Active | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"MailGeographyID": 1,
"Name": "sample string 1",
"Active": true
},
{
"MailGeographyID": 1,
"Name": "sample string 1",
"Active": true
}
]
application/xml, text/xml
Sample:
<ArrayOfMailGeographyResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<MailGeographyResponse>
<MailGeographyID>1</MailGeographyID>
<Name>sample string 1</Name>
<Active>true</Active>
</MailGeographyResponse>
<MailGeographyResponse>
<MailGeographyID>1</MailGeographyID>
<Name>sample string 1</Name>
<Active>true</Active>
</MailGeographyResponse>
</ArrayOfMailGeographyResponse>
