POST
/
api
/
platform
/
payment
/
list-received-payment
/
{user_id}
List all user received payments
curl --request POST \
  --url https://api.sandbox.paywint.com/api/platform/payment/list-received-payment/{user_id} \
  --header 'Content-Type: application/json' \
  --header 'X-Platform-ID: <x-platform-id>' \
  --header 'X-Signature: <x-signature>' \
  --data '{
  "rows_per_page": 50,
  "page_no": 1
}'
{
  "success": true,
  "status_code": 123,
  "message": "<string>",
  "records": [
    {
      "payment_id": "f47ac10b-****-****-****-0e02b2c3d479",
      "payer_id": "f47ac10b-****-****-****-0e02b2c3d479",
      "payee_id": "f47ac10b-****-****-****-0e02b2c3d479",
      "amount": 100,
      "processing_fee": 1.5,
      "delivery_fee": 0.5,
      "invoice_no": "INV-2024-001234",
      "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",
      "card_id": "f47ac10b-****-****-****-0e02b2c3d479",
      "bank_id": "f47ac10b-****-****-****-0e02b2c3d479",
      "payee_card_id": "f47ac10b-****-****-****-0e02b2c3d479",
      "payee_bank_id": "f47ac10b-****-****-****-0e02b2c3d479",
      "failure_reason": "Insufficient wallet balance"
    }
  ],
  "totalRecords": 123,
  "queryGeneratedTime": 123
}

Headers

X-Platform-ID
string<uuid>
required

Unique platform identifier (UUID). You receive this during onboarding. Must be sent with every API request.

X-Signature
string
required

HMAC-SHA256 request signature for authentication. Use your platform secret key to compute it as: METHOD + PATH + QUERY + BODY_HASH.

Path Parameters

user_id
string<uuid>
required

Unique identifier (UUID) of the user whose received payments are being retrieved.

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
PlatformPaymentRead · 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:1756883312

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