<back to all web services

WorkflowOperationMessage

The following routes are available for this service:
All Verbs/RestApi/sitefinity/inlineediting/workflow
import java.math.*;
import java.util.*;
import net.servicestack.client.*;

public class dtos
{

    public static class WorkflowOperationMessage
    {
        public String PageId = null;
        public InlineEditingOperation WorkflowOperation = null;
        public String CustomWorkflowOperation = null;
        public ArrayList<ItemContextModel> Items = null;
        
        public String getPageId() { return PageId; }
        public WorkflowOperationMessage setPageId(String value) { this.PageId = value; return this; }
        public InlineEditingOperation getWorkflowOperation() { return WorkflowOperation; }
        public WorkflowOperationMessage setWorkflowOperation(InlineEditingOperation value) { this.WorkflowOperation = value; return this; }
        public String getCustomWorkflowOperation() { return CustomWorkflowOperation; }
        public WorkflowOperationMessage setCustomWorkflowOperation(String value) { this.CustomWorkflowOperation = value; return this; }
        public ArrayList<ItemContextModel> getItems() { return Items; }
        public WorkflowOperationMessage setItems(ArrayList<ItemContextModel> value) { this.Items = value; return this; }
    }

    public static enum InlineEditingOperation
    {
        Publish,
        SaveAsDraft,
        Custom;
    }

    public static class ItemContextModel
    {
        public String ItemId = null;
        public String ItemType = null;
        public String Provider = null;
        public ArrayList<FieldValueModel> FieldValues = null;
        
        public String getItemId() { return ItemId; }
        public ItemContextModel setItemId(String value) { this.ItemId = value; return this; }
        public String getItemType() { return ItemType; }
        public ItemContextModel setItemType(String value) { this.ItemType = value; return this; }
        public String getProvider() { return Provider; }
        public ItemContextModel setProvider(String value) { this.Provider = value; return this; }
        public ArrayList<FieldValueModel> getFieldValues() { return FieldValues; }
        public ItemContextModel setFieldValues(ArrayList<FieldValueModel> value) { this.FieldValues = value; return this; }
    }

    public static class FieldValueModel
    {
        public String Name = null;
        public Object Value = null;
        public ArrayList<FieldValueModel> ComplexValue = null;
        
        public String getName() { return Name; }
        public FieldValueModel setName(String value) { this.Name = value; return this; }
        public Object getValue() { return Value; }
        public FieldValueModel setValue(Object value) { this.Value = value; return this; }
        public ArrayList<FieldValueModel> getComplexValue() { return ComplexValue; }
        public FieldValueModel setComplexValue(ArrayList<FieldValueModel> value) { this.ComplexValue = value; return this; }
    }

}

Java WorkflowOperationMessage 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 /RestApi/sitefinity/inlineediting/workflow HTTP/1.1 
Host: www.asg.com.au 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	PageId: String,
	WorkflowOperation: Publish,
	CustomWorkflowOperation: String,
	Items: 
	[
		{
			ItemId: String,
			ItemType: String,
			Provider: String,
			FieldValues: 
			[
				{
					Name: String,
					Value: {},
					ComplexValue: 
					[
						{
							Name: String,
							Value: {},
							ComplexValue: 
							[
								{
									Name: String,
									Value: {}
								}
							]
						}
					]
				}
			]
		}
	]
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

[
	{
		ItemName: String,
		ItemType: String,
		ItemStatus: 
		{
			DisplayStatus: String,
			IsAdmin: False,
			IsEditable: False,
			IsStatusEditable: False,
			IsLocked: False,
			IsPublished: False,
			IsLockedByMe: False,
			LockedByUsername: String,
			WorkflowStatus: String
		},
		ProviderName: String,
		DetailsViewUrl: String
	}
]