- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-30-2017 02:44 PM
The REST Email API has two methods. One to send a new email and one for retrieving record from email log.
I could not make the send API work. Do you know how to use it?
I am using an admin user to do this and through REST API Explorer.
Solved! Go to Solution.
- Labels:
-
Integrations

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-30-2017 02:48 PM
Hello Ashwn,
Please refer the section "New Email API" here
What's New for Developers in Istanbul - Integrations, APIs, Authentication by josh.nerius

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-27-2019 02:20 PM
Great Thank You for the updated example and information.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-27-2019 02:15 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-03-2018 02:37 AM
I am trying to send email using send email API of ServiceNow but it is not working. Do you know how to use it?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-27-2019 02:13 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-16-2019 12:57 PM
I know this post is old, but it comes up in search and thought I'd post the steps I used to send an email via API.
- Add a Create ACL on sys_email table for email_api_send role
- Grant email_api_send role to a user
- In Postman, use these settings:
- https://{instance_name}.service-now.com/api/now/v1/email
- On Authorization tab, add Basic credentials
- Headers tab:
- Accept:application/json
- Content-type:application/json
- On body tab:
- Raw
- {
"to":["User1 <user1@example.com>"],
"subject":"Hello There 11",
"text":"Test Message",
"html":"<b>Test Message</b>",
"table_name":"incident",
"table_record_id":"{Incident Sys ID}",
"headers": {
"X-Custom":"header"
}
}