Relay one of the store's personas to this instance's users
PUT
/api/admin/personas/store/{id}
const url = 'http://localhost:5173/api/admin/personas/store/example';const options = { method: 'PUT', headers: {cookie: 'authjs.session-token=<authjs.session-token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request PUT \ --url http://localhost:5173/api/admin/personas/store/example \ --cookie authjs.session-token=<authjs.session-token>A reference, not a copy: nothing is installed and nothing is snapshotted, so the catalogue keeps listing it once and users install the store's own bundle.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”id
required
string
The persona's id in the store's listing.
Responses
Section titled “Responses”Relayed.

