GET api/ContactPaymentReferenceController/GetSummaryByContactID?contactID={contactID}&showInactive={showInactive}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
contactID

integer

Required

showInactive

boolean

Default value is False

Body Parameters

None.

Response Information

Resource Description

ContactPaymentReferenceVM
NameDescriptionTypeAdditional information
ContactID

integer

None.

ContactPaymentReferenceID

integer

None.

CRNNumber

string

None.

BenefitGroup

string

None.

Response

IResponse

None.

Response Formats

application/json, text/json

Sample:
{
  "ContactID": 1,
  "ContactPaymentReferenceID": 1,
  "CRNNumber": "sample string 1",
  "BenefitGroup": "sample string 2",
  "Response": null
}

application/xml, text/xml

Sample:
<ContactPaymentReferenceVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.ViewModels.ContactPaymentReference">
  <Response i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.ViewModels" />
  <BenefitGroup>sample string 2</BenefitGroup>
  <CRNNumber>sample string 1</CRNNumber>
  <ContactID>1</ContactID>
  <ContactPaymentReferenceID>1</ContactPaymentReferenceID>
</ContactPaymentReferenceVM>