| 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 .xml suffix or ?format=xml
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/xml
Content-Type: application/xml
Content-Length: length
<PasswortVergessenRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FIBUdataServiceStack.ServiceModel.Messages">
<Email>String</Email>
<Mandnr>0</Mandnr>
<Oem>fibudata</Oem>
</PasswortVergessenRequest>
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <PasswordVergessenResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FIBUdataServiceStack.ServiceModel.Messages"> <Result>false</Result> </PasswordVergessenResponse>