import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
cyberark_certificate_manager: {
type: "app",
app: "cyberark_certificate_manager",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.cyberark_certificate_manager.$auth.api_url}/v1/users`,
headers: {
"accept": `application/json`,
"tppl-api-key": `${this.cyberark_certificate_manager.$auth.api_key}`,
},
})
},
})
CyberArk Certificate Manager uses API keys for authentication. When you connect your CyberArk Certificate Manager account, Pipedream securely stores the keys so you can easily authenticate to CyberArk Certificate Manager APIs in both code and no-code steps.