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,
})
},
})
Emit new event when a new endpoint is registered in Bitdefender GravityZone.
Emit new event when a new Root Cause Analysis (RCA) is displayed under the Incidents section of Control Center.
Emit new event when a potentially dangerous application is detected and blocked on an endpoint
Retrieve details about a specific policy. See the documentation
Get the status of a scan task. [See the documentation(https://www.bitdefender.com/business/support/en/77209-440638-gettaskstatus.html)
Move an endpoint to a different group. See the documentation
Trigger a scan on a specific endpoint. See the documentation
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".