Field Squared API Services

<back to all web services

UserRequest

Request to get a single Task from the system

The following routes are available for this service:
GET,POST/{Workspace}/v2/User/{ObjectId}
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using Field2Office.API.V2.Model.User;

namespace Field2Office.API.V2.Model.User
{
    ///<summary>
    ///Request to get a single Task from the system
    ///</summary>
    public partial class UserRequest
    {
        public UserRequest()
        {
            Edits = new Dictionary<string, Object>{};
        }

        public virtual string Workspace { get; set; }
        public virtual string ObjectId { get; set; }
        public virtual string ChangeDate { get; set; }
        public virtual string SyncDate { get; set; }
        public virtual Dictionary<string, Object> Edits { get; set; }
    }

}

C# UserRequest 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 /{Workspace}/v2/User/{ObjectId} HTTP/1.1 
Host: dev.fieldsquared.com 
Accept: text/csv
Content-Type: text/csv
Content-Length: length

{"Workspace":"String","ObjectId":"String","ChangeDate":"String","SyncDate":"String","Edits":{"String":{}}}