TechStacks!

<back to all web services

GetOrganization

Organization
The following routes are available for this service:
GET/orgs/{Id}
import 'package:servicestack/servicestack.dart';

class Organization implements IConvertible
{
    int? id;
    String? name;
    String? slug;
    String? description;
    String? descriptionHtml;
    String? color;
    String? textColor;
    String? linkColor;
    String? backgroundColor;
    String? backgroundUrl;
    String? logoUrl;
    String? heroUrl;
    String? lang;
    String? defaultPostType;
    List<String>? defaultSubscriptionPostTypes;
    List<String>? postTypes;
    List<String>? moderatorPostTypes;
    int? deletePostsWithReportCount;
    bool? disableInvites;
    int? upVotes;
    int? downVotes;
    int? views;
    int? favorites;
    int? subscribers;
    int? commentsCount;
    int? postsCount;
    int? score;
    int? rank;
    int? refId;
    String? refSource;
    DateTime? hidden;
    String? hiddenBy;
    DateTime? locked;
    String? lockedBy;
    DateTime? deleted;
    String? deletedBy;
    DateTime? created;
    String? createdBy;
    DateTime? modified;
    String? modifiedBy;

    Organization({this.id,this.name,this.slug,this.description,this.descriptionHtml,this.color,this.textColor,this.linkColor,this.backgroundColor,this.backgroundUrl,this.logoUrl,this.heroUrl,this.lang,this.defaultPostType,this.defaultSubscriptionPostTypes,this.postTypes,this.moderatorPostTypes,this.deletePostsWithReportCount,this.disableInvites,this.upVotes,this.downVotes,this.views,this.favorites,this.subscribers,this.commentsCount,this.postsCount,this.score,this.rank,this.refId,this.refSource,this.hidden,this.hiddenBy,this.locked,this.lockedBy,this.deleted,this.deletedBy,this.created,this.createdBy,this.modified,this.modifiedBy});
    Organization.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        id = json['id'];
        name = json['name'];
        slug = json['slug'];
        description = json['description'];
        descriptionHtml = json['descriptionHtml'];
        color = json['color'];
        textColor = json['textColor'];
        linkColor = json['linkColor'];
        backgroundColor = json['backgroundColor'];
        backgroundUrl = json['backgroundUrl'];
        logoUrl = json['logoUrl'];
        heroUrl = json['heroUrl'];
        lang = json['lang'];
        defaultPostType = json['defaultPostType'];
        defaultSubscriptionPostTypes = JsonConverters.fromJson(json['defaultSubscriptionPostTypes'],'List<String>',context!);
        postTypes = JsonConverters.fromJson(json['postTypes'],'List<String>',context!);
        moderatorPostTypes = JsonConverters.fromJson(json['moderatorPostTypes'],'List<String>',context!);
        deletePostsWithReportCount = json['deletePostsWithReportCount'];
        disableInvites = json['disableInvites'];
        upVotes = json['upVotes'];
        downVotes = json['downVotes'];
        views = json['views'];
        favorites = json['favorites'];
        subscribers = json['subscribers'];
        commentsCount = json['commentsCount'];
        postsCount = json['postsCount'];
        score = json['score'];
        rank = json['rank'];
        refId = json['refId'];
        refSource = json['refSource'];
        hidden = JsonConverters.fromJson(json['hidden'],'DateTime',context!);
        hiddenBy = json['hiddenBy'];
        locked = JsonConverters.fromJson(json['locked'],'DateTime',context!);
        lockedBy = json['lockedBy'];
        deleted = JsonConverters.fromJson(json['deleted'],'DateTime',context!);
        deletedBy = json['deletedBy'];
        created = JsonConverters.fromJson(json['created'],'DateTime',context!);
        createdBy = json['createdBy'];
        modified = JsonConverters.fromJson(json['modified'],'DateTime',context!);
        modifiedBy = json['modifiedBy'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'id': id,
        'name': name,
        'slug': slug,
        'description': description,
        'descriptionHtml': descriptionHtml,
        'color': color,
        'textColor': textColor,
        'linkColor': linkColor,
        'backgroundColor': backgroundColor,
        'backgroundUrl': backgroundUrl,
        'logoUrl': logoUrl,
        'heroUrl': heroUrl,
        'lang': lang,
        'defaultPostType': defaultPostType,
        'defaultSubscriptionPostTypes': JsonConverters.toJson(defaultSubscriptionPostTypes,'List<String>',context!),
        'postTypes': JsonConverters.toJson(postTypes,'List<String>',context!),
        'moderatorPostTypes': JsonConverters.toJson(moderatorPostTypes,'List<String>',context!),
        'deletePostsWithReportCount': deletePostsWithReportCount,
        'disableInvites': disableInvites,
        'upVotes': upVotes,
        'downVotes': downVotes,
        'views': views,
        'favorites': favorites,
        'subscribers': subscribers,
        'commentsCount': commentsCount,
        'postsCount': postsCount,
        'score': score,
        'rank': rank,
        'refId': refId,
        'refSource': refSource,
        'hidden': JsonConverters.toJson(hidden,'DateTime',context!),
        'hiddenBy': hiddenBy,
        'locked': JsonConverters.toJson(locked,'DateTime',context!),
        'lockedBy': lockedBy,
        'deleted': JsonConverters.toJson(deleted,'DateTime',context!),
        'deletedBy': deletedBy,
        'created': JsonConverters.toJson(created,'DateTime',context!),
        'createdBy': createdBy,
        'modified': JsonConverters.toJson(modified,'DateTime',context!),
        'modifiedBy': modifiedBy
    };

