GET API or POST API to the Business Application table

dennisandrison
Kilo Expert

Current state:

We have scheduled report that queries the business application table and returns the following fields Name, Business Critically, On Call Team, Vendor, and Phone.  This report is then emailed to a user. This user then manipulates the fie and posts to an internal web server.    I would like to stop sending the report nightly and have the user query the table using an API call.  Does anyone know if SN out of the box has a API call to perform this?   IF not does anyone have any experience with writing an API to be called by GO ANYWHERE application?

2 REPLIES 2

Harsh Vardhan
Giga Patron

you can use rest message here to post the sn data to GO ANYWHERE application.

 

to build the rest message you have use scripted outbound rest message.

 

adding service now doc link. just give a try and let us know if you need any further help.

https://docs.servicenow.com/bundle/london-application-development/page/integrate/outbound-rest/conce...

 

ARG645
Tera Guru

Your user can use TABLE API's to query the business applications table and get the data. 

 

Example: to get all the data from the business application table. Perform a GET operation on the below endpoint

https://*******.service-now.com/api/now/v2/table/cmdb_ci_business_app

 

You can much more.

checkout the below links: 

Table API