TechStacks!

<back to all web services

GetOrganizationAdmin

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

public class dtos
{

    public static class GetOrganizationAdmin implements IGet
    {
        public Integer id = null;
        
        public Integer getId() { return id; }
        public GetOrganizationAdmin setId(Integer value) { this.id = value; return this; }
    }

    public static class GetOrganizationAdminResponse
    {
        public ArrayList<OrganizationLabel> labels = null;
        public ArrayList<OrganizationMember> members = null;
        public ArrayList<OrganizationMemberInvite> memberInvites = null;
        public ArrayList<PostReportInfo> reportedPosts = null;
        public ArrayList<PostCommentReportInfo> reportedPostComments = null;
        public ResponseStatus responseStatus = null;
        
        public ArrayList<OrganizationLabel> getLabels() { return labels; }
        public GetOrganizationAdminResponse setLabels(ArrayList<OrganizationLabel> value) { this.labels = value; return this; }
        public ArrayList<OrganizationMember> getMembers() { return members; }
        public GetOrganizationAdminResponse setMembers(ArrayList<OrganizationMember> value) { this.members = value; return this; }
        public ArrayList<OrganizationMemberInvite> getMemberInvites() { return memberInvites; }
        public GetOrganizationAdminResponse setMemberInvites(ArrayList<OrganizationMemberInvite> value) { this.memberInvites = value; return this; }
        public ArrayList<PostReportInfo> getReportedPosts() { return reportedPosts; }
        public GetOrganizationAdminResponse setReportedPosts(ArrayList<PostReportInfo> value) { this.reportedPosts = value; return this; }
        public ArrayList<PostCommentReportInfo> getReportedPostComments() { return reportedPostComments; }
        public GetOrganizationAdminResponse setReportedPostComments(ArrayList<PostCommentReportInfo> value) { this.reportedPostComments = value; return this; }
        public ResponseStatus getResponseStatus() { return responseStatus; }
        public GetOrganizationAdminResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; }
    }

    public static class OrganizationLabel
    {
        public String slug = null;
        public Integer organizationId = null;
        public String description = null;
        public String color = null;
        
        public String getSlug() { return slug; }
        public OrganizationLabel setSlug(String value) { this.slug = value; return this; }
        public Integer getOrganizationId() { return organizationId; }
        public OrganizationLabel setOrganizationId(Integer value) { this.organizationId = value; return this; }
        public String getDescription() { return description; }
        public OrganizationLabel setDescription(String value) { this.description = value; return this; }
        public String getColor() { return color; }
        public OrganizationLabel setColor(String value) { this.color = value; return this; }
    }

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

    public static class OrganizationMemberInvite
    {
        public Integer id = null;
        public Integer organizationId = null;
        public Integer userId = null;
        public String userName = null;
        public Date dismissed = null;
        
        public Integer getId() { return id; }
        public OrganizationMemberInvite setId(Integer value) { this.id = value; return this; }
        public Integer getOrganizationId() { return organizationId; }
        public OrganizationMemberInvite setOrganizationId(Integer value) { this.organizationId = value; return this; }
        public Integer getUserId() { return userId; }
        public OrganizationMemberInvite setUserId(Integer value) { this.userId = value; return this; }
        public String getUserName() { return userName; }
        public OrganizationMemberInvite setUserName(String value) { this.userName = value; return this; }
        public Date getDismissed() { return dismissed; }
        public OrganizationMemberInvite setDismissed(Date value) { this.dismissed = value; return this; }
    }

    public static class PostReportInfo
    {
        public Long id = null;
        public Integer organizationId = null;
        public Long postId = null;
        public Integer userId = null;
        public String userName = null;
        public FlagType flagType = null;
        public String reportNotes = null;
        public Date created = null;
        public Date acknowledged = null;
        public String acknowledgedBy = null;
        public Date dismissed = null;
        public String dismissedBy = null;
        public String title = null;
        public Integer reportCount = null;
        public String createdBy = null;
        
        public Long getId() { return id; }
        public PostReportInfo setId(Long value) { this.id = value; return this; }
        public Integer getOrganizationId() { return organizationId; }
        public PostReportInfo setOrganizationId(Integer value) { this.organizationId = value; return this; }
        public Long getPostId() { return postId; }
        public PostReportInfo setPostId(Long value) { this.postId = value; return this; }
        public Integer getUserId() { return userId; }
        public PostReportInfo setUserId(Integer value) { this.userId = value; return this; }
        public String getUserName() { return userName; }
        public PostReportInfo setUserName(String value) { this.userName = value; return this; }
        public FlagType getFlagType() { return flagType; }
        public PostReportInfo setFlagType(FlagType value) { this.flagType = value; return this; }
        public String getReportNotes() { return reportNotes; }
        public PostReportInfo setReportNotes(String value) { this.reportNotes = value; return this; }
        public Date getCreated() { return created; }
        public PostReportInfo setCreated(Date value) { this.created = value; return this; }
        public Date getAcknowledged() { return acknowledged; }
        public PostReportInfo setAcknowledged(Date value) { this.acknowledged = value; return this; }
        public String getAcknowledgedBy() { return acknowledgedBy; }
        public PostReportInfo setAcknowledgedBy(String value) { this.acknowledgedBy = value; return this; }
        public Date getDismissed() { return dismissed; }
        public PostReportInfo setDismissed(Date value) { this.dismissed = value; return this; }
        public String getDismissedBy() { return dismissedBy; }
        public PostReportInfo setDismissedBy(String value) { this.dismissedBy = value; return this; }
        public String getTitle() { return title; }
        public PostReportInfo setTitle(String value) { this.title = value; return this; }
        public Integer getReportCount() { return reportCount; }
        public PostReportInfo setReportCount(Integer value) { this.reportCount = value; return this; }
        public String getCreatedBy() { return createdBy; }
        public PostReportInfo setCreatedBy(String value) { this.createdBy = value; return this; }
    }

    public static enum FlagType
    {
        Violation,
        Spam,
        Abusive,
        Confidential,
        OffTopic,
        Other;
    }

    public static class PostCommentReportInfo
    {
        public Long id = null;
        public Integer organizationId = null;
        public Long postId = null;
        public Long postCommentId = null;
        public Integer userId = null;
        public String userName = null;
        public FlagType flagType = null;
        public String reportNotes = null;
        public Date created = null;
        public Date acknowledged = null;
        public String acknowledgedBy = null;
        public Date dismissed = null;
        public String dismissedBy = null;
        public String contentHtml = null;
        public Integer reportCount = null;
        public String createdBy = null;
        
        public Long getId() { return id; }
        public PostCommentReportInfo setId(Long value) { this.id = value; return this; }
        public Integer getOrganizationId() { return organizationId; }
        public PostCommentReportInfo setOrganizationId(Integer value) { this.organizationId = value; return this; }
        public Long getPostId() { return postId; }
        public PostCommentReportInfo setPostId(Long value) { this.postId = value; return this; }
        public Long getPostCommentId() { return postCommentId; }
        public PostCommentReportInfo setPostCommentId(Long value) { this.postCommentId = value; return this; }
        public Integer getUserId() { return userId; }
        public PostCommentReportInfo setUserId(Integer value) { this.userId = value; return this; }
        public String getUserName() { return userName; }
        public PostCommentReportInfo setUserName(String value) { this.userName = value; return this; }
        public FlagType getFlagType() { return flagType; }
        public PostCommentReportInfo setFlagType(FlagType value) { this.flagType = value; return this; }
        public String getReportNotes() { return reportNotes; }
        public PostCommentReportInfo setReportNotes(String value) { this.reportNotes = value; return this; }
        public Date getCreated() { return created; }
        public PostCommentReportInfo setCreated(Date value) { this.created = value; return this; }
        public Date getAcknowledged() { return acknowledged; }
        public PostCommentReportInfo setAcknowledged(Date value) { this.acknowledged = value; return this; }
        public String getAcknowledgedBy() { return acknowledgedBy; }
        public PostCommentReportInfo setAcknowledgedBy(String value) { this.acknowledgedBy = value; return this; }
        public Date getDismissed() { return dismissed; }
        public PostCommentReportInfo setDismissed(Date value) { this.dismissed = value; return this; }
        public String getDismissedBy() { return dismissedBy; }
        public PostCommentReportInfo setDismissedBy(String value) { this.dismissedBy = value; return this; }
        public String getContentHtml() { return contentHtml; }
        public PostCommentReportInfo setContentHtml(String value) { this.contentHtml = value; return this; }
        public Integer getReportCount() { return reportCount; }
        public PostCommentReportInfo setReportCount(Integer value) { this.reportCount = value; return this; }
        public String getCreatedBy() { return createdBy; }
        public PostCommentReportInfo setCreatedBy(String value) { this.createdBy = value; return this; }
    }

}

