FIBUdataServiceStack

<back to all web services

PasswortVergessenRequest

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

public class dtos
{

    public static class PasswortVergessenRequest
    {
        public String Email = null;
        public Long Mandnr = null;
        public Oem Oem = null;
        
        public String getEmail() { return Email; }
        public PasswortVergessenRequest setEmail(String value) { this.Email = value; return this; }
        public Long getMandnr() { return Mandnr; }
        public PasswortVergessenRequest setMandnr(Long value) { this.Mandnr = value; return this; }
        public Oem getOem() { return Oem; }
        public PasswortVergessenRequest setOem(Oem value) { this.Oem = value; return this; }
    }

    public static enum Oem
    {
        Fibudata(0),
        Spectrum(3);

        private final int value;
        Oem(final int intValue) { value = intValue; }
        public int getValue() { return value; }
    }

    public static class PasswordVergessenResponse
    {
        public Boolean Result = null;
        
        public Boolean isResult() { return Result; }
        public PasswordVergessenResponse setResult(Boolean value) { this.Result = value; return this; }
    }

}

Java PasswortVergessenRequest 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 /fibuscan/PasswortVergessen HTTP/1.1 
Host: ws4.fibudata.net 
Accept: application/json
Content-Type: application/json
Content-Length: length

{"Email":"String","Mandnr":0,"Oem":"fibudata"}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{"Result":false}