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