digitaluapi

<back to all web services

SegmentsCriteriaEdit

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

public class dtos
{

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

        @DataMember(Order=2)
        @Validate(Validator="NotNull")
        public Long SegmentsId = null;

        @DataMember(Order=3)
        public String Logical = null;

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

        @DataMember(Order=5)
        @Validate(Validator="NotNull")
        public String FieldName = null;

        @DataMember(Order=6)
        @Validate(Validator="NotNull")
        public String Operator = null;

        @DataMember(Order=7)
        public String FieldValue = null;

        @DataMember(Order=8)
        public String CloseBrackets = null;
        
        public Long getId() { return Id; }
        public SegmentsCriteriaEdit setId(Long value) { this.Id = value; return this; }
        public Long getSegmentsId() { return SegmentsId; }
        public SegmentsCriteriaEdit setSegmentsId(Long value) { this.SegmentsId = value; return this; }
        public String getLogical() { return Logical; }
        public SegmentsCriteriaEdit setLogical(String value) { this.Logical = value; return this; }
        public String getOpenBrackets() { return OpenBrackets; }
        public SegmentsCriteriaEdit setOpenBrackets(String value) { this.OpenBrackets = value; return this; }
        public String getFieldName() { return FieldName; }
        public SegmentsCriteriaEdit setFieldName(String value) { this.FieldName = value; return this; }
        public String getOperator() { return Operator; }
        public SegmentsCriteriaEdit setOperator(String value) { this.Operator = value; return this; }
        public String getFieldValue() { return FieldValue; }
        public SegmentsCriteriaEdit setFieldValue(String value) { this.FieldValue = value; return this; }
        public String getCloseBrackets() { return CloseBrackets; }
        public SegmentsCriteriaEdit setCloseBrackets(String value) { this.CloseBrackets = value; return this; }
    }

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

        @DataMember(Order=2)
        public Long SegmentsId = null;

        @DataMember(Order=3)
        public String Logical = null;

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

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

        @DataMember(Order=6)
        public String Operator = null;

        @DataMember(Order=7)
        public String FieldValue = null;

        @DataMember(Order=8)
        public String CloseBrackets = null;

        @DataMember(Order=10)
        public ResponseStatus ResponseStatus = null;
        
        public Long getId() { return Id; }
        public SegmentsCriteriaEditResponse setId(Long value) { this.Id = value; return this; }
        public Long getSegmentsId() { return SegmentsId; }
        public SegmentsCriteriaEditResponse setSegmentsId(Long value) { this.SegmentsId = value; return this; }
        public String getLogical() { return Logical; }
        public SegmentsCriteriaEditResponse setLogical(String value) { this.Logical = value; return this; }
        public String getOpenBrackets() { return OpenBrackets; }
        public SegmentsCriteriaEditResponse setOpenBrackets(String value) { this.OpenBrackets = value; return this; }
        public String getFieldName() { return FieldName; }
        public SegmentsCriteriaEditResponse setFieldName(String value) { this.FieldName = value; return this; }
        public String getOperator() { return Operator; }
        public SegmentsCriteriaEditResponse setOperator(String value) { this.Operator = value; return this; }
        public String getFieldValue() { return FieldValue; }
        public SegmentsCriteriaEditResponse setFieldValue(String value) { this.FieldValue = value; return this; }
        public String getCloseBrackets() { return CloseBrackets; }
        public SegmentsCriteriaEditResponse setCloseBrackets(String value) { this.CloseBrackets = value; return this; }
        public ResponseStatus getResponseStatus() { return ResponseStatus; }
        public SegmentsCriteriaEditResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; }
    }

}

Java SegmentsCriteriaEdit 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 /segments_criteria/{Id} HTTP/1.1 
Host: duengageapi.uat.scadsoftware.com 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	Id: 0,
	SegmentsId: 0,
	Logical: String,
	OpenBrackets: String,
	FieldName: String,
	Operator: String,
	FieldValue: String,
	CloseBrackets: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	Id: 0,
	SegmentsId: 0,
	Logical: String,
	OpenBrackets: String,
	FieldName: String,
	Operator: String,
	FieldValue: String,
	CloseBrackets: String,
	ResponseStatus: 
	{
		ErrorCode: String,
		Message: String,
		StackTrace: String,
		Errors: 
		[
			{
				ErrorCode: String,
				FieldName: String,
				Message: String,
				Meta: 
				{
					String: String
				}
			}
		],
		Meta: 
		{
			String: String
		}
	}
}