Have anyone done venafi integration with ServiceNow?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-31-2017 07:28 AM
Have anyone done venafi integration with ServiceNow, to maintain the SSL/TLS certificates in CMDB? Please advise if you have any experience towards it
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-21-2021 10:50 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-12-2023 07:44 AM
Hi Vlad,
can you please share venafi integration with servicenow technical document with me
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-23-2019 09:06 PM
Hi Nikhi,
The request syntax for the Venafi Trust Protection Platform WebSDK Authorize method looks like this:
POST https://tpp.venafi.example/vedsdk/Authorize/Content-Type: application/json
{
"Username": "local:AppAcct",
"Password": "myNotSoSecretPasswd123!"
}
It sounds like that is what you tried so my best guess without seeing your actual JSON body is that you didn't exactly match the case of the Username and Password parameters (all JSON parameters are case-sensitive) since that will result in an HTTP 400 Bad Request. The response when you successfully authenticate looks like this:
HTTP 200 OK
{
"APIKey": "e2e0bb11-155f-db6b-3384-7916ba3fcc12",
"ValidUntil": "/Date(1558670272854)/"
}
You take the APIKey value from this response and use it as the value of the X-Venafi-Api-Key HTTP header for all subsequent calls.
If you need more help using the Venafi REST API, I encourage you to please post your questions in the Venafi API Developer Forum using the URL below. That forum is monitored by Venafi technical staff from Customer Support, Professional Services, Engineering, and Product Management.
https://support.venafi.com/hc/en-us/community/topics/200489827-Forums-API-Developer-Forum
Thanks!
Ryan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-23-2019 11:49 PM
We achieved the API key and also progressed further. The difference it that we have to pass the userId and password in the content section. It is not authorizing the basic authentication that we have set up in service now.
Thanks for your help
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-27-2021 03:58 AM