TechStacks!

<back to all web services

SubscribeToOrganization

User
Requires Authentication
The following routes are available for this service:
PUT/orgs/{OrganizationId}/subscribe
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using TechStacks.ServiceModel;
using TechStacks.ServiceModel.Types;

namespace TechStacks.ServiceModel
{
    public enum Frequency
    {
        Daily = 1,
        Weekly = 7,
        Monthly = 30,
        Quarterly = 90,
    }

    public partial class SubscribeToOrganization
        : IPut
    {
        public SubscribeToOrganization()
        {
            PostTypes = new PostType[]{};
        }

        public virtual int OrganizationId { get; set; }
        public virtual PostType[] PostTypes { get; set; }
        public virtual Frequency? Frequency { get; set; }
    }

}

namespace TechStacks.ServiceModel.Types
{
    public enum PostType
    {
        Announcement,
        Post,
        Showcase,
        Question,
        Request,
    }

}

C# SubscribeToOrganization 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.

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

{"organizationId":0,"postTypes":["Announcement"],"frequency":"0"}