Entities
Show Entity
Entities
Show Entity
Retrieve an entity by ID
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
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Entity ID
Response
200
application/json
Successful
Example:
"entity"
Name of the entity
Was this page helpful?
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}"
}
}
}
}