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

GetUsersInOrganizationAsync() public method

public GetUsersInOrganizationAsync ( long id ) : Task
id long
return Task
        public async Task<GroupUserResponse> GetUsersInOrganizationAsync(long id)
        {
            return await GenericGetAsync<GroupUserResponse>(string.Format("organizations/{0}/users.json", id));
        }