Field Squared API Services

<back to all web services

DriveTimeBatch

The following routes are available for this service:
POST/{Workspace}/DriveTimeBatch
import datetime
import decimal
from marshmallow.fields import *
from servicestack import *
from typing import *
from dataclasses import dataclass, field
from dataclasses_json import dataclass_json, LetterCase, Undefined, config
from enum import Enum, IntEnum


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class Location:
    y: float = 0.0
    x: float = 0.0


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class DriveTime:
    workspace: Optional[str] = None
    start_loc: Optional[Location] = None
    end_loc: Optional[Location] = None
    duration: float = 0.0
    distance: float = 0.0
    error: Optional[str] = None
    user_id: Optional[str] = None
    end_schedule_id: Optional[str] = None
    time_between_schedules: int = 0


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class DriveTimeBatch:
    drive_times: Optional[List[DriveTime]] = None
    workspace: Optional[str] = None

Python DriveTimeBatch DTOs

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

HTTP + JSV

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

POST /{Workspace}/DriveTimeBatch HTTP/1.1 
Host: dev.fieldsquared.com 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	DriveTimes: 
	[
		{
			Workspace: String,
			StartLoc: 
			{
				y: 0,
				x: 0
			},
			EndLoc: 
			{
				y: 0,
				x: 0
			},
			Duration: 0,
			Distance: 0,
			Error: String,
			UserId: String,
			EndScheduleId: String,
			TimeBetweenSchedules: 0
		}
	],
	Workspace: String
}