Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Entity ID
Response
Successful
The response is of type object
.
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}"
}
}
}
}
Retrieve an entity by 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}"
}
}
}
}
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?