GET
/
api
/
v1
/
entities
/
{id}
curl --request GET \
  --url https://api.passentry.com/api/v1/entities/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "37ae0eaa",
    "type": "entity",
    "attributes": {
      "name": "PassEntry Supermarket",
      "passDeeplinks": {
        "apple": "shoebox://pass/pass.com.test.test/{PASSENTRY_PASS_UUID}",
        "google": "https://pay.google.com/gp/v/object/3388000000022258457.{PASSENTRY_PASS_UUID}"
      }
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Entity ID

Response

200
application/json
Successful
data
object

Was this page helpful?