| Requires any of the roles: | Worker, Agent, Administrator |
| GET,OPTIONS | /v1/TimeTracker/GetCurrentCheckIn/{AgentId} |
|---|
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;
public class dtos
{
public static class CurrentCheckInRequest
{
public Integer AgentId = null;
public Integer getAgentId() { return AgentId; }
public CurrentCheckInRequest setAgentId(Integer value) { this.AgentId = value; return this; }
}
public static class CurrentCheckInResponse
{
public ResponseStatus ResponseStatus = null;
public ActiveCheckin result = null;
public ResponseStatus getResponseStatus() { return ResponseStatus; }
public CurrentCheckInResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; }
public ActiveCheckin getResult() { return result; }
public CurrentCheckInResponse setResult(ActiveCheckin value) { this.result = value; return this; }
}
public static class ActiveCheckin
{
public Date CheckInTime = null;
public Integer CheckInId = null;
public Date getCheckInTime() { return CheckInTime; }
public ActiveCheckin setCheckInTime(Date value) { this.CheckInTime = value; return this; }
public Integer getCheckInId() { return CheckInId; }
public ActiveCheckin setCheckInId(Integer value) { this.CheckInId = value; return this; }
}
}
Java CurrentCheckInRequest DTOs
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.
GET /v1/TimeTracker/GetCurrentCheckIn/{AgentId} HTTP/1.1
Host: api.dev.dynamics.trendsic.com
Accept: text/jsv
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
}
},
result:
{
CheckInTime: 0001-01-01,
CheckInId: 0
}
}