import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bitdefender_gravityzone: {
type: "app",
app: "bitdefender_gravityzone",
}
},
async run({steps, $}) {
const data = {
"id": "120000",
"jsonrpc": "2.0",
"method": "getAccountDetails",
"params": {}
}
return await axios($, {
method: "POST",
url: `${this.bitdefender_gravityzone.$auth.api_url}/v1.0/jsonrpc/accounts`,
headers: {
"content-type": `application/json`,
},
auth: {
username: `${this.bitdefender_gravityzone.$auth.api_key}`,
password: ``,
},
data,
})
},
})
Bitdefender GravityZone uses API keys for authentication. When you connect your Bitdefender GravityZone account, Pipedream securely stores the keys so you can easily authenticate to Bitdefender GravityZone APIs in both code and no-code steps.
To generate your API Key and Access URL, sign in and go to the user menu on the top right, then select "My account", scroll down to "Control Center API".