POST
/
api
/
user-api
/
payment
/
list
/
payment-received
List received payments
curl --request POST \
  --url https://api.sandbox.paywint.com/api/user-api/payment/list/payment-received \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <x-api-key>' \
  --header 'X-Api-Secret: <x-api-secret>' \
  --data '{
  "rows_per_page": 50,
  "page_no": 1
}'
{
  "success": true,
  "status_code": 123,
  "message": "<string>",
  "records": [
    {
      "payment_id": "d4211545-cfc9-4aa0-8fcc-e4c2639e8052",
      "payer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "payer_name": "<string>",
      "payee_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "payee_name": "<string>",
      "amount": 100,
      "currency": "USD",
      "description": "June invoice for services",
      "payment_method": "WALLET",
      "receiving_method": "WALLET",
      "created_at": "2025-06-16T10:04:51.739761Z",
      "payment_date": "2025-06-16T10:13:16.749655Z",
      "status": "success",
      "failure_reason": "Insufficient wallet balance"
    }
  ],
  "totalRecords": 123,
  "queryGeneratedTime": 123
}

Headers

X-Api-Key
string
required

Your API Key (UUID format). Required to identify and authorize each request

X-Api-Secret
string
required

Secret associated with your API Key. Used for authenticating requests. Keep this secure.

Body

application/json
rows_per_page
enum<integer>
required

Number of records to return per page. Accepted values are 10, 20, 50, or 100.

Available options:
10,
20,
50,
100
page_no
integer
required

Page number to retrieve, starting from 1. For example, page_no=1 returns the first page of results.

Required range: x >= 1
Example:

1

Response

Successful Response

success
boolean
default:true

Indicates whether the request was processed successfully.

Example:

true

status_code
integer | null
default:200

HTTP status code representing the result of the request.

message
string | null
default:Success

Short, human-readable message describing the outcome of the request.

records
UserApiPaymentRead · object[] | null

List of result items returned for the current page.

totalRecords
integer | null
default:0

Total number of matching records in the database, useful for paginating the full dataset.

queryGeneratedTime
integer | null
default:1756880309

Unix timestamp (in seconds) indicating when this response was generated.