We want to be able to have our major incidents feed automatically into our status page. I'm guessing servicenow has APIs exposed to help with this process.
Hi @Raschke, Ben (TR Tech, Content & Ops)
You would need to use the API in order to create the incidents (and update them). There is actually better API documentation here that I would recommend. You should probably look at the 'incidents' endpoints.
Note: We use ServiceNow at Broadcom and there is no integration. ServiceNow were not exactly helpful in helping us setting up APIs so we had to build our own integration via the API.
Thanks,
Nick
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Nick,
What kind of integration you have build and how ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Raschke, Ben (TR Tech, Content & Ops) ,
I'm not sure about the ServiceNow API but there is definitely an API on the StatusPage side that you could use to build out an integration.
There is some information with links of where to get started in the status Page integrations documentation page here:
Specifically this portion:
Automation via API or email
Use our REST API to programmatically update your status page by writing your own integration, or automatically update the status of components by triggering en email with a subject line containing the words “UP” or “DOWN”.
Regards,
Earl
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks very much Earl!
Any thoughts on what question I would ask ServiceNow? You may not have knowledge of ServiceNow, but I thought I would ask.
Not sure if it would be a PUT method from ServiceNow to Statuspage but think it would be. Thank you again.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Raschke, Ben (TR Tech, Content & Ops) ,
There are details on the rest methods under the basics section, here:
PUT, PATCH, or POST would be the methods used to input data to statuspage under varying scenarios:
RESTful Interface
Wherever possible, the API seeks to implement repeatable patterns with logical, representative URLs and descriptive HTTP verbs. Below are some examples and conventions you will see throughout the documentation.
- Collections are buckets: https://api.statuspage.io/v1/pages/asdf123/incidents.json
- Elements have unique IDs: https://api.statuspage.io/v1/pages/asdf123/incidents/jklm456.json
- GET will retrieve information about a collection/element
- POST will create an element in a collection
- PATCH will update a single element
- PUT will replace a single element in a collection (rarely used)
- DELETE will destroy a single element
Then I located the following documentation for the servicenow API that may help further:
Regards,
Earl
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.