ServiceDesk Plus MSP (API task filter)

ServiceDesk Plus MSP (API task filter)

Hello, 

Is there a way to get a list of opened task assigned to a particular person using API? I have tryed by get a list of all tasks from ServiceDesk. 

import requests

url = "https://server.com:port/api/v3/tasks"
headers = {"technician_key":"D3200000-0000-0000-0000-6F49F7AC0A9E" }
input_data = '''{

    "filter_by":{"id":"1"},
    "fields_required": [
        "id",
        "title",
        "description",
        "status",
        "owner"
    ]
}
}'''
params = {'input_data': input_data}
response = requests.get(url,headers=headers,params=params,verify=False)
print(response.text)

                New to ADManager Plus?

                  New to ADSelfService Plus?