| All Verbs | /current-requests/{Tag}/cancel |
|---|
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;
public class dtos
{
@DataContract
public static class CancelRequest implements IPost, IMeta
{
@DataMember(Order=1)
public String tag = null;
@DataMember(Order=2)
public HashMap<String,String> meta = null;
public String getTag() { return tag; }
public CancelRequest setTag(String value) { this.tag = value; return this; }
public HashMap<String,String> getMeta() { return meta; }
public CancelRequest setMeta(HashMap<String,String> value) { this.meta = value; return this; }
}
@DataContract
public static class CancelRequestResponse implements IMeta
{
@DataMember(Order=1)
public String tag = null;
@DataMember(Order=2)
public TimeSpan elapsed = null;
@DataMember(Order=3)
public HashMap<String,String> meta = null;
@DataMember(Order=4)
public ResponseStatus responseStatus = null;
public String getTag() { return tag; }
public CancelRequestResponse setTag(String value) { this.tag = value; return this; }
public TimeSpan getElapsed() { return elapsed; }
public CancelRequestResponse setElapsed(TimeSpan value) { this.elapsed = value; return this; }
public HashMap<String,String> getMeta() { return meta; }
public CancelRequestResponse setMeta(HashMap<String,String> value) { this.meta = value; return this; }
public ResponseStatus getResponseStatus() { return responseStatus; }
public CancelRequestResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; }
}
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /current-requests/{Tag}/cancel HTTP/1.1
Host: reportfiling.staging.pwc.de
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
tag: String,
meta:
{
String: String
}
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
tag: String,
elapsed: PT0S,
meta:
{
String: String
},
responseStatus:
{
errorCode: String,
message: String,
stackTrace: String,
errors:
[
{
errorCode: String,
fieldName: String,
message: String,
meta:
{
String: String
}
}
],
meta:
{
String: String
}
}
}