get /apps/{id}
Returns details about a specific app.
This endpoint returns detailed information about the app specified by the id
parameter. The calling user must be authorized to view the specified app.
Path parameters
- id (required)
- The ID of the app.
Return type
Example data
Content-Type: application/json
{
"data" : {
"created" : "2000-01-23T04:56:07.000+00:00",
"lastUpdate" : "2000-01-23T04:56:07.000+00:00",
"name" : "name",
"description" : "description",
"id" : "00000000-0000-0000-0000-000000000000",
"enabled" : true
}
}
Responses
- 200
- Success. The app details are returned.
- 400
- The id parameter is malformed.
- 404
- An app with the specified ID does not exist.