Creating Tasks in ServiceNow via REST message from a Third Party Application
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2023 09:13 AM
Hi Experts!
I have a requirement where a Third party application can send API calls to the ServiceNow platform and create tasks with the details mentioned in the API call. What should be best way to achieve this and what details I would need to share with a third party App teams?
Any guidance will be appreciated here!
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2023 12:51 AM
Hi @DrewW @Jaspal Singh @Sandeep Rajput ,
Thanks for the response, I am inclined more towards using the Scripted Rest API and in the table API, I would need to expose the entire table.
I have created a Scripted Rest Api record with a "Post" resource record.
I am sending a JSON REST Call from Postman, as below:

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2023 01:17 AM
@Shantanu1 Replace line number 5 in your scripted rest from gs.log(requestData); with gs.log(JSON.stringify(requestData));
This above line will show the response JSON in logs.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2023 05:07 AM
Thanks @Sandeep Rajput , It worked!