Field Squared API Services

<back to all web services

Conversation

The following routes are available for this service:
GET,POST/{Workspace}/Conversation
GET/{Workspace}/Conversation/{ObjectId}
GET/{Workspace}/Conversation/Search/{MemberId}
GET/{Workspace}/Conversation/Search/{SearchType}/{SearchText}
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using Field2Office.API.Model.Messaging;

namespace Field2Office.API.Model.Messaging
{
    public partial class Conversation
    {
        public Conversation()
        {
            Members = new List<string>{};
            Events = new List<ConversationEvent>{};
        }

        public virtual string ObjectId { get; set; }
        public virtual string Workspace { get; set; }
        public virtual string TeamId { get; set; }
        public virtual List<string> Members { get; set; }
        public virtual List<ConversationEvent> Events { get; set; }
        public virtual long Unread { get; set; }
        public virtual string MemberId { get; set; }
        public virtual string SearchType { get; set; }
        public virtual string SearchText { get; set; }
    }

    public partial class ConversationEvent
    {
        public virtual string ObjectId { get; set; }
        public virtual string Workspace { get; set; }
        public virtual string Date { get; set; }
        public virtual string ConversationId { get; set; }
        public virtual string UserId { get; set; }
        public virtual string Text { get; set; }
        public virtual string ThumbnailId { get; set; }
        public virtual bool IsLink { get; set; }
    }

}

C# Conversation DTOs

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

HTTP + XML

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

POST /{Workspace}/Conversation HTTP/1.1 
Host: dev.fieldsquared.com 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<Conversation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Field2Office.API.Model.Messaging">
  <Events>
    <ConversationEvent>
      <ConversationId>String</ConversationId>
      <Date>String</Date>
      <IsLink>false</IsLink>
      <ObjectId>String</ObjectId>
      <Text>String</Text>
      <ThumbnailId>String</ThumbnailId>
      <UserId>String</UserId>
      <Workspace>String</Workspace>
    </ConversationEvent>
  </Events>
  <MemberId>String</MemberId>
  <Members xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>String</d2p1:string>
  </Members>
  <ObjectId>String</ObjectId>
  <SearchText>String</SearchText>
  <SearchType>String</SearchType>
  <TeamId>String</TeamId>
  <Unread>0</Unread>
  <Workspace>String</Workspace>
</Conversation>