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

GetUserRelatedInformationAsync() public method

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