PUT | /posts/{Id} |
---|
Imports System
Imports System.IO
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 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 Boolean?
Public Overridable Property TechnologyIds As Integer()
Public Overridable Property Labels As String()
Public Overridable Property FromDate As Date?
Public Overridable Property ToDate As 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
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 /posts/{Id} HTTP/1.1
Host: techstacks.io
Accept: text/jsv
Content-Type: text/jsv
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-01,
toDate: 0001-01-01,
metaType: String,
meta: String
}
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { responseStatus: { errorCode: String, message: String, stackTrace: String, errors: [ { errorCode: String, fieldName: String, message: String, meta: { String: String } } ], meta: { String: String } } }