GET api/contacts/GetContactRelationListingByAccountID?accountID={accountID}&showInactive={showInactive}&includeRelatedContactID={includeRelatedContactID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
accountID

integer

Required

showInactive

boolean

Required

includeRelatedContactID

boolean

Required

Body Parameters

None.

Response Information

Resource Description

Collection of 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:08:32.172728+00:00",
    "Active": true,
    "DOB": "2025-09-02T23:08:32.172728+00:00",
    "Response": null
  },
  {
    "AccountID": 1,
    "ContactID": 2,
    "Name": "sample string 3",
    "Relationship": "sample string 4",
    "DebtorStatus": "sample string 5",
    "ThirdPartyRepresentative": "sample string 6",
    "ModifyTS": "2025-09-02T23:08:32.172728+00:00",
    "Active": true,
    "DOB": "2025-09-02T23:08:32.172728+00:00",
    "Response": null
  }
]

application/xml, text/xml

Sample:
<ArrayOfContactSummaryListVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.ViewModels.Contact">
  <ContactSummaryListVM>
    <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:08:32.172728+00:00</DOB>
    <DebtorStatus>sample string 5</DebtorStatus>
    <ModifyTS>2025-09-02T23:08:32.172728+00:00</ModifyTS>
    <Name>sample string 3</Name>
    <Relationship>sample string 4</Relationship>
    <ThirdPartyRepresentative>sample string 6</ThirdPartyRepresentative>
  </ContactSummaryListVM>
  <ContactSummaryListVM>
    <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:08:32.172728+00:00</DOB>
    <DebtorStatus>sample string 5</DebtorStatus>
    <ModifyTS>2025-09-02T23:08:32.172728+00:00</ModifyTS>
    <Name>sample string 3</Name>
    <Relationship>sample string 4</Relationship>
    <ThirdPartyRepresentative>sample string 6</ThirdPartyRepresentative>
  </ContactSummaryListVM>
</ArrayOfContactSummaryListVM>