Trendsic Platform Service

<back to all web services

StaffApplyInfoRequest

The following routes are available for this service:
GET,OPTIONS/v1/staff/apply/{PostingUID}/info
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;

public class dtos
{

    public static class StaffApplyInfoRequest
    {
        public String PostingUID = null;
        
        public String getPostingUID() { return PostingUID; }
        public StaffApplyInfoRequest setPostingUID(String value) { this.PostingUID = value; return this; }
    }

    public static class StaffApplyInfoResponse
    {
        public ResponseStatus ResponseStatus = null;
        public Boolean Ok = null;
        public Boolean Closed = null;
        public String Title = null;
        public String PositionTag = null;
        public String Location = null;
        public String Window = null;
        public String RateText = null;
        public String CompanyName = null;
        public ArrayList<String> Requirements = new ArrayList<String>();
        
        public ResponseStatus getResponseStatus() { return ResponseStatus; }
        public StaffApplyInfoResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; }
        public Boolean isOk() { return Ok; }
        public StaffApplyInfoResponse setOk(Boolean value) { this.Ok = value; return this; }
        public Boolean isClosed() { return Closed; }
        public StaffApplyInfoResponse setClosed(Boolean value) { this.Closed = value; return this; }
        public String getTitle() { return Title; }
        public StaffApplyInfoResponse setTitle(String value) { this.Title = value; return this; }
        public String getPositionTag() { return PositionTag; }
        public StaffApplyInfoResponse setPositionTag(String value) { this.PositionTag = value; return this; }
        public String getLocation() { return Location; }
        public StaffApplyInfoResponse setLocation(String value) { this.Location = value; return this; }
        public String getWindow() { return Window; }
        public StaffApplyInfoResponse setWindow(String value) { this.Window = value; return this; }
        public String getRateText() { return RateText; }
        public StaffApplyInfoResponse setRateText(String value) { this.RateText = value; return this; }
        public String getCompanyName() { return CompanyName; }
        public StaffApplyInfoResponse setCompanyName(String value) { this.CompanyName = value; return this; }
        public ArrayList<String> getRequirements() { return Requirements; }
        public StaffApplyInfoResponse setRequirements(ArrayList<String> value) { this.Requirements = value; return this; }
    }

}

Java StaffApplyInfoRequest DTOs

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

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

GET /v1/staff/apply/{PostingUID}/info 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
		}
	},
	Ok: False,
	Closed: False,
	Title: String,
	PositionTag: String,
	Location: String,
	Window: String,
	RateText: String,
	CompanyName: String,
	Requirements: 
	[
		String
	]
}