TechStacks!

<back to all web services

GetPost

Posts
The following routes are available for this service:
GET/posts/{Id}
import datetime
import decimal
from marshmallow.fields import *
from servicestack import *
from typing import *
from dataclasses import dataclass, field
from dataclasses_json import dataclass_json, LetterCase, Undefined, config
from enum import Enum, IntEnum


class PostType(str, Enum):
    ANNOUNCEMENT = 'Announcement'
    POST = 'Post'
    SHOWCASE = 'Showcase'
    QUESTION = 'Question'
    REQUEST = 'Request'


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class Post:
    id: int = 0
    organization_id: int = 0
    user_id: int = 0
    type: Optional[PostType] = None
    category_id: int = 0
    title: Optional[str] = None
    slug: Optional[str] = None
    url: Optional[str] = None
    image_url: Optional[str] = None
    # @StringLength(2147483647)
    content: Optional[str] = None

    # @StringLength(2147483647)
    content_html: Optional[str] = None

    pin_comment_id: Optional[int] = None
    technology_ids: Optional[List[int]] = None
    from_date: Optional[datetime.datetime] = None
    to_date: Optional[datetime.datetime] = None
    location: Optional[str] = None
    meta_type: Optional[str] = None
    meta: Optional[str] = None
    approved: bool = False
    up_votes: int = 0
    down_votes: int = 0
    points: int = 0
    views: int = 0
    favorites: int = 0
    subscribers: int = 0
    reply_count: int = 0
    comments_count: int = 0
    word_count: int = 0
    report_count: int = 0
    links_count: int = 0
    linked_to_count: int = 0
    score: int = 0
    rank: int = 0
    labels: Optional[List[str]] = None
    ref_user_ids: Optional[List[int]] = None
    ref_links: Optional[List[str]] = None
    mute_user_ids: Optional[List[int]] = None
    last_comment_date: Optional[datetime.datetime] = None
    last_comment_id: Optional[int] = None
    last_comment_user_id: Optional[int] = None
    deleted: Optional[datetime.datetime] = None
    deleted_by: Optional[str] = None
    locked: Optional[datetime.datetime] = None
    locked_by: Optional[str] = None
    hidden: Optional[datetime.datetime] = None
    hidden_by: Optional[str] = None
    status: Optional[str] = None
    status_date: Optional[datetime.datetime] = None
    status_by: Optional[str] = None
    archived: bool = False
    bumped: Optional[datetime.datetime] = None
    created: datetime.datetime = datetime.datetime(1, 1, 1)
    created_by: Optional[str] = None
    modified: datetime.datetime = datetime.datetime(1, 1, 1)
    modified_by: Optional[str] = None
    ref_id: Optional[int] = None
    ref_source: Optional[str] = None
    ref_urn: Optional[str] = None


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class PostComment:
    id: int = 0
    post_id: int = 0
    user_id: int = 0
    reply_id: Optional[int] = None
    # @StringLength(2147483647)
    content: Optional[str] = None

    # @StringLength(2147483647)
    content_html: Optional[str] = None

    score: int = 0
    rank: int = 0
    up_votes: int = 0
    down_votes: int = 0
    favorites: int = 0
    word_count: int = 0
    report_count: int = 0
    deleted: Optional[datetime.datetime] = None
    hidden: Optional[datetime.datetime] = None
    modified: datetime.datetime = datetime.datetime(1, 1, 1)
    created: datetime.datetime = datetime.datetime(1, 1, 1)
    created_by: Optional[str] = None
    ref_id: Optional[int] = None
    ref_source: Optional[str] = None
    ref_urn: Optional[str] = None


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class GetPostResponse:
    cache: int = 0
    post: Optional[Post] = None
    comments: Optional[List[PostComment]] = None
    response_status: Optional[ResponseStatus] = None


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class GetPost(IGet):
    id: int = 0
    include: Optional[str] = None

Python GetPost DTOs

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

HTTP + JSV

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

GET /posts/{Id} HTTP/1.1 
Host: techstacks.io 
Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	cache: 0,
	post: 
	{
		id: 0,
		organizationId: 0,
		userId: 0,
		type: Announcement,
		categoryId: 0,
		title: String,
		slug: String,
		url: String,
		imageUrl: String,
		content: String,
		contentHtml: String,
		pinCommentId: 0,
		technologyIds: 
		[
			0
		],
		fromDate: 0001-01-01,
		toDate: 0001-01-01,
		location: String,
		metaType: String,
		meta: String,
		approved: False,
		upVotes: 0,
		downVotes: 0,
		points: 0,
		views: 0,
		favorites: 0,
		subscribers: 0,
		replyCount: 0,
		commentsCount: 0,
		wordCount: 0,
		reportCount: 0,
		linksCount: 0,
		linkedToCount: 0,
		score: 0,
		rank: 0,
		labels: 
		[
			String
		],
		refUserIds: 
		[
			0
		],
		refLinks: 
		[
			String
		],
		muteUserIds: 
		[
			0
		],
		lastCommentDate: 0001-01-01,
		lastCommentId: 0,
		lastCommentUserId: 0,
		deleted: 0001-01-01,
		deletedBy: String,
		locked: 0001-01-01,
		lockedBy: String,
		hidden: 0001-01-01,
		hiddenBy: String,
		status: String,
		statusDate: 0001-01-01,
		statusBy: String,
		archived: False,
		bumped: 0001-01-01,
		created: 0001-01-01,
		createdBy: String,
		modified: 0001-01-01,
		modifiedBy: String,
		refId: 0,
		refSource: String,
		refUrn: String
	},
	comments: 
	[
		{
			id: 0,
			postId: 0,
			userId: 0,
			replyId: 0,
			content: String,
			contentHtml: String,
			score: 0,
			rank: 0,
			upVotes: 0,
			downVotes: 0,
			favorites: 0,
			wordCount: 0,
			reportCount: 0,
			deleted: 0001-01-01,
			hidden: 0001-01-01,
			modified: 0001-01-01,
			created: 0001-01-01,
			createdBy: String,
			refId: 0,
			refSource: String,
			refUrn: String
		}
	],
	responseStatus: 
	{
		errorCode: String,
		message: String,
		stackTrace: String,
		errors: 
		[
			{
				errorCode: String,
				fieldName: String,
				message: String,
				meta: 
				{
					String: String
				}
			}
		],
		meta: 
		{
			String: String
		}
	}
}