Field Squared API Services

<back to all web services

ArrivalDeparture

Service representing an ArrivalDeparture object in a workspace.

The following routes are available for this service:
POST/{Workspace}/ArrivalDeparture/{ObjectId}

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

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

/** @description Service representing an ArrivalDeparture object in a workspace. */
export class ArrivalDeparture
{
    public Workspace: string;
    public ObjectId: string;
    public ArrivalTime: string;
    public DepartureTime: string;
    public GeofenceLocation: Location;
    public GeofenceId: string;
    public GeofenceRadius: number;
    public User: string;
    public Task: string;

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

TypeScript ArrivalDeparture 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.

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

{"Workspace":"String","ObjectId":"String","ArrivalTime":"String","DepartureTime":"String","GeofenceLocation":{"y":0,"x":0},"GeofenceId":"String","GeofenceRadius":0,"User":"String","Task":"String"}