`POST /api/apps/{id}/install` -- parse the App's manifest_yaml and wire up the join rows. Idempotent: re-running install never duplicates membership. A member id from another workspace returns 403.
POST
/api/apps/{id}/install
const url = 'https://example.com/api/apps/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/install';const options = {method: 'POST'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/api/apps/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/installParameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”id
required
string format: uuid
Responses
Section titled “Responses”Media typeapplication/json
Returned by install – the counts of each member kind that were
wired into the join tables, so the UI can render a clean summary.
object
resources
required
integer
scripts
required
integer
workflows
required
integer
Examplegenerated
{ "resources": 1, "scripts": 1, "workflows": 1}