GET api/contacts/GetContactCategories
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of ContactCategories| Name | Description | Type | Additional information |
|---|---|---|---|
| ContactCategoryId | integer |
None. |
|
| SiteUUID | globally unique identifier |
None. |
|
| ContactCategoryName | string |
None. |
|
| SortOrder | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ContactCategoryId": 1,
"SiteUUID": "d9aa72cc-c3c2-41df-be77-ec3678b98246",
"ContactCategoryName": "sample string 3",
"SortOrder": 4
},
{
"ContactCategoryId": 1,
"SiteUUID": "d9aa72cc-c3c2-41df-be77-ec3678b98246",
"ContactCategoryName": "sample string 3",
"SortOrder": 4
}
]
text/xml
Sample:
<ArrayOfContactCategories xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OnlineManagementSystemWebApi.Models">
<ContactCategories>
<ContactCategoryId>1</ContactCategoryId>
<ContactCategoryName>sample string 3</ContactCategoryName>
<SiteUUID>d9aa72cc-c3c2-41df-be77-ec3678b98246</SiteUUID>
<SortOrder>4</SortOrder>
</ContactCategories>
<ContactCategories>
<ContactCategoryId>1</ContactCategoryId>
<ContactCategoryName>sample string 3</ContactCategoryName>
<SiteUUID>d9aa72cc-c3c2-41df-be77-ec3678b98246</SiteUUID>
<SortOrder>4</SortOrder>
</ContactCategories>
</ArrayOfContactCategories>