TechStacks!

<back to all web services

AddOrganizationMember

Organization
Requires Authentication
The following routes are available for this service:
POST/orgs/{OrganizationId}/members
import java.math.*;
import java.util.*;
import net.servicestack.client.*;

public class dtos
{

    public static class AddOrganizationMember implements IPost
    {
        public Integer organizationId = null;
        public String userName = null;
        public Boolean isOwner = null;
        public Boolean isModerator = null;
        public Boolean denyPosts = null;
        public Boolean denyComments = null;
        public Boolean denyAll = null;
        public String notes = null;
        
        public Integer getOrganizationId() { return organizationId; }
        public AddOrganizationMember setOrganizationId(Integer value) { this.organizationId = value; return this; }
        public String getUserName() { return userName; }
        public AddOrganizationMember setUserName(String value) { this.userName = value; return this; }
        public Boolean getIsOwner() { return isOwner; }
        public AddOrganizationMember setIsOwner(Boolean value) { this.isOwner = value; return this; }
        public Boolean getIsModerator() { return isModerator; }
        public AddOrganizationMember setIsModerator(Boolean value) { this.isModerator = value; return this; }
        public Boolean isDenyPosts() { return denyPosts; }
        public AddOrganizationMember setDenyPosts(Boolean value) { this.denyPosts = value; return this; }
        public Boolean isDenyComments() { return denyComments; }
        public AddOrganizationMember setDenyComments(Boolean value) { this.denyComments = value; return this; }
        public Boolean isDenyAll() { return denyAll; }
        public AddOrganizationMember setDenyAll(Boolean value) { this.denyAll = value; return this; }
        public String getNotes() { return notes; }
        public AddOrganizationMember setNotes(String value) { this.notes = value; return this; }
    }

    public static class AddOrganizationMemberResponse
    {
        public ResponseStatus responseStatus = null;
        
        public ResponseStatus getResponseStatus() { return responseStatus; }
        public AddOrganizationMemberResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; }
    }

}

Java AddOrganizationMember DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv

HTTP + CSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /orgs/{OrganizationId}/members HTTP/1.1 
Host: techstacks.io 
Accept: text/csv
Content-Type: text/csv
Content-Length: length

{"organizationId":0,"userName":"String","isOwner":false,"isModerator":false,"denyPosts":false,"denyComments":false,"denyAll":false,"notes":"String"}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length

{"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}