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": "a07ef28a-e274-417f-b729-ad35ca22056e",
"ContactCategoryName": "sample string 3",
"SortOrder": 4
},
{
"ContactCategoryId": 1,
"SiteUUID": "a07ef28a-e274-417f-b729-ad35ca22056e",
"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>a07ef28a-e274-417f-b729-ad35ca22056e</SiteUUID>
<SortOrder>4</SortOrder>
</ContactCategories>
<ContactCategories>
<ContactCategoryId>1</ContactCategoryId>
<ContactCategoryName>sample string 3</ContactCategoryName>
<SiteUUID>a07ef28a-e274-417f-b729-ad35ca22056e</SiteUUID>
<SortOrder>4</SortOrder>
</ContactCategories>
</ArrayOfContactCategories>