Trendsic Platform Service

<back to all web services

EngineAuditRequest

Requires Authentication
The following routes are available for this service:
GET,OPTIONS/v1/engine/audit
"use strict";
export class WorkflowAuditView {
    /** @param {{At?:string,RunKey?:string,WorkflowId?:number,WorkflowName?:string,Actor?:string,Action?:string,ObjectLabel?:string,BeforeValue?:string,AfterValue?:string}} [init] */
    constructor(init) { Object.assign(this, init) }
    /** @type {string} */
    At;
    /** @type {string} */
    RunKey;
    /** @type {?number} */
    WorkflowId;
    /** @type {string} */
    WorkflowName;
    /** @type {string} */
    Actor;
    /** @type {string} */
    Action;
    /** @type {string} */
    ObjectLabel;
    /** @type {string} */
    BeforeValue;
    /** @type {string} */
    AfterValue;
}
export class EngineAuditResponse {
    /** @param {{Entries?:WorkflowAuditView[],ResponseStatus?:ResponseStatus}} [init] */
    constructor(init) { Object.assign(this, init) }
    /** @type {WorkflowAuditView[]} */
    Entries = [];
    /** @type {ResponseStatus} */
    ResponseStatus;
}
export class EngineAuditRequest {
    constructor(init) { Object.assign(this, init) }
}

JavaScript EngineAuditRequest 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.

GET /v1/engine/audit HTTP/1.1 
Host: api.dev.dynamics.trendsic.com 
Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	Entries: 
	[
		{
			At: 0001-01-01,
			RunKey: String,
			WorkflowId: 0,
			WorkflowName: String,
			Actor: String,
			Action: String,
			ObjectLabel: String,
			BeforeValue: String,
			AfterValue: String
		}
	],
	ResponseStatus: 
	{
		ErrorCode: String,
		Message: String,
		StackTrace: String,
		Errors: 
		[
			{
				ErrorCode: String,
				FieldName: String,
				Message: String,
				Meta: 
				{
					String: String
				}
			}
		],
		Meta: 
		{
			String: String
		}
	}
}