- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-07-2023 07:02 AM
Is there any integration possible between servicenow and any image editor.
If so, please guide me with it.
Thank You.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-07-2023 12:32 PM
Hi @akshay Jugra,
Get the Image Editor API:
• Choose an image editor with a RESTful API create rest message with endpoint and credentials for Adobe Creative Cloud, Pixlr, or Cloudinary.
2. Configure API Credentials:
• Sign up for the image editor’s API and get your API key configure that credentials in ServiceNow access token with oauth 2.0
3. Trigger rest message from script include or business rule or schedule job as per your
var r = new sn_ws. RESTMessageV2('Rest message name', 'post');
var response = r.execute();
var status=getStatusCode();
if(status==200){
var body =response.getbody();
var parse=JSON.parse(body);
get values from parse variable
4. Authentication:
• Include API credentials securely in your HTTP requests
requestOptions.headers = {
'Content-Type': 'application/json',
'Authorization': `Bearer ${apiKey}`,
};
5. Define Image Editing Actions:
• Specify the image editing action and parameters.
Thanks,
Anand
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-07-2023 12:32 PM
Hi @akshay Jugra,
Get the Image Editor API:
• Choose an image editor with a RESTful API create rest message with endpoint and credentials for Adobe Creative Cloud, Pixlr, or Cloudinary.
2. Configure API Credentials:
• Sign up for the image editor’s API and get your API key configure that credentials in ServiceNow access token with oauth 2.0
3. Trigger rest message from script include or business rule or schedule job as per your
var r = new sn_ws. RESTMessageV2('Rest message name', 'post');
var response = r.execute();
var status=getStatusCode();
if(status==200){
var body =response.getbody();
var parse=JSON.parse(body);
get values from parse variable
4. Authentication:
• Include API credentials securely in your HTTP requests
requestOptions.headers = {
'Content-Type': 'application/json',
'Authorization': `Bearer ${apiKey}`,
};
5. Define Image Editing Actions:
• Specify the image editing action and parameters.
Thanks,
Anand
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-10-2023 09:35 PM
can you please elaborate how to configure image editing actions step after successful API configuration.
Thanks.