Pre-define 'Email IDs to notify' with API

Pre-define 'Email IDs to notify' with API

Email ids to notify can be pre-defined while adding through v1 API. The key is "interestedParty" for the same :

Please check the below example :

data={
"operation": {
"details": {
"subject": "Cannot browse",
"description": "Unable to connect to the internet",
"requester": "Guest",
"site": "Custom Site",
"interestedParty": "tech10@sdpmsp.com,tech9@sdpmsp.com",
"account": "Sample Account",
"requesttemplate": "Unable to browse"
}
}
}






API to search users based on phone number

URL:
/api/v3/users

Method: GET

Format:
input_data={ "list_info": { "sort_field": "id","start_index":"1","row_count":"5", "sort_order": "desc", "search_fields": { "landline": "009" } } }

This is to search a requester using landline or mobile number.


Also,  it is not possible to search a request using the phone number of a requester.

                  New to ADManager Plus?

                    New to ADSelfService Plus?

                      • Related Articles

                      • How to pre-define 'Email IDs to notify' field in templates ?

                        You can set the Email IDs to notify field with a default email address auto filled for all the new tickets for a particular account This can be achieved by using Field and Form rules, however ensure that this configuration has to be done in each ...
                      • Reply a request through v3 API (Postman)

                        The API documentation for replying a request is under Admin > API Documentation > Request > Add notification Syntax of the URL: http(or https)://<servername>:<portnumber>/api/v3/requests/<Request ID>/notifications?TECHNICIAN_KEY=<API Key> Call: Post ...
                      • API - How to create Service Request including the pre-defined tasks through API

                        You can get the highlighted Task Template ID's by editing a Task Template: https://serverurl:postnumber/app#/admin/task-templates/5 The Service Category ID and Template ID (as) can be known by going to Admin > Service Category > select and edit the ...
                      • API -Listing Requesters with E-mail Address

                        1. Encode the below mentioned and change the highlighted as per yours: { "list_info": { "sort_field": "name", "start_index": 1, "sort_order": "asc", "row_count": "100", "get_total_count": true, "search_fields": { "email_id": "req1@msp.com" } }, ...
                      • How to update E-mail Id(s) To Notify using business rules

                        This is a sample python script to update the E-mail Id(s) To Notify during request create/update based on certain criteria using Business Rules Prerequisite: The SDP-MSP server should be configured to execute python script. Steps available here.  ...