Field Squared API Services

<back to all web services

ProvisionLogin

The following routes are available for this service:
POST/{WorkspaceId}/ProvisionLogin
import java.math.*;
import java.util.*;
import net.servicestack.client.*;

public class dtos
{

    public static class ProvisionLogin
    {
        public String WorkspaceId = null;
        public String App = null;
        public String Host = null;
        public String Key = null;
        public String Secret = null;
        
        public String getWorkspaceId() { return WorkspaceId; }
        public ProvisionLogin setWorkspaceId(String value) { this.WorkspaceId = value; return this; }
        public String getApp() { return App; }
        public ProvisionLogin setApp(String value) { this.App = value; return this; }
        public String getHost() { return Host; }
        public ProvisionLogin setHost(String value) { this.Host = value; return this; }
        public String getKey() { return Key; }
        public ProvisionLogin setKey(String value) { this.Key = value; return this; }
        public String getSecret() { return Secret; }
        public ProvisionLogin setSecret(String value) { this.Secret = value; return this; }
    }

}

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

{"WorkspaceId":"String","App":"String","Host":"String","Key":"String","Secret":"String"}