Returns App with specified id
Returns App with specified id.
In case the query returns a 404
(Not Found
) the app was deleted and should be deleted from any caches.
Path parameters
-
ID of the App
Responses
-
200 application/vnd.api+json
OK
-
400 application/vnd.api+json
Bad request
-
401 application/vnd.api+json
OAuth token missing or invalid or a linked identity is missing.
Linked identity missing is a special case where you need to make sure that the user has additionally logged in / authorized with a third-party.
This is not relevant for most use-cases.
The specific error code that identifies a missing linked identity is
missing-linked-identity
Example:
{ "errors": [ { "id": "cbgmhslmp1o9or9kh1p0", "title": "Missing linked identity for authorized access", "detail": "Linked identity is needed to access this resource, please check why the user does not have a linked identity", "status": "401", "code": "missing-linked-identity" } ] }
-
404 application/vnd.api+json
Resource not found
-
406 application/vnd.api+json
The specified accept header is invalid
-
500 application/vnd.api+json
Internal server error
GET /apps/{appID}
curl \
-X GET https://api.pace.cloud/poi/2024-3/apps/be83d-a68d-41e3-9467-eb60442ff27b \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"data": {
"type": "locationBasedApp",
"id": "f106ac99-213c-4cf7-8c1b-1e841516026b",
"attributes": {
"appType": "fueling",
"title": "PACE Fueling App",
"subtitle": "Zahle bargeldlos mit der PACE Fueling App",
"logoUrl": "http://via.placeholder.com/200x200",
"pwaUrl": "https://cdn.example.org/pwa/fueling.html",
"androidInstantAppUrl": "https://cdn.example.org/pwa/fueling.apk",
"cache": "approaching",
"createdAt": "2018-01-01T00:00:00",
"updatedAt": "2018-06-01T00:00:00",
"deletedAt": "2018-12-01T00:00:00"
}
}
}
Response examples (400)
{
"errors": [
{
"id": "string",
"links": {
"about": "string"
},
"status": "string",
"code": "string",
"title": "string",
"detail": "string",
"source": {
"pointer": "string",
"parameter": "string"
},
"meta": {}
}
]
}
Response examples (401)
{
"errors": [
{
"id": "string",
"links": {
"about": "string"
},
"status": "string",
"code": "string",
"title": "string",
"detail": "string",
"source": {
"pointer": "string",
"parameter": "string"
},
"meta": {}
}
]
}
Response examples (404)
{
"errors": [
{
"id": "string",
"links": {
"about": "string"
},
"status": "string",
"code": "string",
"title": "string",
"detail": "string",
"source": {
"pointer": "string",
"parameter": "string"
},
"meta": {}
}
]
}
Response examples (406)
{
"errors": [
{
"id": "string",
"links": {
"about": "string"
},
"status": "string",
"code": "string",
"title": "string",
"detail": "string",
"source": {
"pointer": "string",
"parameter": "string"
},
"meta": {}
}
]
}
Response examples (500)
{
"errors": [
{
"id": "string",
"links": {
"about": "string"
},
"status": "string",
"code": "string",
"title": "string",
"detail": "string",
"source": {
"pointer": "string",
"parameter": "string"
},
"meta": {}
}
]
}