digitaluapi

<back to all web services

SegmentsCriteriaAdd

Requires Authentication
Requires any of the roles:Client, Admin, Partner
The following routes are available for this service:
POST/segments_criteria
"use strict";
export class SegmentsCriteriaAddResponse {
    /** @param {{Id?:number,SegmentsId?:number,Logical?:string,OpenBrackets?:string,FieldName?:string,Operator?:string,FieldValue?:string,CloseBrackets?:string,ResponseStatus?:ResponseStatus}} [init] */
    constructor(init) { Object.assign(this, init) }
    /** @type {number} */
    Id;
    /** @type {number} */
    SegmentsId;
    /** @type {string} */
    Logical;
    /** @type {string} */
    OpenBrackets;
    /** @type {string} */
    FieldName;
    /** @type {string} */
    Operator;
    /** @type {string} */
    FieldValue;
    /** @type {string} */
    CloseBrackets;
    /** @type {ResponseStatus} */
    ResponseStatus;
}
export class SegmentsCriteriaAdd {
    /** @param {{Id?:number,SegmentsId?:number,Logical?:string,OpenBrackets?:string,FieldName?:string,Operator?:string,FieldValue?:string,CloseBrackets?:string}} [init] */
    constructor(init) { Object.assign(this, init) }
    /** @type {number} */
    Id;
    /** @type {number} */
    SegmentsId;
    /** @type {string} */
    Logical;
    /** @type {string} */
    OpenBrackets;
    /** @type {string} */
    FieldName;
    /** @type {string} */
    Operator;
    /** @type {string} */
    FieldValue;
    /** @type {string} */
    CloseBrackets;
}

JavaScript SegmentsCriteriaAdd 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 /segments_criteria 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
		}
	}
}