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

Id of the customer

integer

None.

CustomerNo

Customer nu

string

None.

AgentID

Agent id

integer

None.

Agent

Agent

string

None.

CsrID

CSR id

integer

None.

CSR

CSR

string

None.

CustomerPriorityID

Customer priority id

byte

None.

CustomerPriority

Customer priority

string

None.

CustomerSince

Customer since date

date

None.

UserID

Id of the user

string

None.

UserPassword

Password of the user

string

None.

Type

Type

string

None.

OfficeID

Id of the office

integer

None.

CPAccess

Signifies whether it has CP access

boolean

None.

Name

Name

string

None.

CustomerSourceID

Customer source id

integer

None.

CustomerSource

Customer source

string

None.

SourceDetail

Source detail

string

None.

CreatedByID

Created by id

integer

None.

CreatedByName

Created by name

string

None.

CustomerSinceString

Customer since (String)

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": "2026-08-15T08:27:15.6351784+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>2026-08-15T08:27:15.6351784+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>