Get Disbursement Wallet Statement

Use this endpoint to retrieve the statement of your disbursement wallet

Endpoint

POST /wallet/main-statement

Request

Headers

  • Content-Type* — Must be application/json

  • x-account-id* — Your unique TemboPlus account identifier

  • x-secret-key* — Your TemboPlus API secret key

  • x-request-id* — Unique UUID per request for tracing

Body Parameters

  • startDate* (string) — The starting date of the statement period, formatted as YYYY-MM-DD.

  • endDate* (string) — The ending date of the statement period, formatted as YYYY-MM-DD.

Example Request Payload

{
  "startDate": "2025-09-01",
  "endDate": "2025-09-30"
}

Responses

200 OK

Returns the current and available balance along with account details such as account name, number and status.

Response Format

400 BAD REQUEST

Returned when the request payload is missing one or more required fields, or when any field contains invalid data.

Response Format

Fields inside details and message are optional and vary depending on the specific validation failure.


Common Validation Errors to Avoid

  • Ensure all required fields are included in the request body in the right format.

  • x-request-id must be included in the request headers.

401 UNAUTHORIZED

Returned when authentication headers are missing or invalid.

Response Format:

500 INTERNAL SERVER ERROR

Indicates a temporary issue within TemboPlus. Retry later or contact TemboPlus Support with your x-request-id.

Response Format:

Last updated