Foundry API

<back to all web services

ReportMachineStatusRequest

Requires Authentication
The following routes are available for this service:
All Verbs/machines/{Id}/statuses
import java.math.*;
import java.util.*;
import net.servicestack.client.*;

public class dtos
{

    public static class ReportMachineStatusRequest extends PostOperationTenanted<ReportMachineStatusResponse>
    {
        public String id = null;
        public String component = null;
        public Date observedAt = null;
        public String code = null;
        public String errorCode = null;
        public String errorDetails = null;
        
        public String getId() { return id; }
        public ReportMachineStatusRequest setId(String value) { this.id = value; return this; }
        public String getComponent() { return component; }
        public ReportMachineStatusRequest setComponent(String value) { this.component = value; return this; }
        public Date getObservedAt() { return observedAt; }
        public ReportMachineStatusRequest setObservedAt(Date value) { this.observedAt = value; return this; }
        public String getCode() { return code; }
        public ReportMachineStatusRequest setCode(String value) { this.code = value; return this; }
        public String getErrorCode() { return errorCode; }
        public ReportMachineStatusRequest setErrorCode(String value) { this.errorCode = value; return this; }
        public String getErrorDetails() { return errorDetails; }
        public ReportMachineStatusRequest setErrorDetails(String value) { this.errorDetails = value; return this; }
    }

    public static class PostOperationTenanted<TResponse> extends PostOperationUnTenanted<TResponse> implements ITenantedRequest
    {
        public String organisationId = null;
        
        public String getOrganisationId() { return organisationId; }
        public PostOperationTenanted<TResponse> setOrganisationId(String value) { this.organisationId = value; return this; }
    }

    public static class PostOperationUnTenanted<TResponse> implements IPost
    {
        
    }

    public static class ReportMachineStatusResponse
    {
        public MachineStatus status = null;
        public ResponseStatus responseStatus = null;
        
        public MachineStatus getStatus() { return status; }
        public ReportMachineStatusResponse setStatus(MachineStatus value) { this.status = value; return this; }
        public ResponseStatus getResponseStatus() { return responseStatus; }
        public ReportMachineStatusResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; }
    }

    public static class MachineStatus
    {
        public String component = null;
        public Date observedAt = null;
        public String code = null;
        public String errorCode = null;
        public String errorDetails = null;
        
        public String getComponent() { return component; }
        public MachineStatus setComponent(String value) { this.component = value; return this; }
        public Date getObservedAt() { return observedAt; }
        public MachineStatus setObservedAt(Date value) { this.observedAt = value; return this; }
        public String getCode() { return code; }
        public MachineStatus setCode(String value) { this.code = value; return this; }
        public String getErrorCode() { return errorCode; }
        public MachineStatus setErrorCode(String value) { this.errorCode = value; return this; }
        public String getErrorDetails() { return errorDetails; }
        public MachineStatus setErrorDetails(String value) { this.errorDetails = value; return this; }
    }

}

Java ReportMachineStatusRequest 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.

POST /machines/{Id}/statuses HTTP/1.1 
Host: foundrystage-api-app.azurewebsites.net 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	id: String,
	component: String,
	code: String,
	errorCode: String,
	errorDetails: String,
	organisationId: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	status: 
	{
		component: String,
		code: String,
		errorCode: String,
		errorDetails: String
	},
	responseStatus: 
	{
		errorCode: String,
		message: String,
		stackTrace: String,
		errors: 
		[
			{
				errorCode: String,
				fieldName: String,
				message: String,
				meta: 
				{
					String: String
				}
			}
		],
		meta: 
		{
			String: String
		}
	}
}