Field Squared API Services

<back to all web services

OrderNumber

Returns a block of numbers from a sequence for the workspace and increments the
sequence to the starting number for the next block.
Usage: GET /{Workspace}/Sequence/OrderNumber?count=10000
Or: GET /{Workspace}/Sequence/TaskSequenceNumber

The following routes are available for this service:
GET/{Workspace}/Sequence/OrderNumber
GET/{Workspace}/Sequence/TaskSequenceNumber
import 'package:servicestack/servicestack.dart';

/**
* Returns a block of numbers from a sequence for the workspace and increments the sequence to the starting number for the next block.Usage: GET /{Workspace}/Sequence/OrderNumber?count=10000Or:    GET /{Workspace}/Sequence/TaskSequenceNumber
*/
class OrderNumber implements IConvertible
{
    String? Workspace;
    int? Start;
    int? End;

    OrderNumber({this.Workspace,this.Start,this.End});
    OrderNumber.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        Workspace = json['Workspace'];
        Start = json['Start'];
        End = json['End'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'Workspace': Workspace,
        'Start': Start,
        'End': End
    };

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

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

Dart OrderNumber DTOs

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

HTTP + CSV

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

GET /{Workspace}/Sequence/OrderNumber HTTP/1.1 
Host: dev.fieldsquared.com 
Accept: text/csv