| POST | /{Workspace}/ConversationEvent |
|---|
namespace Field2Office.API.Model.Messaging
open System
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations
[<AllowNullLiteral>]
type ConversationEvent() =
member val ObjectId:String = null with get,set
member val Workspace:String = null with get,set
member val Date:String = null with get,set
member val ConversationId:String = null with get,set
member val UserId:String = null with get,set
member val Text:String = null with get,set
member val ThumbnailId:String = null with get,set
member val IsLink:Boolean = new Boolean() with get,set
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.
POST /{Workspace}/ConversationEvent HTTP/1.1
Host: dev.fieldsquared.com
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
ObjectId: String,
Workspace: String,
Date: String,
ConversationId: String,
UserId: String,
Text: String,
ThumbnailId: String,
IsLink: False
}