Field Squared API Services

<back to all web services

Tracks

GET /{Workspace}/Tracks/{Date} - Returns List<Track> where Track is in the format defined by the Track service.
All tracks for all teams members (including the requesting user) for the date specified will be returned
Or can be filtered by team or user id.
Date is in UNIX time format: yyyymmdd and is in the timezone of the workspace.

The following routes are available for this service:
GET/{Workspace}/Tracks/{Date}
GET/{Workspace}/TracksProposed/{Date}
import Foundation
import ServiceStack

/**
* GET /{Workspace}/Tracks/{Date} - Returns List<Track> where Track is in the format defined by the Track service. All tracks for all teams members (including the requesting user) for the date specified will be returnedOr can be filtered by team or user id.Date is in UNIX time format: yyyymmdd and is in the timezone of the workspace.
*/
public class Tracks : Codable
{
    public var workspace:String
    public var date:String

    required public init(){}
}


Swift Tracks 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.

GET /{Workspace}/Tracks/{Date} HTTP/1.1 
Host: dev.fieldsquared.com 
Accept: application/xml