Skip to main content
GET
/
api
/
v2
/
customers
/
{id}
/
wallet-devices
List customer wallet platforms (iPhone / Android)
curl --request GET \
  --url https://api.zupy.com/api/v2/customers/{id}/wallet-devices/ \
  --header 'X-API-Key: <api-key>'
{
  "data": {
    "customer_id": "<string>",
    "summary": {
      "apple": {
        "installed": true,
        "pass_count": 123,
        "device_count": 123
      },
      "google": {
        "installed": true,
        "pass_count": 123,
        "device_count": 123
      }
    },
    "apple_devices": [
      {
        "device_library_identifier": "<string>",
        "first_registered_at": "2023-11-07T05:31:56Z",
        "last_registered_at": "2023-11-07T05:31:56Z",
        "registered_passes": [
          {
            "serial_number": "<string>",
            "pass_type_identifier": "<string>",
            "last_push_sent": "2023-11-07T05:31:56Z",
            "reward_name": "<string>",
            "google_object_id": "<string>"
          }
        ],
        "os_version": "<string>",
        "device_model": "<string>",
        "locale": "<string>"
      }
    ],
    "google_passes": [
      {
        "serial_number": "<string>",
        "google_object_id": "<string>",
        "reward_name": "<string>"
      }
    ]
  },
  "meta": {
    "cursor": "<string>",
    "has_next": true,
    "count": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.zupy.com/llms.txt

Use this file to discover all available pages before exploring further.

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.

Path Parameters

id
string
required

Unique identifier for this customer.

Response

data
object
required

Per-platform inventory of where the customer has installed wallet passes from your company.

meta
object
required

Cursor-based pagination metadata matching envelope middleware output.