Java GetOrganizationAdmin DTOs

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

HTTP + XML

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

GET /orgs/{Id}/admin HTTP/1.1 
Host: techstacks.io 
Accept: application/xml
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<GetOrganizationAdminResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel">
  <Labels xmlns:d2p1="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">
    <d2p1:OrganizationLabel>
      <d2p1:Color>String</d2p1:Color>
      <d2p1:Description>String</d2p1:Description>
      <d2p1:OrganizationId>0</d2p1:OrganizationId>
      <d2p1:Slug>String</d2p1:Slug>
    </d2p1:OrganizationLabel>
  </Labels>
  <MemberInvites xmlns:d2p1="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">
    <d2p1:OrganizationMemberInvite>
      <d2p1:Dismissed>0001-01-01T00:00:00</d2p1:Dismissed>
      <d2p1:Id>0</d2p1:Id>
      <d2p1:OrganizationId>0</d2p1:OrganizationId>
      <d2p1:UserId>0</d2p1:UserId>
      <d2p1:UserName>String</d2p1:UserName>
    </d2p1:OrganizationMemberInvite>
  </MemberInvites>
  <Members xmlns:d2p1="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">
    <d2p1:OrganizationMember>
      <d2p1:DenyAll>false</d2p1:DenyAll>
      <d2p1:DenyComments>false</d2p1:DenyComments>
      <d2p1:DenyPosts>false</d2p1:DenyPosts>
      <d2p1:Id>0</d2p1:Id>
      <d2p1:IsModerator>false</d2p1:IsModerator>
      <d2p1:IsOwner>false</d2p1:IsOwner>
      <d2p1:Notes>String</d2p1:Notes>
      <d2p1:OrganizationId>0</d2p1:OrganizationId>
      <d2p1:UserId>0</d2p1:UserId>
      <d2p1:UserName>String</d2p1:UserName>
    </d2p1:OrganizationMember>
  </Members>
  <ReportedPostComments>
    <PostCommentReportInfo>
      <Acknowledged>0001-01-01T00:00:00</Acknowledged>
      <AcknowledgedBy>String</AcknowledgedBy>
      <ContentHtml>String</ContentHtml>
      <Created>0001-01-01T00:00:00</Created>
      <CreatedBy>String</CreatedBy>
      <Dismissed>0001-01-01T00:00:00</Dismissed>
      <DismissedBy>String</DismissedBy>
      <FlagType>Violation</FlagType>
      <Id>0</Id>
      <OrganizationId>0</OrganizationId>
      <PostCommentId>0</PostCommentId>
      <PostId>0</PostId>
      <ReportCount>0</ReportCount>
      <ReportNotes>String</ReportNotes>
      <UserId>0</UserId>
      <UserName>String</UserName>
    </PostCommentReportInfo>
  </ReportedPostComments>
  <ReportedPosts>
    <PostReportInfo>
      <Acknowledged>0001-01-01T00:00:00</Acknowledged>
      <AcknowledgedBy>String</AcknowledgedBy>
      <Created>0001-01-01T00:00:00</Created>
      <CreatedBy>String</CreatedBy>
      <Dismissed>0001-01-01T00:00:00</Dismissed>
      <DismissedBy>String</DismissedBy>
      <FlagType>Violation</FlagType>
      <Id>0</Id>
      <OrganizationId>0</OrganizationId>
      <PostId>0</PostId>
      <ReportCount>0</ReportCount>
      <ReportNotes>String</ReportNotes>
      <Title>String</Title>
      <UserId>0</UserId>
      <UserName>String</UserName>
    </PostReportInfo>
  </ReportedPosts>
  <ResponseStatus xmlns:d2p1="http://schemas.servicestack.net/types">
    <d2p1:ErrorCode>String</d2p1:ErrorCode>
    <d2p1:Message>String</d2p1:Message>
    <d2p1:StackTrace>String</d2p1:StackTrace>
    <d2p1:Errors>
      <d2p1:ResponseError>
        <d2p1:ErrorCode>String</d2p1:ErrorCode>
        <d2p1:FieldName>String</d2p1:FieldName>
        <d2p1:Message>String</d2p1:Message>
        <d2p1:Meta xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
          <d5p1:KeyValueOfstringstring>
            <d5p1:Key>String</d5p1:Key>
            <d5p1:Value>String</d5p1:Value>
          </d5p1:KeyValueOfstringstring>
        </d2p1:Meta>
      </d2p1:ResponseError>
    </d2p1:Errors>
    <d2p1:Meta xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:KeyValueOfstringstring>
        <d3p1:Key>String</d3p1:Key>
        <d3p1:Value>String</d3p1:Value>
      </d3p1:KeyValueOfstringstring>
    </d2p1:Meta>
  </ResponseStatus>
</GetOrganizationAdminResponse>