GET v1/Contacts/{contactId}/SocialMedia
Get the list of websites in social media sections
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
contactId |
Id of the contact |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
List of websites
Collection of WebsiteDTOName | Description | Type | Additional information |
---|---|---|---|
WebsiteID | integer |
None. |
|
EntityID | integer |
None. |
|
ContactInfoTypeID | integer |
None. |
|
WebsiteUrl | string |
None. |
|
IsPrimary | boolean |
None. |
|
ContactInfoName | string |
None. |
|
ContactInfoCategory | string |
None. |
|
InternalCode | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "WebsiteID": 1, "EntityID": 2, "ContactInfoTypeID": 3, "WebsiteUrl": "sample string 4", "IsPrimary": true, "ContactInfoName": "sample string 6", "ContactInfoCategory": "sample string 7", "InternalCode": "sample string 8" }, { "WebsiteID": 1, "EntityID": 2, "ContactInfoTypeID": 3, "WebsiteUrl": "sample string 4", "IsPrimary": true, "ContactInfoName": "sample string 6", "ContactInfoCategory": "sample string 7", "InternalCode": "sample string 8" } ]
application/xml, text/xml
Sample:
<ArrayOfWebsiteDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QQSolutions.NextGen.ModelLibrary.DataTransferObjects.Contacts"> <WebsiteDTO> <ContactInfoCategory>sample string 7</ContactInfoCategory> <ContactInfoName>sample string 6</ContactInfoName> <ContactInfoTypeID>3</ContactInfoTypeID> <EntityID>2</EntityID> <InternalCode>sample string 8</InternalCode> <IsPrimary>true</IsPrimary> <WebsiteID>1</WebsiteID> <WebsiteUrl>sample string 4</WebsiteUrl> </WebsiteDTO> <WebsiteDTO> <ContactInfoCategory>sample string 7</ContactInfoCategory> <ContactInfoName>sample string 6</ContactInfoName> <ContactInfoTypeID>3</ContactInfoTypeID> <EntityID>2</EntityID> <InternalCode>sample string 8</InternalCode> <IsPrimary>true</IsPrimary> <WebsiteID>1</WebsiteID> <WebsiteUrl>sample string 4</WebsiteUrl> </WebsiteDTO> </ArrayOfWebsiteDTO>