TechStacks!

<back to all web services

CreatePost

Posts
Requires Authentication
The following routes are available for this service:
POST/posts
Imports System
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports TechStacks.ServiceModel
Imports TechStacks.ServiceModel.Types

Namespace Global

    Namespace TechStacks.ServiceModel

        Public Partial Class CreatePost
            Implements IPost
            Public Sub New()
                TechnologyIds = New Integer(){}
                Labels = New String(){}
            End Sub

            Public Overridable Property OrganizationId As Integer
            Public Overridable Property Type As PostType
            Public Overridable Property CategoryId As Integer
            Public Overridable Property Title As String
            Public Overridable Property Url As String
            Public Overridable Property ImageUrl As String
            Public Overridable Property Content As String
            Public Overridable Property Lock As Nullable(Of Boolean)
            Public Overridable Property TechnologyIds As Integer()
            Public Overridable Property Labels As String()
            Public Overridable Property FromDate As Nullable(Of Date)
            Public Overridable Property ToDate As Nullable(Of Date)
            Public Overridable Property MetaType As String
            Public Overridable Property Meta As String
            Public Overridable Property RefId As Nullable(Of Long)
            Public Overridable Property RefSource As String
            Public Overridable Property RefUrn As String
        End Class

        Public Partial Class CreatePostResponse
            Public Overridable Property Id As Long
            Public Overridable Property Slug As String
            Public Overridable Property ResponseStatus As ResponseStatus
        End Class
    End Namespace

    Namespace TechStacks.ServiceModel.Types

        Public Enum PostType
            Announcement
            Post
            Showcase
            Question
            Request
        End Enum
    End Namespace
End Namespace

VB.NET CreatePost 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.

POST /posts HTTP/1.1 
Host: techstacks.io 
Accept: text/csv
Content-Type: text/csv
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: text/csv
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"}}}