API -Listing Requesters with Phone Number
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": "25",
"get_total_count": true,
"search_fields": {
"mobile": "98765432100"
}
},
"fields_required": [
"name","mobile"
]
}
2. Make sure to include input_data at the beginning of the parameter as highlighted below:
As a URL, you can make use of the below by replacing your application URL values as per yours:
New to ADSelfService Plus?
Related Articles
API -Listing Account Specific Requesters
1. Encode (Used for GET calls alone) the below values thereby replacing the Account Name as per yours : { "operation":{ "details":{ "accountname": "Sample Account", "sitename": "0" } } } 2. The site name value is set as "0", which will list the ...
API - Listing of Worklogtype
1. Go to Admin > API > Reports > Execute Query: select * from worklogtypedefinition 2. Sharing screenshot for your reference:
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" } }, ...
Query to export All Requesters from All Accounts (MSSQL & PGSQL)
Tested in builds from PGSQL (14300) or MSSQL (14306) Execute the below query under Reports > New Query Reports: SELECT AaaUser.USER_ID,AaaUser.FIRST_NAME "FullName",AaaLogin.NAME "LoginName",AaaLogin.DOMAINNAME "Domain",AaaContactInfo.EMAILID ...
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 ...