Get the list of registered devices pass to update

GET /wallet/apple-web-service/v1/devices/{deviceLibraryIdentifier}/registrations/{passTypeIdentifier}

Path parameters

  • deviceLibraryIdentifier string Required

    The device library identifier

  • passTypeIdentifier string Required

    The pass type identifier

Responses

  • 200 application/json

    Sucessfully retrieved the list of registered devices

    Hide response attributes Show response attributes object
    • serialNumbers array[string]

      The serial numbers of the passes to update

    • lastUpdated string(date-time)

      The last updated date of the passes to update

  • 401 application/json

    Unauthorized.

    Hide response attribute Show response attribute object
    • message string
  • 403

    Forbidden - You don't have permission to access this route

GET /wallet/apple-web-service/v1/devices/{deviceLibraryIdentifier}/registrations/{passTypeIdentifier}
curl \
 --request GET 'https://domain.tld/api/v2/wallet/apple-web-service/v1/devices/{deviceLibraryIdentifier}/registrations/{passTypeIdentifier}' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "serialNumbers": [
    "123456",
    "789012"
  ],
  "lastUpdated": "2023-10-01T12:00:00Z"
}
Response examples (401)
{
  "message": "Unauthorized."
}