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

Contact info type id

integer

None.

ContactInfoCategoryID

Contact info category id

string

None.

ContactInfoCategory

Contact info category

string

None.

ContactInfoName

Contact info name

string

None.

ValidationExpression

Validation expression

string

None.

InternalCode

Internal Code

string

None.

ContactInfoType

Determines the entity type with which this Contact Info is associated. Possible values: "C" = Business (commercial) entities, such as Commercial Customers and Carriers, and "P" = Personal entities, such as Personal Customers and Employees.

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>