GET v1/Lookups/ContactInfoTypes

Get a list of Contact Info Types to be used to insert/update EntityContactInfoDTO, PhoneNumberDTO, EmailDTO, WebsiteDTO, etc.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

List of Contact Info Types

Collection of ContactInfoTypeDTO
NameDescriptionTypeAdditional 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>