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": "<any>",
  "end_date": "<any>"
}
'
{
  "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
any
end_date
any

Response

200 - application/json
status
string
Example:

"00"

message
string
Example:

"Successful"

data
any[]
Example:
[]