NPAT Posted January 26 Share Posted January 26 Hey I can't seem to find a working way to use the hornbill API to return a list of unassigned calls within a team. Any suggestions? Link to comment Share on other sites More sharing options...
Steve Giller Posted January 29 Share Posted January 29 I'm not aware of a Customer-facing API to do this. I've asked the Service Manager team to respond. I'm assuming you're referring to Requests assigned to a Team but without an Owner? Link to comment Share on other sites More sharing options...
Gareth Cantrell Posted January 30 Share Posted January 30 @NPAT you could do a call to data::entityBrowseRecords2 API with the following parameters: { "@service": "data", "@method": "entityBrowseRecords2", "params": { "application": "com.hornbill.servicemanager", "entity": "Requests", "matchScope": "all", "searchFilter": [ { "column": "h_status", "value": ["status.new","status.open"], "matchType": "exact" },{ "column": "h_fk_team_id", "value": ["ORG/TEAMID/"], "matchType": "exact" },{ "column": "h_ownerid", "value": [""], "matchType": "exact" } ] } } Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now