Field Squared API Services

<back to all web services

DriveTime

The following routes are available for this service:
GET/{Workspace}/DriveTime

export class Location
{
    public y: number;
    public x: number;

    public constructor(init?: Partial<Location>) { (Object as any).assign(this, init); }
}

export class DriveTime
{
    public Workspace: string;
    public StartLoc: Location;
    public EndLoc: Location;
    public Duration: number;
    public Distance: number;
    public Error: string;
    public UserId: string;
    public EndScheduleId: string;
    public TimeBetweenSchedules: number;

    public constructor(init?: Partial<DriveTime>) { (Object as any).assign(this, init); }
}

TypeScript DriveTime DTOs

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

To embed the response in a jsonp callback, append ?callback=myCallback

HTTP + JSON

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

GET /{Workspace}/DriveTime HTTP/1.1 
Host: dev.fieldsquared.com 
Accept: application/json