Authorizations
Bearer token via Authorization header
import DroidrunCloud from 'droidrun-cloud';
const client = new DroidrunCloud({
apiKey: 'My API Key',
});
const credential = await client.credentials.packages.credentials.delete('credentialName', {
packageName: 'packageName',
});
console.log(credential.data);{
"success": true,
"message": "<string>",
"data": {
"userId": "<string>",
"packageName": "<string>",
"secretPath": "<string>",
"credentialName": "<string>",
"fields": [
{
"fieldType": "email",
"value": "<string>"
}
]
}
}import DroidrunCloud from 'droidrun-cloud';
const client = new DroidrunCloud({
apiKey: 'My API Key',
});
const credential = await client.credentials.packages.credentials.delete('credentialName', {
packageName: 'packageName',
});
console.log(credential.data);{
"success": true,
"message": "<string>",
"data": {
"userId": "<string>",
"packageName": "<string>",
"secretPath": "<string>",
"credentialName": "<string>",
"fields": [
{
"fieldType": "email",
"value": "<string>"
}
]
}
}Bearer token via Authorization header
Was this page helpful?