DNSimple.DNSimpleRestClient.AddMember C# (CSharp) Method

AddMember() public method

Add another DNSimple customer to a domain's memberships. Domain members have the privilege of managing a domain's records and templates. Makes a POST request to the Domain Memberships List resource.
You must provide an email address for the person to add. If the person already exists in DNSimple as a customer then they will immediately be added to the domain's membership list. If the person does not yet have a DNSimple account then they will receive an invitation to join via email.
public AddMember ( int domainId, string email ) : dynamic
domainId int The ID of the domain for which to retrieve the members
email string The email for the user to add as a member to this domain
return dynamic
        public dynamic AddMember(int domainId, string email)
        {
            return AddMember(domainId.ToString(), email);
        }

Same methods

DNSimpleRestClient::AddMember ( string domain, string email ) : dynamic