Search payments
GEThttps://core-prod.malipopay.co.tz/api/v1/payment/search
Searches and returns a paginated list of payments matching the given filters.
Request
Query Parameters
skip integer
Number of records to skip. Example: 0
limit integer
Number of records per page. Example: 10
dateFrom string
Start date filter (YYYY-MM-DD).
dateTo string
End date filter (YYYY-MM-DD).
reference string
Payment reference.
merchantAccountId string
Merchant account ID filter.
mode string
Payment mode (CHARGE or PAYOUT).
status string
Payment status.
fullName string
Customer full name filter.
Responses
- 200
- 400
- 401
- 500
Payments retrieved successfully
- application/json
- Schema
- Example (auto)
Schema
objectobject
Auto-stubbed during docs build: "malipopaycentralapi_PaymentListResponse" is referenced but missing from the source OpenAPI spec. Fix upstream in the originating service spec.
{}
Bad request
- application/json
- Schema
- Example (auto)
Schema
codeint32required
messagestringrequired
{
"code": 0,
"message": "string"
}
Unauthorized
- application/json
- Schema
- Example (auto)
Schema
codeint32required
messagestringrequired
{
"code": 0,
"message": "string"
}
Internal server error
- application/json
- Schema
- Example (auto)
Schema
codeint32required
messagestringrequired
{
"code": 0,
"message": "string"
}
Authorization: apiToken
name: apiTokentype: apiKeyin: headerdescription: Project API key. Get yours from the Malipopay dashboard under Settings → API Keys.
- curl
- python
- nodejs
- php
- java
- go
- CURL
curl -L 'https://core-prod.malipopay.co.tz/api/v1/payment/search' \
-H 'Accept: application/json' \
-H 'apiToken: <apiToken>'
Response