POST | /users/passwords/reset |
---|
import java.math.*;
import java.util.*;
import net.servicestack.client.*;
public class dtos
{
public static class ResetPasswordResetRequest extends PostOperationUnTenanted<ResetPasswordResetResponse>
{
public String token = null;
public String password = null;
public String getToken() { return token; }
public ResetPasswordResetRequest setToken(String value) { this.token = value; return this; }
public String getPassword() { return password; }
public ResetPasswordResetRequest setPassword(String value) { this.password = value; return this; }
}
public static class PostOperationUnTenanted<TResponse> implements IPost
{
}
public static class ResetPasswordResetResponse
{
public ResponseStatus responseStatus = null;
public ResponseStatus getResponseStatus() { return responseStatus; }
public ResetPasswordResetResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; }
}
}
Java ResetPasswordResetRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /users/passwords/reset HTTP/1.1
Host: staging-api.billiecart.com.au
Accept: text/csv
Content-Type: text/csv
Content-Length: length
{"token":"String","password":"String"}
HTTP/1.1 200 OK Content-Type: text/csv Content-Length: length {"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}