GET {version}/individuals/{sourceId}/Receipts

Returns list of receipts based on the sourceId. If no individual is found for the sourceId or FA group is not available,then no receipt will be returned OR if FA groups is available,

Request Information

URI Parameters

NameDescriptionTypeAdditional information
sourceId

SourceId

string

Required

version

string

None.

Body Parameters

None.

Response Information

Resource Description

Returns JSON Object with following properties:Guid, Amount,PeriodText, PeriodYear, ReceiptDate,SubType

Collection of Aristotle.P6.ViewModels.Receipt
NameDescriptionTypeAdditional information
Guid

globally unique identifier

None.

Amount

decimal number

None.

PeriodText

string

None.

Periodyear

integer

None.

ReceiptDate

date

None.

Subtype

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Guid": "48ff4891-fa54-4f18-8d0b-8517607eed67",
    "Amount": 2.0,
    "PeriodText": "sample string 3",
    "Periodyear": 4,
    "ReceiptDate": "2025-07-05T01:36:58.9536357-04:00",
    "Subtype": "sample string 6"
  },
  {
    "Guid": "48ff4891-fa54-4f18-8d0b-8517607eed67",
    "Amount": 2.0,
    "PeriodText": "sample string 3",
    "Periodyear": 4,
    "ReceiptDate": "2025-07-05T01:36:58.9536357-04:00",
    "Subtype": "sample string 6"
  }
]

application/xml, text/xml

Sample:
<ArrayOfReceipt xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aristotle.P6.ViewModels">
  <Receipt>
    <Amount>2</Amount>
    <Guid>48ff4891-fa54-4f18-8d0b-8517607eed67</Guid>
    <PeriodText>sample string 3</PeriodText>
    <Periodyear>4</Periodyear>
    <ReceiptDate>2025-07-05T01:36:58.9536357-04:00</ReceiptDate>
    <Subtype>sample string 6</Subtype>
  </Receipt>
  <Receipt>
    <Amount>2</Amount>
    <Guid>48ff4891-fa54-4f18-8d0b-8517607eed67</Guid>
    <PeriodText>sample string 3</PeriodText>
    <Periodyear>4</Periodyear>
    <ReceiptDate>2025-07-05T01:36:58.9536357-04:00</ReceiptDate>
    <Subtype>sample string 6</Subtype>
  </Receipt>
</ArrayOfReceipt>