GET
/
api
/
v1
/
readers
/
{id}
curl --request GET \
  --url https://api.passentry.com/api/v1/readers/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "south-gate-1",
    "type": "reader",
    "attributes": {
      "name": "South Gate Reader",
      "readerType": "PassentryReader",
      "loggedIn": false,
      "qrEnabled": false,
      "mifareClassicNfcEnabled": false,
      "scanEnabled": true,
      "redeemEnabled": false,
      "addPointsEnabled": false,
      "ndefTagScanningEnabled": false,
      "lastSeenAt": "2020-03-13T13:00:00Z"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Reader ID

Response

200
application/json
Successful
data
object

Was this page helpful?