TechStacks!

<back to all web services

CreatePost

Posts
Requires Authentication
The following routes are available for this service:
POST/posts

export class CreatePostResponse
{
    public id: number;
    public slug: string;
    public responseStatus: ResponseStatus;

    public constructor(init?: Partial<CreatePostResponse>) { (Object as any).assign(this, init); }
}

export enum PostType
{
    Announcement = 'Announcement',
    Post = 'Post',
    Showcase = 'Showcase',
    Question = 'Question',
    Request = 'Request',
}

export class CreatePost implements IPost
{
    public organizationId: number;
    public type: PostType;
    public categoryId: number;
    public title: string;
    public url: string;
    public imageUrl: string;
    public content: string;
    public lock?: boolean;
    public technologyIds: number[];
    public labels: string[];
    public fromDate?: string;
    public toDate?: string;
    public metaType: string;
    public meta: string;
    public refId?: number;
    public refSource: string;
    public refUrn: string;

    public constructor(init?: Partial<CreatePost>) { (Object as any).assign(this, init); }
}

TypeScript CreatePost DTOs

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

To embed the response in a jsonp callback, append ?callback=myCallback

HTTP + JSON

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

POST /posts HTTP/1.1 
Host: techstacks.io 
Accept: application/json
Content-Type: application/json
Content-Length: length

{"organizationId":0,"type":"Announcement","categoryId":0,"title":"String","url":"String","imageUrl":"String","content":"String","lock":false,"technologyIds":[0],"labels":["String"],"fromDate":"0001-01-01T00:00:00.0000000","toDate":"0001-01-01T00:00:00.0000000","metaType":"String","meta":"String","refId":0,"refSource":"String","refUrn":"String"}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{"id":0,"slug":"String","responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}