DNSimple.DNSimpleRestClient.ListMembers C# (CSharp) Method

ListMembers() public method

List all of the current members for a domain. Domain members have the privilege of managing a domain's records and templates. Makes a GET request to the Domain Memberships List resource.
public ListMembers ( int domainId ) : dynamic
domainId int The ID of the domain for which to retrieve the members
return dynamic
        public dynamic ListMembers(int domainId)
        {
            return ListMembers(domainId.ToString());
        }

Same methods

DNSimpleRestClient::ListMembers ( string domain ) : dynamic