Field Squared API Services

<back to all web services

StringData

An object used to capture generic string data and version it

The following routes are available for this service:
GET,POST,PUT,DELETE/{Workspace}/StringData/{Class}/{Type}
GET/{Workspace}/StringData/{Class}
GET/{Workspace}/StringData/VersionHistory/{Class}/{Type}
GET/{Workspace}/CatalogNames
import java.math.*
import java.util.*
import net.servicestack.client.*


/**
* An object used to capture generic string data and version it
*/
open class StringData
{
    var Workspace:String? = null
    var VersionId:String? = null
    var BasedOn:String? = null
    var Class:String? = null
    var Type:String? = null
    var Data:HashMap<String,Object> = HashMap<String,Object>()
}

Kotlin StringData 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}/StringData/{Class}/{Type} HTTP/1.1 
Host: dev.fieldsquared.com 
Accept: application/json
Content-Type: application/json
Content-Length: length

{"Workspace":"String","VersionId":"String","BasedOn":"String","Class":"String","Type":"String","Data":{"value":"String"}}