GET api/contacts/GetContactSummaryByContactID?contactId={contactId}&accountId={accountId}&showInactive={showInactive}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| contactId | integer |
Required |
|
| accountId | integer |
Required |
|
| showInactive | boolean |
Required |
Body Parameters
None.
Response Information
Resource Description
ContactSummaryListVM| Name | Description | Type | Additional 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": "2026-01-15T08:45:14.5063125+00:00",
"Active": true,
"DOB": "2026-01-15T08:45:14.5063125+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>2026-01-15T08:45:14.5063125+00:00</DOB> <DebtorStatus>sample string 5</DebtorStatus> <ModifyTS>2026-01-15T08:45:14.5063125+00:00</ModifyTS> <Name>sample string 3</Name> <Relationship>sample string 4</Relationship> <ThirdPartyRepresentative>sample string 6</ThirdPartyRepresentative> </ContactSummaryListVM>