GET agents/{id}/fund-review?date1={date1}&date2={date2}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

string

Required

date1

date

Required

date2

date

Required

Body Parameters

None.

Response Information

Resource Description

agent_fundreview_dto
NameDescriptionTypeAdditional information
cutoffday1

date

None.

cutoffday2

date

None.

orders

Collection of agent_order_fr_dto

None.

ledgers

Collection of agent_ledgers_fr_dto

None.

payouts

Collection of agent_ledgers_fr_dto

None.

total_hours

decimal number

None.

total_fund

decimal number

None.

total_ledger

decimal number

None.

total_payout

decimal number

None.

total_net

decimal number

None.

Response Formats

application/json, text/json

Sample:
{
  "cutoffday1": "2025-12-09T01:31:28.7215771+08:00",
  "cutoffday2": "2025-12-09T01:31:28.7215771+08:00",
  "orders": [
    {
      "book_date": "sample string 1",
      "hours": "sample string 2",
      "fund": "sample string 3"
    },
    {
      "book_date": "sample string 1",
      "hours": "sample string 2",
      "fund": "sample string 3"
    }
  ],
  "ledgers": [
    {
      "txn_date": "sample string 1",
      "particulars": "sample string 2",
      "amount": "sample string 3"
    },
    {
      "txn_date": "sample string 1",
      "particulars": "sample string 2",
      "amount": "sample string 3"
    }
  ],
  "payouts": [
    {
      "txn_date": "sample string 1",
      "particulars": "sample string 2",
      "amount": "sample string 3"
    },
    {
      "txn_date": "sample string 1",
      "particulars": "sample string 2",
      "amount": "sample string 3"
    }
  ],
  "total_hours": 3.0,
  "total_fund": 4.0,
  "total_ledger": 5.0,
  "total_payout": 6.0,
  "total_net": 7.0
}

application/xml, text/xml

Sample:
<agent_fundreview_dto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/palmeo.api.Models.DTO">
  <cutoffday1>2025-12-09T01:31:28.7215771+08:00</cutoffday1>
  <cutoffday2>2025-12-09T01:31:28.7215771+08:00</cutoffday2>
  <ledgers>
    <agent_ledgers_fr_dto>
      <amount>sample string 3</amount>
      <particulars>sample string 2</particulars>
      <txn_date>sample string 1</txn_date>
    </agent_ledgers_fr_dto>
    <agent_ledgers_fr_dto>
      <amount>sample string 3</amount>
      <particulars>sample string 2</particulars>
      <txn_date>sample string 1</txn_date>
    </agent_ledgers_fr_dto>
  </ledgers>
  <orders>
    <agent_order_fr_dto>
      <book_date>sample string 1</book_date>
      <fund>sample string 3</fund>
      <hours>sample string 2</hours>
    </agent_order_fr_dto>
    <agent_order_fr_dto>
      <book_date>sample string 1</book_date>
      <fund>sample string 3</fund>
      <hours>sample string 2</hours>
    </agent_order_fr_dto>
  </orders>
  <payouts>
    <agent_ledgers_fr_dto>
      <amount>sample string 3</amount>
      <particulars>sample string 2</particulars>
      <txn_date>sample string 1</txn_date>
    </agent_ledgers_fr_dto>
    <agent_ledgers_fr_dto>
      <amount>sample string 3</amount>
      <particulars>sample string 2</particulars>
      <txn_date>sample string 1</txn_date>
    </agent_ledgers_fr_dto>
  </payouts>
  <total_fund>4</total_fund>
  <total_hours>3</total_hours>
  <total_ledger>5</total_ledger>
  <total_net>7</total_net>
  <total_payout>6</total_payout>
</agent_fundreview_dto>