    getTypeName() => "Organization";
    TypeContext? context = _ctx;
}

class OrganizationLabel implements IConvertible
{
    String? slug;
    int? organizationId;
    String? description;
    String? color;

    OrganizationLabel({this.slug,this.organizationId,this.description,this.color});
    OrganizationLabel.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        slug = json['slug'];
        organizationId = json['organizationId'];
        description = json['description'];
        color = json['color'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'slug': slug,
        'organizationId': organizationId,
        'description': description,
        'color': color
    };

    getTypeName() => "OrganizationLabel";
    TypeContext? context = _ctx;
}

class Category implements IConvertible
{
    int? id;
    int? organizationId;
    String? name;
    String? slug;
    String? description;
    String? color;
    List<int>? technologyIds;
    int? commentsCount;
    int? postsCount;
    int? score;
    int? rank;

    Category({this.id,this.organizationId,this.name,this.slug,this.description,this.color,this.technologyIds,this.commentsCount,this.postsCount,this.score,this.rank});
    Category.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        id = json['id'];
        organizationId = json['organizationId'];
        name = json['name'];
        slug = json['slug'];
        description = json['description'];
        color = json['color'];
        technologyIds = JsonConverters.fromJson(json['technologyIds'],'List<int>',context!);
        commentsCount = json['commentsCount'];
        postsCount = json['postsCount'];
        score = json['score'];
        rank = json['rank'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'id': id,
        'organizationId': organizationId,
        'name': name,
        'slug': slug,
        'description': description,
        'color': color,
        'technologyIds': JsonConverters.toJson(technologyIds,'List<int>',context!),
        'commentsCount': commentsCount,
        'postsCount': postsCount,
        'score': score,
        'rank': rank
    };

    getTypeName() => "Category";
    TypeContext? context = _ctx;
}

class OrganizationMember implements IConvertible
{
    int? id;
    int? organizationId;
    int? userId;
    String? userName;
    bool? isOwner;
    bool? isModerator;
    bool? denyAll;
    bool? denyPosts;
    bool? denyComments;
    String? notes;

    OrganizationMember({this.id,this.organizationId,this.userId,this.userName,this.isOwner,this.isModerator,this.denyAll,this.denyPosts,this.denyComments,this.notes});
    OrganizationMember.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        id = json['id'];
        organizationId = json['organizationId'];
        userId = json['userId'];
        userName = json['userName'];
        isOwner = json['isOwner'];
        isModerator = json['isModerator'];
        denyAll = json['denyAll'];
        denyPosts = json['denyPosts'];
        denyComments = json['denyComments'];
        notes = json['notes'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'id': id,
        'organizationId': organizationId,
        'userId': userId,
        'userName': userName,
        'isOwner': isOwner,
        'isModerator': isModerator,
        'denyAll': denyAll,
        'denyPosts': denyPosts,
        'denyComments': denyComments,
        'notes': notes
    };

