Readers
Get reader configuration
GET
/
api
/
v1
/
entities
/
{entity_id}
/
readerConfiguration
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
200
application/json
Successful
The response is of type object
.
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"
}
}
}
}
Assistant
Responses are generated using AI and may contain mistakes.