digitaluapi

<back to all web services

CustomActionsEdit

Requires Authentication
Requires any of the roles:Client, Admin, Partner
The following routes are available for this service:
PUT/custom_actions/{Id}
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;

public class dtos
{

    @DataContract
    public static class CustomActionsEdit
    {
        @DataMember(Order=1)
        @Validate(Validator="NotNull")
        public Long Id = null;

        @DataMember(Order=2)
        @Validate(Validator="NotNull")
        public Integer TenantsId = null;

        @DataMember(Order=3)
        @Validate(Validator="NotNull")
        public Long ActionsId = null;

        @DataMember(Order=4)
        @Validate(Validator="NotNull")
        public String FormMetaData = null;

        @DataMember(Order=5)
        @Validate(Validator="NotNull")
        public String ResultData = null;
        
        public Long getId() { return Id; }
        public CustomActionsEdit setId(Long value) { this.Id = value; return this; }
        public Integer getTenantsId() { return TenantsId; }
        public CustomActionsEdit setTenantsId(Integer value) { this.TenantsId = value; return this; }
        public Long getActionsId() { return ActionsId; }
        public CustomActionsEdit setActionsId(Long value) { this.ActionsId = value; return this; }
        public String getFormMetaData() { return FormMetaData; }
        public CustomActionsEdit setFormMetaData(String value) { this.FormMetaData = value; return this; }
        public String getResultData() { return ResultData; }
        public CustomActionsEdit setResultData(String value) { this.ResultData = value; return this; }
    }

    public static class CustomActionsEditResponse
    {
        @DataMember(Order=1)
        public Long Id = null;

        @DataMember(Order=2)
        public Integer TenantsId = null;

        @DataMember(Order=3)
        public Long ActionsId = null;

        @DataMember(Order=4)
        public String FormMetaData = null;

        @DataMember(Order=5)
        public String ResultData = null;

        @DataMember(Order=7)
        public ResponseStatus ResponseStatus = null;
        
        public Long getId() { return Id; }
        public CustomActionsEditResponse setId(Long value) { this.Id = value; return this; }
        public Integer getTenantsId() { return TenantsId; }
        public CustomActionsEditResponse setTenantsId(Integer value) { this.TenantsId = value; return this; }
        public Long getActionsId() { return ActionsId; }
        public CustomActionsEditResponse setActionsId(Long value) { this.ActionsId = value; return this; }
        public String getFormMetaData() { return FormMetaData; }
        public CustomActionsEditResponse setFormMetaData(String value) { this.FormMetaData = value; return this; }
        public String getResultData() { return ResultData; }
        public CustomActionsEditResponse setResultData(String value) { this.ResultData = value; return this; }
        public ResponseStatus getResponseStatus() { return ResponseStatus; }
        public CustomActionsEditResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; }
    }

}

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

PUT /custom_actions/{Id} HTTP/1.1 
Host: duengageapi.uat.scadsoftware.com 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	Id: 0,
	TenantsId: 0,
	ActionsId: 0,
	FormMetaData: String,
	ResultData: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	Id: 0,
	TenantsId: 0,
	ActionsId: 0,
	FormMetaData: String,
	ResultData: String,
	ResponseStatus: 
	{
		ErrorCode: String,
		Message: String,
		StackTrace: String,
		Errors: 
		[
			{
				ErrorCode: String,
				FieldName: String,
				Message: String,
				Meta: 
				{
					String: String
				}
			}
		],
		Meta: 
		{
			String: String
		}
	}
}