| Requires any of the roles: | Agent, Administrator, Agent, Administrator, Agent, Administrator, Agent, Administrator |
| GET,POST,PUT,DELETE,OPTIONS | /v1/StatusItems/{Id} | ||
|---|---|---|---|
| GET,POST,PUT,DELETE,OPTIONS | /v1/StatusItems |
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;
public class dtos
{
public static class StatusItems extends StatusItemObject
{
public UUID ApiKey = null;
public UUID getApiKey() { return ApiKey; }
public StatusItems setApiKey(UUID value) { this.ApiKey = value; return this; }
}
public static class StatusItemObject
{
public Integer Id = null;
public String Name = null;
public Boolean Active = null;
public Integer getId() { return Id; }
public StatusItemObject setId(Integer value) { this.Id = value; return this; }
public String getName() { return Name; }
public StatusItemObject setName(String value) { this.Name = value; return this; }
public Boolean isActive() { return Active; }
public StatusItemObject setActive(Boolean value) { this.Active = value; return this; }
}
public static class StatusItemsResponse
{
public ResponseStatus ResponseStatus = null;
public ArrayList<StatusItemObject> StatusItems = new ArrayList<StatusItemObject>();
public ResponseStatus getResponseStatus() { return ResponseStatus; }
public StatusItemsResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; }
public ArrayList<StatusItemObject> getStatusItems() { return StatusItems; }
public StatusItemsResponse setStatusItems(ArrayList<StatusItemObject> value) { this.StatusItems = 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 /v1/StatusItems/{Id} HTTP/1.1
Host: api.dev.dynamics.trendsic.com
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
ApiKey: 00000000000000000000000000000000,
Id: 0,
Name: String,
Active: False
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
ResponseStatus:
{
ErrorCode: String,
Message: String,
StackTrace: String,
Errors:
[
{
ErrorCode: String,
FieldName: String,
Message: String,
Meta:
{
String: String
}
}
],
Meta:
{
String: String
}
},
StatusItems:
[
{
Id: 0,
Name: String,
Active: False
}
]
}