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"
}
}
}
}
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"
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
entity_id
Successful
The response is of type object
.
Was this page helpful?