Field Squared API Services

<back to all web services

TimecardEntry

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

namespace Field2Office.API.Model
{
    public partial class Location
    {
        public virtual double y { get; set; }
        public virtual double x { get; set; }
    }

}

namespace Field2Office.API.Model.Timecard
{
    public partial class TimecardEntry
    {
        public virtual string Workspace { get; set; }
        public virtual string ObjectId { get; set; }
        public virtual string UserId { get; set; }
        public virtual string LastUpdated { get; set; }
        public virtual string Date { get; set; }
        public virtual string Category { get; set; }
        public virtual string EntryType { get; set; }
        public virtual string EntryData { get; set; }
        public virtual Location Location { get; set; }
        public virtual bool Approved { get; set; }
    }

}

C# TimecardEntry 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}/TimecardEntry HTTP/1.1 
Host: dev.fieldsquared.com 
Accept: text/csv
Content-Type: text/csv
Content-Length: length

{"Workspace":"String","ObjectId":"String","UserId":"String","LastUpdated":"String","Date":"String","Category":"String","EntryType":"String","EntryData":"String","Location":{"y":0,"x":0},"Approved":false}