TechStacks!

<back to all web services

SetOrganizationMembers

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

public class dtos
{

    public static class SetOrganizationMembers implements IPost
    {
        public Integer organizationId = null;
        public ArrayList<String> githubUserNames = null;
        public ArrayList<String> twitterUserNames = null;
        public ArrayList<String> emails = null;
        public Boolean removeUnspecifiedMembers = null;
        public Boolean isOwner = null;
        public Boolean isModerator = null;
        public Boolean denyPosts = null;
        public Boolean denyComments = null;
        public Boolean denyAll = null;
        
        public Integer getOrganizationId() { return organizationId; }
        public SetOrganizationMembers setOrganizationId(Integer value) { this.organizationId = value; return this; }
        public ArrayList<String> getGithubUserNames() { return githubUserNames; }
        public SetOrganizationMembers setGithubUserNames(ArrayList<String> value) { this.githubUserNames = value; return this; }
        public ArrayList<String> getTwitterUserNames() { return twitterUserNames; }
        public SetOrganizationMembers setTwitterUserNames(ArrayList<String> value) { this.twitterUserNames = value; return this; }
        public ArrayList<String> getEmails() { return emails; }
        public SetOrganizationMembers setEmails(ArrayList<String> value) { this.emails = value; return this; }
        public Boolean isRemoveUnspecifiedMembers() { return removeUnspecifiedMembers; }
        public SetOrganizationMembers setRemoveUnspecifiedMembers(Boolean value) { this.removeUnspecifiedMembers = value; return this; }
        public Boolean getIsOwner() { return isOwner; }
        public SetOrganizationMembers setIsOwner(Boolean value) { this.isOwner = value; return this; }
        public Boolean getIsModerator() { return isModerator; }
        public SetOrganizationMembers setIsModerator(Boolean value) { this.isModerator = value; return this; }
        public Boolean isDenyPosts() { return denyPosts; }
        public SetOrganizationMembers setDenyPosts(Boolean value) { this.denyPosts = value; return this; }
        public Boolean isDenyComments() { return denyComments; }
        public SetOrganizationMembers setDenyComments(Boolean value) { this.denyComments = value; return this; }
        public Boolean isDenyAll() { return denyAll; }
        public SetOrganizationMembers setDenyAll(Boolean value) { this.denyAll = value; return this; }
    }

    public static class SetOrganizationMembersResponse
    {
        public ArrayList<Integer> userIdsAdded = null;
        public ArrayList<Integer> userIdsRemoved = null;
        public ResponseStatus responseStatus = null;
        
        public ArrayList<Integer> getUserIdsAdded() { return userIdsAdded; }
        public SetOrganizationMembersResponse setUserIdsAdded(ArrayList<Integer> value) { this.userIdsAdded = value; return this; }
        public ArrayList<Integer> getUserIdsRemoved() { return userIdsRemoved; }
        public SetOrganizationMembersResponse setUserIdsRemoved(ArrayList<Integer> value) { this.userIdsRemoved = value; return this; }
        public ResponseStatus getResponseStatus() { return responseStatus; }
        public SetOrganizationMembersResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; }
    }

}

Java SetOrganizationMembers DTOs

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

To embed the response in a jsonp callback, append ?callback=myCallback

HTTP + JSON

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

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

{"organizationId":0,"githubUserNames":["String"],"twitterUserNames":["String"],"emails":["String"],"removeUnspecifiedMembers":false,"isOwner":false,"isModerator":false,"denyPosts":false,"denyComments":false,"denyAll":false}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

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