Heads Up :
The post you are writing will appear in a public forum. Please ensure all content is appropriate for public consumption. Review the employee guidelines for the community here.
We have a web application that uses Duo Network Gateway and it's working great when someone access it in a browser. The web app also has an api that can accept POST requests. I'd like to use this via a curl command (or similar) but am not sure how....
I'd like to create a policy via API calls (so that I can have automation do it). I looked through the documentation and see that I can get policy details and delete policies, but I don't see a way of creating a new policy. Am I missing it somewhere...
My organization uses Cisco Secure Endpoint, and I want to block an app on a specific computer. I can add the file hash for the executable to an App Blocklist, add that blocklist to a Policy, add the policy to a Group, then move the computer to that ...
I'm trying to resolve alerts using our SOAR automation. I'm using the api/v3/alerts/alert/<alert_id> endpoint and this PUT command body: {
"resolved": true,
"merit": 8,
} I'm receiving a status code 200 from Stealthwatch, so it seems like it ac...
We use the Cisco Secure Endpoint Outbreak Control IP Block Lists as part of our security workflow. Does anyone know if I can access these through the Secure Endpoint API? I've looked through the v0/v1/v3 docs but don't see any references to them
Thank you - that makes sense. Do you know how I would authenticate programatically (i.e. not through a web browser)? Or is there a webpage or doc I could look at?
Update for anyone having the same problem and looking for a solution...My issue was the REST API endpoint I was using. It's not this:api/v3/alerts/alert/<alert_id>but this:api/v3/alerts/alert/<alert_id>/Adding the "/" to the end fixed my problem. A...
Thank you both for your help. I kind of figured that, but was hoping there was a way around it. Shame that Secure Endpoint doesn't merge policies in child groups...
Thanks for the help, and for the API doc link. Unfortunately I'm still stuck. I tried sending the PATCH body using all of the fields shown in the API doc example, but still no change to the alert (and no error). I manually resolved the alert and ch...