Skip to main content
GET
/
api
/
user-api
/
payee
/
list
List Payees
curl --request GET \
  --url https://api.sandbox.paywint.com/api/user-api/payee/list \
  --header 'X-Api-Key: <x-api-key>' \
  --header 'X-Api-Secret: <x-api-secret>'
{
  "success": true,
  "status_code": 200,
  "message": "Success",
  "records": [
    {
      "payee_id": "f47ac10b-****-****-****-0e02b2c3d479",
      "name": "John Doe",
      "email": "john.doe@example.com",
      "phone_country_code": "+1",
      "phone": "1234567890",
      "created_at": "2025-06-10T18:10:42.000Z"
    }
  ],
  "totalRecords": 0,
  "queryGeneratedTime": 1771679555
}

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.

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
ExternalContactsRead · 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:1771679555

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