Remove the BYOK key for a provider (REQ-5.6).
DELETE
/api/advisor/provider-keys/{providerId}
const url = 'https://api.tradr.cloud/api/advisor/provider-keys/claude';const options = {method: 'DELETE'};
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.tradr.cloud/api/advisor/provider-keys/claudeHard-deletes the stored key for the authenticated user. The ciphertext is gone from the database; the plaintext was never persisted.
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”providerId
required
string
Responses
Section titled “Responses”Deleted.
No key configured for this provider.