Trendsic Platform Service

<back to all web services

Employees

Requires Authentication
Requires any of the roles:Agent, Administrator, Agent, Administrator, Agent, Administrator, Agent, Administrator
The following routes are available for this service:
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; }
    }

}

Java Employees DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json

To embed the response in a jsonp callback, append ?callback=myCallback

HTTP + JSON

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: application/json
Content-Type: application/json
Content-Length: length

{"ApiKey":"00000000000000000000000000000000","Id":"00000000000000000000000000000000","Name":"String","Active":false}
HTTP/1.1 200 OK
Content-Type: application/json
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}]}