GET api/residents/{residentId}/creditHistory/current

Request Information

URI Parameters

NameDescriptionTypeAdditional information
residentId

integer

Required

Body Parameters

None.

Response Information

Resource Description

ResidentCreditHistory
NameDescriptionTypeAdditional information
ResidentCreditHistoryId

integer

None.

ResidentId

integer

None.

CreatedDate

Timestamp

None.

Note

string

None.

EffectiveDate

Timestamp

None.

CreditHistoryCodeId

integer

None.

UserId

integer

None.

CollectionsAgentId

integer

None.

ReadableCreditHistoryCode

string

None.

CreditHistoryCodeDescription

string

None.

Response Formats

application/json, text/json

Sample:
{
  "residentCreditHistoryId": 1,
  "residentId": 2,
  "createdDate": {
    "seconds": 1,
    "nanos": 2
  },
  "note": "sample string 3",
  "effectiveDate": {
    "seconds": 1,
    "nanos": 2
  },
  "creditHistoryCodeId": 4,
  "userId": 1,
  "collectionsAgentId": 1,
  "readableCreditHistoryCode": "sample string 5",
  "creditHistoryCodeDescription": "sample string 6"
}

application/xml, text/xml

Sample:
<ResidentCreditHistory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fsr.CamAcct.Ar.Resident.Grpc.ResidentCreditsHistory">
  <CollectionsAgentId>1</CollectionsAgentId>
  <CreatedDate xmlns:d2p1="http://schemas.datacontract.org/2004/07/Google.Protobuf.WellKnownTypes">
    <d2p1:Nanos>2</d2p1:Nanos>
    <d2p1:Seconds>1</d2p1:Seconds>
  </CreatedDate>
  <CreditHistoryCodeDescription>sample string 6</CreditHistoryCodeDescription>
  <CreditHistoryCodeId>4</CreditHistoryCodeId>
  <EffectiveDate xmlns:d2p1="http://schemas.datacontract.org/2004/07/Google.Protobuf.WellKnownTypes">
    <d2p1:Nanos>2</d2p1:Nanos>
    <d2p1:Seconds>1</d2p1:Seconds>
  </EffectiveDate>
  <Note>sample string 3</Note>
  <ReadableCreditHistoryCode>sample string 5</ReadableCreditHistoryCode>
  <ResidentCreditHistoryId>1</ResidentCreditHistoryId>
  <ResidentId>2</ResidentId>
  <UserId>1</UserId>
</ResidentCreditHistory>