Receive Attachment files from Third Party App to raise a ticket in ServiceNow Table.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2024 03:18 AM
Hi Guys,
I have built an app in ServiceNow PDI for demonstrating the ticket handling capabilities of ServiceNow. A user will enter few details like name, email, description and files related to the issue in a third-party application. Using RestAPI's, Data like Name, Email and Description can be fetched into the table and appropriate Assignee's would work on the ticket. I have done the following, please guide me or provide suggestions for effective way to develop the above-mentioned use case.
I have created a custom table in my ServiceNow PDI to test out ticketing system. The data for few fields are coming through REST API's like Name, Email and Description. I have used REST API explorer with few HTTP Protocols like GET and POST to verify. Please suggest me how do I receive attachments into my table.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2024 04:37 AM
Hi @vishal_rai
You can use Flow designer for same. as soon API/data reached in staging table , read and create record.
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.
Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]
****************************************************************************************************************
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2024 05:23 AM
Hi @vishal_rai ,
As I understand with given details, you have created a custom table and some data is coming via REST API and you need attachment via REST for same record.
Refer the attachment API document, there is an demo.
Similar thread
https://www.servicenow.com/community/itsm-forum/retrieve-and-add-attachments-rest-api/m-p/2507887
https://www.servicenow.com/community/itsm-articles/attachments-in-servicenow/ta-p/2305632
-Thanks,
AshishKM
Please mark this response as correct and helpful if it helps you can mark more that one reply as accepted solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2024 06:30 AM
Thanks @AshishKM. I will surely look into this and let you know the progress.