FIBUdataServiceStack

<back to all web services

OnlinehandelShopifyCheckShopTokenRequest

The following routes are available for this service:
GET, POST/fibuscan/Onlinehandel/shopify/checkShopToken
import java.math.*;
import java.util.*;
import net.servicestack.client.*;

public class dtos
{

    public static class OnlinehandelShopifyCheckShopTokenRequest
    {
        public String token = null;
        
        public String getToken() { return token; }
        public OnlinehandelShopifyCheckShopTokenRequest setToken(String value) { this.token = value; return this; }
    }

    public static class OnlinehandelShopifyCheckShopTokenResponse
    {
        public String error = null;
        public Boolean result = null;
        public String mandnr = null;
        public ArrayList<String> werte = null;
        
        public String getError() { return error; }
        public OnlinehandelShopifyCheckShopTokenResponse setError(String value) { this.error = value; return this; }
        public Boolean isResult() { return result; }
        public OnlinehandelShopifyCheckShopTokenResponse setResult(Boolean value) { this.result = value; return this; }
        public String getMandnr() { return mandnr; }
        public OnlinehandelShopifyCheckShopTokenResponse setMandnr(String value) { this.mandnr = value; return this; }
        public ArrayList<String> getWerte() { return werte; }
        public OnlinehandelShopifyCheckShopTokenResponse setWerte(ArrayList<String> value) { this.werte = value; return this; }
    }

}

Java OnlinehandelShopifyCheckShopTokenRequest DTOs

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

HTTP + OTHER

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

POST /fibuscan/Onlinehandel/shopify/checkShopToken HTTP/1.1 
Host: ws4.fibudata.net 
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length

{"token":"String"}
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length

{"error":"String","result":false,"mandnr":"String","werte":["String"]}