GET api/Details?start={start}&finish={finish}&personId={personId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
start

date

Required

finish

date

Required

personId

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Collection of PaymentRecordSimpleData
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

BuyerId

globally unique identifier

None.

Cent

unsigned integer

None.

TotalCent

unsigned integer

None.

PaymentTarget

string

None.

Direct

TradeDirect

None.

PaymentSource

string

None.

PaymentOrderId

string

None.

Description

string

None.

CreatedTime

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "320843cf-7603-46e2-9f3e-5ca60cb33fcb",
    "BuyerId": "4bd95faa-0d3f-4509-9133-d034f49dd863",
    "Cent": 3,
    "TotalCent": 4,
    "PaymentTarget": "sample string 5",
    "Direct": 2,
    "PaymentSource": "sample string 6",
    "PaymentOrderId": "sample string 7",
    "Description": "sample string 8",
    "CreatedTime": "2026-06-30T23:17:57.9162796+08:00"
  },
  {
    "Id": "320843cf-7603-46e2-9f3e-5ca60cb33fcb",
    "BuyerId": "4bd95faa-0d3f-4509-9133-d034f49dd863",
    "Cent": 3,
    "TotalCent": 4,
    "PaymentTarget": "sample string 5",
    "Direct": 2,
    "PaymentSource": "sample string 6",
    "PaymentOrderId": "sample string 7",
    "Description": "sample string 8",
    "CreatedTime": "2026-06-30T23:17:57.9162796+08:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfPaymentRecordSimpleData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Desn.FastTransaction.Reports.Data">
  <PaymentRecordSimpleData>
    <BuyerId>4bd95faa-0d3f-4509-9133-d034f49dd863</BuyerId>
    <Cent>3</Cent>
    <CreatedTime>2026-06-30T23:17:57.9162796+08:00</CreatedTime>
    <Description>sample string 8</Description>
    <Direct>Expend</Direct>
    <Id>320843cf-7603-46e2-9f3e-5ca60cb33fcb</Id>
    <PaymentOrderId>sample string 7</PaymentOrderId>
    <PaymentSource>sample string 6</PaymentSource>
    <PaymentTarget>sample string 5</PaymentTarget>
    <TotalCent>4</TotalCent>
  </PaymentRecordSimpleData>
  <PaymentRecordSimpleData>
    <BuyerId>4bd95faa-0d3f-4509-9133-d034f49dd863</BuyerId>
    <Cent>3</Cent>
    <CreatedTime>2026-06-30T23:17:57.9162796+08:00</CreatedTime>
    <Description>sample string 8</Description>
    <Direct>Expend</Direct>
    <Id>320843cf-7603-46e2-9f3e-5ca60cb33fcb</Id>
    <PaymentOrderId>sample string 7</PaymentOrderId>
    <PaymentSource>sample string 6</PaymentSource>
    <PaymentTarget>sample string 5</PaymentTarget>
    <TotalCent>4</TotalCent>
  </PaymentRecordSimpleData>
</ArrayOfPaymentRecordSimpleData>