PUT | /orgs/{OrganizationId}/subscribe |
---|
using System;
using System.IO;
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 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 .jsv suffix or ?format=jsv
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/jsv
Content-Type: text/jsv
Content-Length: length
{
organizationId: 0,
postTypes:
[
Announcement
],
frequency: 0
}