Get reader configuration
curl --request GET \
--url https://api.passentry.com/api/v1/entities/{entity_id}/readerConfiguration \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "defd0867",
"type": "readerConfiguration",
"attributes": {
"nfcPrivateKey": "-----BEGIN EC PRIVATE KEY-----\n PRIVATE KEY\n -----END EC PRIVATE KEY-----",
"googleCollectorId": "95415519",
"applePassTypeId": "pass.com.test.test",
"googleKeyVersion": 1,
"readerConfigurationApiKey": "uwMGo/K/8SNxEznuFDZhe/lZLdk0ruGgikh1fGOGXh8KV1cdGU7vDzl8Dit0MEBhuF7sRhec2aCU9b1t3WiZDg==",
"validationConfiguration": {
"validationType": "internal"
}
}
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
entity_id
Response
Entity UUID
Cryptographic private key that ensures that the NFC passes are securely transmitted and validated.
8-digit numeric ID used by the reader to identify itself and request specific passes from the Google Wallet.
Version of the cryptographic key for securing communications with Google.
ID used by the reader to request specific passes from the Apple Wallet.
PassEntry API key used for authenticating the reader.
Validation configuration for the reader.
Type of validation: 'internal' for PassEntry Validation or 'external' for Third-Party Validation.
Validity period in seconds for 'internal' validation.
URL of the external endpoint for 'external' validation.
Was this page helpful?
curl --request GET \
--url https://api.passentry.com/api/v1/entities/{entity_id}/readerConfiguration \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "defd0867",
"type": "readerConfiguration",
"attributes": {
"nfcPrivateKey": "-----BEGIN EC PRIVATE KEY-----\n PRIVATE KEY\n -----END EC PRIVATE KEY-----",
"googleCollectorId": "95415519",
"applePassTypeId": "pass.com.test.test",
"googleKeyVersion": 1,
"readerConfigurationApiKey": "uwMGo/K/8SNxEznuFDZhe/lZLdk0ruGgikh1fGOGXh8KV1cdGU7vDzl8Dit0MEBhuF7sRhec2aCU9b1t3WiZDg==",
"validationConfiguration": {
"validationType": "internal"
}
}
}
}