Save per-card settings
POST
/player/role-settings/save
const url = 'https://api.harperharbor.com/open/v1/player/role-settings/save';const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"roleId":"example"}'};
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://api.harperharbor.com/open/v1/player/role-settings/save \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "roleId": "example" }'Send only the fields you change. Persona text goes through moderation.
Authorizations
Section titled “Authorizations”Request Body
Section titled “Request Body”Media typeapplication/json
object
roleId
required
string
key
additional properties
any
Examplegenerated
{ "roleId": "example"}Responses
Section titled “Responses”Saved.