Skip to main content
GET
/
api
/
user-api
/
card
/
payee
/
pw-card
/
issued
List issued Paywint Cards for Payee
curl --request GET \
  --url https://api.sandbox.paywint.com/api/user-api/card/payee/pw-card/issued \
  --header 'X-Api-Key: <x-api-key>' \
  --header 'X-Api-Secret: <x-api-secret>'
{
  "success": true,
  "status_code": 200,
  "message": "Success",
  "records": [
    {
      "address_line": "742 Evergreen Terrace",
      "amount": 150,
      "card_nick_name": "Employee Performance Bonus",
      "card_number": "**5426",
      "city": "Austin",
      "country": "US",
      "created_at": "2026-02-12T10:15:30Z",
      "first_name": "Michael",
      "last_name": "Anderson",
      "payee_card_id": "f24a8e7c-7f2b-4f39-bc5d-98e01a123456",
      "payee_id": "c9b1f3b2-8d9a-4f1b-a9e5-6a77f0b12345",
      "request_id": "f24a8e7c-7f2b-4f39-bc5d-98e01a123456",
      "state": "TX",
      "status": "approved",
      "zip": "78701"
    }
  ],
  "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
ExternalIssuedPaywintGiftCardRead · 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.