| GET | /{Workspace}/Sequence/OrderNumber | ||
|---|---|---|---|
| GET | /{Workspace}/Sequence/TaskSequenceNumber | 
import Foundation
import ServiceStack
/**
* 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
*/
public class OrderNumber : Codable
{
    public var workspace:String
    public var start:Int
    public var end:Int
    required public init(){}
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
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/jsv