ZendeskApi_v2.Requests.Users.SearchByCustomUserFieldAsync C# (CSharp) Method

SearchByCustomUserFieldAsync() public method

public SearchByCustomUserFieldAsync ( string fieldKey, string fieldValue ) : Task
fieldKey string
fieldValue string
return Task
        public async Task<GroupUserResponse> SearchByCustomUserFieldAsync(string fieldKey, string fieldValue)
        {
            return await GenericGetAsync<GroupUserResponse>(string.Format("users/search.json?query={0}:{1}", fieldKey, fieldValue));
        }