TechStacks!

<back to all web services

UpdatePost

Posts
Requires Authentication
The following routes are available for this service:
PUT/posts/{Id}
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 UpdatePost
            Implements IPut
            Public Sub New()
                TechnologyIds = New Integer(){}
                Labels = New String(){}
            End Sub

            Public Overridable Property Id As Long
            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
        End Class

        Public Partial Class UpdatePostResponse
            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 UpdatePost 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 /posts/{Id} HTTP/1.1 
Host: techstacks.io 
Accept: text/csv
Content-Type: text/csv
Content-Length: length

{"id":0,"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"}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length

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