Authorizations
Bearer token via Authorization header
Path Parameters
Response
Package credentials fetched successfully
import DroidrunCloud from 'droidrun-cloud';
const client = new DroidrunCloud({
apiKey: 'My API Key',
});
const packages = await client.credentials.packages.list('packageName');
console.log(packages.data);{
"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 packages = await client.credentials.packages.list('packageName');
console.log(packages.data);{
"data": [
{
"userId": "<string>",
"packageName": "<string>",
"secretPath": "<string>",
"credentialName": "<string>",
"fields": [
{
"fieldType": "email",
"value": "<string>"
}
]
}
]
}Bearer token via Authorization header
Package credentials fetched successfully
Show child attributes
Was this page helpful?