    getTypeName() => "OrganizationMember";
    TypeContext? context = _ctx;
}

class GetOrganizationResponse implements IConvertible
{
    int? cache;
    int? id;
    String? slug;
    Organization? organization;
    List<OrganizationLabel>? labels;
    List<Category>? categories;
    List<OrganizationMember>? owners;
    List<OrganizationMember>? moderators;
    int? membersCount;
    ResponseStatus? responseStatus;

    GetOrganizationResponse({this.cache,this.id,this.slug,this.organization,this.labels,this.categories,this.owners,this.moderators,this.membersCount,this.responseStatus});
    GetOrganizationResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        cache = json['cache'];
        id = json['id'];
        slug = json['slug'];
        organization = JsonConverters.fromJson(json['organization'],'Organization',context!);
        labels = JsonConverters.fromJson(json['labels'],'List<OrganizationLabel>',context!);
        categories = JsonConverters.fromJson(json['categories'],'List<Category>',context!);
        owners = JsonConverters.fromJson(json['owners'],'List<OrganizationMember>',context!);
        moderators = JsonConverters.fromJson(json['moderators'],'List<OrganizationMember>',context!);
        membersCount = json['membersCount'];
        responseStatus = JsonConverters.fromJson(json['responseStatus'],'ResponseStatus',context!);
        return this;
    }

    Map<String, dynamic> toJson() => {
        'cache': cache,
        'id': id,
        'slug': slug,
        'organization': JsonConverters.toJson(organization,'Organization',context!),
        'labels': JsonConverters.toJson(labels,'List<OrganizationLabel>',context!),
        'categories': JsonConverters.toJson(categories,'List<Category>',context!),
        'owners': JsonConverters.toJson(owners,'List<OrganizationMember>',context!),
        'moderators': JsonConverters.toJson(moderators,'List<OrganizationMember>',context!),
        'membersCount': membersCount,
        'responseStatus': JsonConverters.toJson(responseStatus,'ResponseStatus',context!)
    };

    getTypeName() => "GetOrganizationResponse";
    TypeContext? context = _ctx;
}

class GetOrganization implements IGet, IConvertible
{
    int? id;

    GetOrganization({this.id});
    GetOrganization.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        id = json['id'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'id': id
    };

    getTypeName() => "GetOrganization";
    TypeContext? context = _ctx;
}

TypeContext _ctx = TypeContext(library: 'techstacks.io', types: <String, TypeInfo> {
    'Organization': TypeInfo(TypeOf.Class, create:() => Organization()),
    'OrganizationLabel': TypeInfo(TypeOf.Class, create:() => OrganizationLabel()),
    'Category': TypeInfo(TypeOf.Class, create:() => Category()),
    'OrganizationMember': TypeInfo(TypeOf.Class, create:() => OrganizationMember()),
    'GetOrganizationResponse': TypeInfo(TypeOf.Class, create:() => GetOrganizationResponse()),
    'List<OrganizationLabel>': TypeInfo(TypeOf.Class, create:() => <OrganizationLabel>[]),
    'List<Category>': TypeInfo(TypeOf.Class, create:() => <Category>[]),
    'List<OrganizationMember>': TypeInfo(TypeOf.Class, create:() => <OrganizationMember>[]),
    'GetOrganization': TypeInfo(TypeOf.Class, create:() => GetOrganization()),
});

