How the story summary is written for this card
POST
/player/compact-preference
const url = 'https://api.harperharbor.com/open/v1/player/compact-preference';const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"roleId":"example","sections":["example"],"extraInstruction":"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/compact-preference \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "roleId": "example", "sections": [ "example" ], "extraInstruction": "example" }'Authorizations
Section titled “Authorizations”Request Body
Section titled “Request Body”Media typeapplication/json
object
roleId
string
sections
Array<string>
extraInstruction
string
Examplegenerated
{ "roleId": "example", "sections": [ "example" ], "extraInstruction": "example"}Responses
Section titled “Responses”Saved.