Skip to main content
POST
/
api
/
platform
/
accounts
/
list-pw-transactions
/
{user_id}
List Paywint Bank Transactions
curl --request POST \
  --url https://api.sandbox.paywint.com/api/platform/accounts/list-pw-transactions/{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,
  "pw_bank_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}'
{
  "success": true,
  "status_code": 123,
  "message": "<string>",
  "records": [
    {
      "pw_bank_id": "90efeac9-388f-48cd-bd00-d2115ac22869",
      "payment_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "description": "Invoice #1234 payment",
      "payer_payee": "Robert",
      "is_internal_payment": true,
      "is_credit": false,
      "amount": 100,
      "transaction_date": "2025-10-06",
      "id": "cb4cbbdf-a2bd-4c41-98f0-7da1d8657898"
    }
  ],
  "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

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

pw_bank_id
string<uuid>
required

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
ExternalAccountTransactionsRead · 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:1759844954

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

I