how to create attachment from external for loading data using scheduled import
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2023 05:06 AM
My requirement is upload data using scheduled import data but need to create attachment from external so we not having load data module access and inbound mail access.
data sheet need sent to ServiceNow. Could please share other pliability to create attachment form external .if possible we send attachment form externally. I will add to data source record and excecated from schedule import.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2023 05:54 AM
Hi @Satyanarayana j ,
Hope you are doing great.
a high-level outline of the technical solution:
- Implement a secure file transfer protocol (e.g., SFTP) to facilitate the data sheet's safe transfer from the external source to ServiceNow.
Create a custom API endpoint on ServiceNow that allows external systems to upload attachments.
Implement appropriate authentication and authorization mechanisms to ensure only authorized systems can access the API.
Configure the external system to send data along with the attachments to the ServiceNow API endpoint securely.
On the ServiceNow side, write server-side code (Business Rules, Script Includes, etc.) to handle the incoming data and attachments. Store the attachments appropriately in the desired record on ServiceNow.
Set up a scheduled import job on ServiceNow to fetch and process the data, including the attachments, from the data sheet provided externally
Regards,
Riya Verma