04-17-2026 04:46 AM
In the documentation, the UI shows Secure Access Webhooks has three authentication options:
basic
oauth
token
but one of the documentation pages says it only supports Basic authentication. Who can confirm if Bearer token authentication is supported now?
https://securitydocs.cisco.com/docs/csa/olh/161062.dita
Solved! Go to Solution.
04-27-2026 07:25 AM - edited 04-27-2026 07:27 AM
only basic is available configuration wise at this moment.
oauth and token is greyed out for me in GUI.
we are currently testing the SA webhook alerting in parallel to the webhook alerting from platform status monitoring (status.sse.cisco.com). do you found a meaningful mapping for the fields in the JSON alert send? its not very easy to further process these alerts...
04-27-2026 03:51 AM
Anyone?
04-27-2026 07:25 AM - edited 04-27-2026 07:27 AM
only basic is available configuration wise at this moment.
oauth and token is greyed out for me in GUI.
we are currently testing the SA webhook alerting in parallel to the webhook alerting from platform status monitoring (status.sse.cisco.com). do you found a meaningful mapping for the fields in the JSON alert send? its not very easy to further process these alerts...
04-28-2026 01:14 AM
You are correct, currently only basic auth is supported.
For the mapping/schema and examples please see the Alerting section under the guides:
04-29-2026 06:04 AM
@cludwigd thanks so much for confirming this and @Yaron Caspy for vendor-verification. How might partners get line of sight to the timeline for enabling token-based authorization, i.e. Bearer or Hash-based Message Authentication (HMAC), as we don't support use f basic authentication for Webhooks. I've seen similar basic auth only support for Catalyst SD-WAN.
04-29-2026 06:20 AM
Hi @Prodrick ,
Sure thing. The best way would be to request feature enhancements which will help us promote adding this. BTW, in many cases token based authentication can be achieved with basic auth by adding the token as the password along with a placeholder for the username. Here is an example which works with Splunk (I've seen it work with other products as well):
{
"name": "token",
"tags": [
"string"
],
"type": "basic-auth",
"value": {
"password": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxx",
"username": "a"
}
}* Where 'a' is the placeholder and the token is in the password field.
** Full request is here: https://developer.cisco.com/docs/cloud-security/create-integration/
*** To do this via API, you need to: 1. Create the webhook. 2. Add credentials to the webhook. 3. Create the Security Events integration and add the webhook as a target. Or you can do this in the UI 🙂
Hope this helps.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide