Remove now
DELETE
/trial-cards/{clientKey}
const url = 'https://api.harperharbor.com/open/v1/trial-cards/example';const options = {method: 'DELETE', headers: {Authorization: 'Bearer <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 https://api.harperharbor.com/open/v1/trial-cards/example \ --header 'Authorization: Bearer <token>'Card, conversations, worldbook and display rules. A trial that was published or made visible is only released, not deleted.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”clientKey
required
string
Names the trial; re-sending the same key updates it.
Responses
Section titled “Responses”{ deleted, released }
Media typeapplication/json
object
deleted
boolean
released
boolean
Examplegenerated
{ "deleted": true, "released": true}