Skip to main content
GET
/
me
/
claims
List the user's wallet claims
curl --request GET \
  --url http://localhost:4000/me/claims \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "voucherId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "claimedAt": "2023-11-07T05:31:56Z",
    "voucherTitle": "<string>",
    "voucherIsActive": true,
    "merchantId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  }
]

Authorizations

Authorization
string
header
required

Bearer JWT signed by your app, with iss matching the issuer registered on the partner record. Verified against your JWKS URL or static public key.

Response

200 - application/json

Default Response

id
string<uuid>
voucherId
string<uuid>
claimedAt
string<date-time>
voucherTitle
string
voucherIsActive
boolean
merchantId
string<uuid>