`GET /api/apps/{id}` -- fetch an App with its membership lists, so the detail page renders in one round-trip. An id from another workspace looks identical to an unknown id (NotFound).
GET
/api/apps/{id}
const url = 'https://example.com/api/apps/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/apps/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”id
required
string format: uuid
Responses
Section titled “Responses”Media typeapplication/json
Detail-view payload – the App row plus the membership lists, so the detail page renders in one round-trip.
object
app_db_resource_id
ADR 0023 v4 / S2c – when set, runs of this App auto-inject
SET LOCAL supacloud.app_id against connections to this Resource
and the App’s per-App app_<slug> schema is bootstrapped on save.
string | null format: uuid
created_at
required
string format: date-time
created_by
string | null format: uuid
description
string | null
framework
required
ADR 0030 – build framework: plain | react | svelte.
string
id
required
string format: uuid
manifest_yaml
required
string
name
required
string
slug
required
string
updated_at
required
string format: date-time
workspace_id
required
string format: uuid
resources
required
Array<string>
scripts
required
Array<string>
workflows
required
Array<string>
Examplegenerated
{ "app_db_resource_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "created_at": "2026-04-15T12:00:00Z", "created_by": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "description": "example", "framework": "example", "id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "manifest_yaml": "example", "name": "example", "slug": "example", "updated_at": "2026-04-15T12:00:00Z", "workspace_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "resources": [ "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0" ], "scripts": [ "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0" ], "workflows": [ "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0" ]}