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

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

entity_id
string
required

entity_id

Response

200
application/json
Successful
data
object

Was this page helpful?