TechStacks!

<back to all web services

UpdateOrganizationMember

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

public class dtos
{

    public static class UpdateOrganizationMember implements IPut
    {
        public Integer organizationId = null;
        public Integer userId = 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 UpdateOrganizationMember setOrganizationId(Integer value) { this.organizationId = value; return this; }
        public Integer getUserId() { return userId; }
        public UpdateOrganizationMember setUserId(Integer value) { this.userId = value; return this; }
        public Boolean getIsOwner() { return isOwner; }
        public UpdateOrganizationMember setIsOwner(Boolean value) { this.isOwner = value; return this; }
        public Boolean getIsModerator() { return isModerator; }
        public UpdateOrganizationMember setIsModerator(Boolean value) { this.isModerator = value; return this; }
        public Boolean isDenyPosts() { return denyPosts; }
        public UpdateOrganizationMember setDenyPosts(Boolean value) { this.denyPosts = value; return this; }
        public Boolean isDenyComments() { return denyComments; }
        public UpdateOrganizationMember setDenyComments(Boolean value) { this.denyComments = value; return this; }
        public Boolean isDenyAll() { return denyAll; }
        public UpdateOrganizationMember setDenyAll(Boolean value) { this.denyAll = value; return this; }
        public String getNotes() { return notes; }
        public UpdateOrganizationMember setNotes(String value) { this.notes = value; return this; }
    }

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

}

Java UpdateOrganizationMember DTOs

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

HTTP + JSV

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

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

{
	organizationId: 0,
	userId: 0,
	isOwner: False,
	isModerator: False,
	denyPosts: False,
	denyComments: False,
	denyAll: False,
	notes: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

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