Skip to main content
GET
/
api
/
v2
/
wallet
/
passes
/
List wallet passes for customer
curl --request GET \
  --url https://api.zupy.com/api/v2/wallet/passes/ \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "pass_type": "<string>",
      "platform": "<string>",
      "status": "<string>",
      "title": "<string>",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "meta": {
    "cursor": "<string>",
    "has_next": true,
    "count": 123
  }
}

Authorizations

X-API-Key
string
header
required

Per-company partner API key (zupy_pk_…). Validated by Zupy against the company integration key hash (Story 14.x); send it on every request as the X-API-Key header. Scoped read-write to the owning company's data.

Query Parameters

customer_id
string
required

Customer KSUID

Response

data
object[]
required
meta
object
required

Cursor-based pagination metadata matching envelope middleware output.