Stop relaying one
DELETE
/api/admin/personas/store/{id}
const url = 'http://localhost:5173/api/admin/personas/store/example';const options = { method: 'DELETE', 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 DELETE \ --url http://localhost:5173/api/admin/personas/store/example \ --cookie authjs.session-token=<authjs.session-token>Copies people have already installed are theirs and are not touched.
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”No longer relayed.

