API -Listing Requesters with Phone Number

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" } }, ...
                    • 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 ...
                    • API -Listing requests based on Additional Field Values

                      This can be met through V3 API. Go to Admin > Incident Additional Fields and make a note of the "API Field Name" as highlighted below: Please follow the below mentioned to pull the requests based on the additional field values: 1. Use the Input as ...