Publish the personas an admin wrote and flagged shared
PUT
/api/admin/personas
const url = 'http://localhost:5173/api/admin/personas';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 \ --cookie authjs.session-token=<authjs.session-token>The body is the complete answer to "which of my personas are shared", so it replaces the list. What the instance relays from the store is a separate list of ids and is untouched.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Published.
The body is not an array.

