- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2019 11:00 PM
I wanted to know how to trigger a ServiceNow workflow via REST APIs.
Thank you,
Shrisha.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2019 05:33 AM
Take a look at:
Please mark this answer as helpful or correct, if it solves your problem.
Regards,
Alexey

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2019 02:34 PM
Hi Shirisha,
Workflows automatically starts, when certain conditions satisfied/arised. You can put a condition to start the workflow. From external application, using REST API, make that condition satisfied, which starts workflow.
For example, For the workflow, set a starting condition as "when status = new". Using REST API, from other application you can set status value to "new", so that workflow will start.
Note : Please mark my answer correct / Helpful so this question and answer will not be wipped out from the community
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2019 10:13 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2019 07:38 AM
where is the workflow is it you are planning to call from Rest api if you are planning to create a update or create a record in the target record through workflow pull the target table into the workflow and mention the choose fields conditions like when state is new or some thing like that and post the API call to get the workflow fired .
Let me know what is the target table you are planning to call in REST API
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2019 04:48 AM
I've created a basic approval workflow (using the problem table). I'm not sure what's the appropriate table to be used, I'm fine with any table for now.
Basically, I need to know how to start a workflow from an external REST API. Please could you help me with the procedure?
Thank you,
Shrisha.