GET v1/Contacts/{contactID}/ContactInformation/Types
Get all of Contact Info types
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| contactID | string |
None. |
Body Parameters
None.
Response Information
Resource Description
List of contact Info types
Collection of ContactInfoTypeDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| ContactInfoTypeID | integer |
None. |
|
| ContactInfoCategoryID | string |
None. |
|
| ContactInfoCategory | string |
None. |
|
| ContactInfoName | string |
None. |
|
| ValidationExpression | string |
None. |
|
| InternalCode | string |
None. |
|
| ContactInfoType | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ContactInfoTypeID": 1,
"ContactInfoCategoryID": "sample string 2",
"ContactInfoCategory": "sample string 3",
"ContactInfoName": "sample string 4",
"ValidationExpression": "sample string 5",
"InternalCode": "sample string 6",
"ContactInfoType": "sample string 7"
},
{
"ContactInfoTypeID": 1,
"ContactInfoCategoryID": "sample string 2",
"ContactInfoCategory": "sample string 3",
"ContactInfoName": "sample string 4",
"ValidationExpression": "sample string 5",
"InternalCode": "sample string 6",
"ContactInfoType": "sample string 7"
}
]
application/xml, text/xml
Sample:
<ArrayOfContactInfoTypeDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QQSolutions.NextGen.ModelLibrary.DataTransferObjects.Contacts">
<ContactInfoTypeDTO>
<ContactInfoCategory>sample string 3</ContactInfoCategory>
<ContactInfoCategoryID>sample string 2</ContactInfoCategoryID>
<ContactInfoName>sample string 4</ContactInfoName>
<ContactInfoType>sample string 7</ContactInfoType>
<ContactInfoTypeID>1</ContactInfoTypeID>
<InternalCode>sample string 6</InternalCode>
<ValidationExpression>sample string 5</ValidationExpression>
</ContactInfoTypeDTO>
<ContactInfoTypeDTO>
<ContactInfoCategory>sample string 3</ContactInfoCategory>
<ContactInfoCategoryID>sample string 2</ContactInfoCategoryID>
<ContactInfoName>sample string 4</ContactInfoName>
<ContactInfoType>sample string 7</ContactInfoType>
<ContactInfoTypeID>1</ContactInfoTypeID>
<InternalCode>sample string 6</InternalCode>
<ValidationExpression>sample string 5</ValidationExpression>
</ContactInfoTypeDTO>
</ArrayOfContactInfoTypeDTO>