GET v1/Contacts/{contactID}/AccountInfo

Get the account information for a contact including Agent and CSR

Request Information

URI Parameters

NameDescriptionTypeAdditional information
contactID

Id of the contact

integer

Required

Body Parameters

None.

Response Information

Resource Description

Account information

ContactAccountInfoDTO
NameDescriptionTypeAdditional information
CustomerID

integer

None.

CustomerNo

string

None.

AgentID

integer

None.

Agent

string

None.

CsrID

integer

None.

CSR

string

None.

CustomerPriorityID

byte

None.

CustomerPriority

string

None.

CustomerSince

date

None.

UserID

string

None.

UserPassword

string

None.

Type

string

None.

OfficeID

integer

None.

CPAccess

boolean

None.

Name

string

None.

CustomerSourceID

integer

None.

CustomerSource

string

None.

SourceDetail

string

None.

CreatedByID

integer

None.

CreatedByName

string

None.

CustomerSinceString

string

None.

Response Formats

application/json, text/json

Sample:
{
  "CustomerID": 1,
  "CustomerNo": "sample string 2",
  "AgentID": 1,
  "Agent": "sample string 3",
  "CsrID": 1,
  "CSR": "sample string 4",
  "CustomerPriorityID": 64,
  "CustomerPriority": "sample string 5",
  "CustomerSince": "2024-04-20T13:13:24.9823682+00:00",
  "UserID": "sample string 6",
  "UserPassword": "sample string 7",
  "Type": "sample string 8",
  "OfficeID": 9,
  "CPAccess": true,
  "Name": "sample string 10",
  "CustomerSourceID": 1,
  "CustomerSource": "sample string 11",
  "SourceDetail": "sample string 12",
  "CreatedByID": 1,
  "CreatedByName": "sample string 13",
  "CustomerSinceString": "sample string 14"
}

application/xml, text/xml

Sample:
<ContactAccountInfoDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QQSolutions.NextGen.ModelLibrary.DataTransferObjects.Contacts">
  <Agent>sample string 3</Agent>
  <AgentID>1</AgentID>
  <CPAccess>true</CPAccess>
  <CSR>sample string 4</CSR>
  <CreatedByID>1</CreatedByID>
  <CreatedByName>sample string 13</CreatedByName>
  <CsrID>1</CsrID>
  <CustomerID>1</CustomerID>
  <CustomerNo>sample string 2</CustomerNo>
  <CustomerPriority>sample string 5</CustomerPriority>
  <CustomerPriorityID>64</CustomerPriorityID>
  <CustomerSince>2024-04-20T13:13:24.9823682+00:00</CustomerSince>
  <CustomerSinceString>sample string 14</CustomerSinceString>
  <CustomerSource>sample string 11</CustomerSource>
  <CustomerSourceID>1</CustomerSourceID>
  <Name>sample string 10</Name>
  <OfficeID>9</OfficeID>
  <SourceDetail>sample string 12</SourceDetail>
  <Type>sample string 8</Type>
  <UserID>sample string 6</UserID>
  <UserPassword>sample string 7</UserPassword>
</ContactAccountInfoDTO>