POST v1/SystemSettings/ContactTypeList
Request Information
URI Parameters
None.
Body Parameters
ContactTypeListRequestName | Description | Type | Additional information |
---|---|---|---|
ContactTypeID | integer |
None. |
|
ContactTypeName | string |
None. |
|
Active | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{ "ContactTypeID": 1, "ContactTypeName": "sample string 1", "Active": true }
application/xml, text/xml
Sample:
<ContactTypeListRequest xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <ContactTypeID>1</ContactTypeID> <ContactTypeName>sample string 1</ContactTypeName> <Active>true</Active> </ContactTypeListRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Collection of ContactTypeListResponseName | Description | Type | Additional information |
---|---|---|---|
ContactTypeID | integer |
None. |
|
ContactTypeName | string |
None. |
|
Active | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[ { "ContactTypeID": 1, "ContactTypeName": "sample string 1", "Active": true }, { "ContactTypeID": 1, "ContactTypeName": "sample string 1", "Active": true } ]
application/xml, text/xml
Sample:
<ArrayOfContactTypeListResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <ContactTypeListResponse> <ContactTypeID>1</ContactTypeID> <ContactTypeName>sample string 1</ContactTypeName> <Active>true</Active> </ContactTypeListResponse> <ContactTypeListResponse> <ContactTypeID>1</ContactTypeID> <ContactTypeName>sample string 1</ContactTypeName> <Active>true</Active> </ContactTypeListResponse> </ArrayOfContactTypeListResponse>