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
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using Field2Office.API.Model.Tasks;

namespace Field2Office.API.Model.Tasks
{
    ///<summary>
    ///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
    ///</summary>
    public partial class OrderNumber
    {
        public virtual string Workspace { get; set; }
        public virtual long Start { get; set; }
        public virtual long End { get; set; }
    }

}

C# 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