/api/v2/payment/listPendingPaymentPaidControlNumberPOSTThis endpoint retrieves a list of pending payment requests that have been paid for a specific company.
Include the JWT token in the Authorization header:
Authorization: Bearer <your_jwt_token>
Content-Type: application/jsonAuthorization: Bearer <your_jwt_token>The request body should be a JSON object with the following fields:
| Field | Type | Required | Description |
|---|---|---|---|
company_uid |
string | Yes | The unique identifier of the company |
POST /api/v2/payment/listPendingPaymentPaidControlNumber
Content-Type: application/json
Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
{
"company_uid": "0001"
}
{
"status": "OK",
"message" : "list of paid control number",
"data": [
{
"id": "1234",
"control_number": "PCN123456789",
"amount": "1500.00",
"currency": "TZS",
"status": "PAID",
"customer_name": "John Doe",
"payment_date": "2025-09-23T10:30:00Z",
"reference_number": "REF123456"
}
],
}