POST
/
api
/
v1
/
loans
/
account-officer-report
Generate account officer report for disbursed loans.
curl --request POST \
  --url https://demoapi.saasphereltd.com/api/v1/loans/account-officer-report \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "staff_id": "STAFF001",
  "start_date": "2025-01-01",
  "end_date": "2025-11-26"
}
'
{
  "status": "00",
  "message": "Successful",
  "data": []
}

Authorizations

Authorization
string
header
required

Paste only the token (no "Bearer " prefix).

Body

application/json
staff_id
string
required

The staff ID, email, or username.

Example:

"STAFF001"

start_date
date
required

The start date for the report.

Example:

"2025-01-01"

end_date
date
required

The end date for the report.

Example:

"2025-11-26"

Response

200 - application/json
status
string
Example:

"00"

message
string
Example:

"Successful"

data
array
Example:
[]