Read the persona and playbook store on the instance's behalf
GET
/api/store/{path}
const url = 'http://localhost:5173/api/store/example';const options = { method: 'GET', 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 GET \ --url http://localhost:5173/api/store/example \ --cookie authjs.session-token=<authjs.session-token>Pass-through to the store (PERSONA_STORE_URL, defaulting to the public one), so an instance fetches once for all its users and a browser with no way out still gets a catalogue. Responses are held briefly, and a held copy is served when the store is unreachable.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”path
required
string
Catch-all segment; may contain slashes.
Responses
Section titled “Responses”The store's listing, or one persona or playbook bundle, verbatim.
Media typeapplication/json
object
Examplegenerated
{}
