GET api/contacts/GetContactSummaryByContactID?contactId={contactId}&accountId={accountId}&showInactive={showInactive}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
contactId

integer

Required

accountId

integer

Required

showInactive

boolean

Required

Body Parameters

None.

Response Information

Resource Description

ContactSummaryListVM
NameDescriptionTypeAdditional information
AccountID

integer

None.

ContactID

integer

None.

Name

string

None.

Relationship

string

None.

DebtorStatus

string

None.

ThirdPartyRepresentative

string

None.

ModifyTS

date

None.

Active

boolean

None.

DOB

date

None.

Response

IResponse

None.

Response Formats

application/json, text/json

Sample:
{
  "AccountID": 1,
  "ContactID": 2,
  "Name": "sample string 3",
  "Relationship": "sample string 4",
  "DebtorStatus": "sample string 5",
  "ThirdPartyRepresentative": "sample string 6",
  "ModifyTS": "2025-09-02T23:09:30.4351713+00:00",
  "Active": true,
  "DOB": "2025-09-02T23:09:30.4351713+00:00",
  "Response": null
}

application/xml, text/xml

Sample:
<ContactSummaryListVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.ViewModels.Contact">
  <Response i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.ViewModels" />
  <AccountID>1</AccountID>
  <Active>true</Active>
  <ContactID>2</ContactID>
  <DOB>2025-09-02T23:09:30.4351713+00:00</DOB>
  <DebtorStatus>sample string 5</DebtorStatus>
  <ModifyTS>2025-09-02T23:09:30.4351713+00:00</ModifyTS>
  <Name>sample string 3</Name>
  <Relationship>sample string 4</Relationship>
  <ThirdPartyRepresentative>sample string 6</ThirdPartyRepresentative>
</ContactSummaryListVM>