Field Squared API Services

<back to all web services

OfflineLogin

The following routes are available for this service:
POST/{Workspace}/OfflilneLogin/{ObjectId}
import 'package:servicestack/servicestack.dart';

class Location implements IConvertible
{
    double? y;
    double? x;

    Location({this.y,this.x});
    Location.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        y = JsonConverters.toDouble(json['y']);
        x = JsonConverters.toDouble(json['x']);
        return this;
    }

    Map<String, dynamic> toJson() => {
        'y': y,
        'x': x
    };

    getTypeName() => "Location";
    TypeContext? context = _ctx;
}

class OfflineLogin implements IConvertible
{
    String? ObjectId;
    String? Workspace;
    String? UserId;
    String? Date;
    Location? Location;

    OfflineLogin({this.ObjectId,this.Workspace,this.UserId,this.Date,this.Location});
    OfflineLogin.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        ObjectId = json['ObjectId'];
        Workspace = json['Workspace'];
        UserId = json['UserId'];
        Date = json['Date'];
        Location = JsonConverters.fromJson(json['Location'],'Location',context!);
        return this;
    }

    Map<String, dynamic> toJson() => {
        'ObjectId': ObjectId,
        'Workspace': Workspace,
        'UserId': UserId,
        'Date': Date,
        'Location': JsonConverters.toJson(Location,'Location',context!)
    };

    getTypeName() => "OfflineLogin";
    TypeContext? context = _ctx;
}

TypeContext _ctx = TypeContext(library: 'dev.fieldsquared.com', types: <String, TypeInfo> {
    'Location': TypeInfo(TypeOf.Class, create:() => Location()),
    'OfflineLogin': TypeInfo(TypeOf.Class, create:() => OfflineLogin()),
});

Dart OfflineLogin 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}/OfflilneLogin/{ObjectId} HTTP/1.1 
Host: dev.fieldsquared.com 
Accept: application/json
Content-Type: application/json
Content-Length: length

{"ObjectId":"String","Workspace":"String","UserId":"String","Date":"String","Location":{"y":0,"x":0}}