Dart GetOrganization 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} HTTP/1.1 
Host: techstacks.io 
Accept: application/xml
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<GetOrganizationResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel">
  <Cache>0</Cache>
  <Categories xmlns:d2p1="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">
    <d2p1:Category>
      <d2p1:Color>String</d2p1:Color>
      <d2p1:CommentsCount>0</d2p1:CommentsCount>
      <d2p1:Description>String</d2p1:Description>
      <d2p1:Id>0</d2p1:Id>
      <d2p1:Name>String</d2p1:Name>
      <d2p1:OrganizationId>0</d2p1:OrganizationId>
      <d2p1:PostsCount>0</d2p1:PostsCount>
      <d2p1:Rank>0</d2p1:Rank>
      <d2p1:Score>0</d2p1:Score>
      <d2p1:Slug>String</d2p1:Slug>
      <d2p1:TechnologyIds xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
        <d4p1:int>0</d4p1:int>
      </d2p1:TechnologyIds>
    </d2p1:Category>
  </Categories>
  <Id>0</Id>
  <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>
  <MembersCount>0</MembersCount>
  <Moderators 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>
  </Moderators>
  <Organization xmlns:d2p1="http://schemas.datacontract.org/2004/07/TechStacks.ServiceModel.Types">
    <d2p1:BackgroundColor>String</d2p1:BackgroundColor>
    <d2p1:BackgroundUrl>String</d2p1:BackgroundUrl>
    <d2p1:Color>String</d2p1:Color>
    <d2p1:CommentsCount>0</d2p1:CommentsCount>
    <d2p1:Created>0001-01-01T00:00:00</d2p1:Created>
    <d2p1:CreatedBy>String</d2p1:CreatedBy>
    <d2p1:DefaultPostType>String</d2p1:DefaultPostType>
    <d2p1:DefaultSubscriptionPostTypes xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:string>String</d3p1:string>
    </d2p1:DefaultSubscriptionPostTypes>
    <d2p1:DeletePostsWithReportCount>0</d2p1:DeletePostsWithReportCount>
    <d2p1:Deleted>0001-01-01T00:00:00</d2p1:Deleted>
    <d2p1:DeletedBy>String</d2p1:DeletedBy>
    <d2p1:Description>String</d2p1:Description>
    <d2p1:DescriptionHtml>String</d2p1:DescriptionHtml>
    <d2p1:DisableInvites>false</d2p1:DisableInvites>
    <d2p1:DownVotes>0</d2p1:DownVotes>
    <d2p1:Favorites>0</d2p1:Favorites>
    <d2p1:HeroUrl>String</d2p1:HeroUrl>
    <d2p1:Hidden>0001-01-01T00:00:00</d2p1:Hidden>
    <d2p1:HiddenBy>String</d2p1:HiddenBy>
    <d2p1:Id>0</d2p1:Id>
    <d2p1:Lang>String</d2p1:Lang>
    <d2p1:LinkColor>String</d2p1:LinkColor>
    <d2p1:Locked>0001-01-01T00:00:00</d2p1:Locked>
    <d2p1:LockedBy>String</d2p1:LockedBy>
    <d2p1:LogoUrl>String</d2p1:LogoUrl>
    <d2p1:ModeratorPostTypes xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:string>String</d3p1:string>
    </d2p1:ModeratorPostTypes>
    <d2p1:Modified>0001-01-01T00:00:00</d2p1:Modified>
    <d2p1:ModifiedBy>String</d2p1:ModifiedBy>
    <d2p1:Name>String</d2p1:Name>
    <d2p1:PostTypes xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:string>String</d3p1:string>
    </d2p1:PostTypes>
    <d2p1:PostsCount>0</d2p1:PostsCount>
    <d2p1:Rank>0</d2p1:Rank>
    <d2p1:RefId>0</d2p1:RefId>
    <d2p1:RefSource>String</d2p1:RefSource>
    <d2p1:Score>0</d2p1:Score>
    <d2p1:Slug>String</d2p1:Slug>
    <d2p1:Subscribers>0</d2p1:Subscribers>
    <d2p1:TextColor>String</d2p1:TextColor>
    <d2p1:UpVotes>0</d2p1:UpVotes>
    <d2p1:Views>0</d2p1:Views>
  </Organization>
  <Owners 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>
  </Owners>
  <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>
  <Slug>String</Slug>
</GetOrganizationResponse>