Trendsic Platform Service

<back to all web services

DocumentRequest

Requires Authentication
Requires any of the roles:Agent, Administrator, Agent, Administrator, Agent, Administrator
The following routes are available for this service:
GET,POST,PUT,DELETE,OPTIONS/v1/Document/{DocumentId}
GET,POST,PUT,DELETE,OPTIONS/v1/Document/
"use strict";
export class Document {
    /** @param {{DocumentId?:string,DocType?:string,DocCategory?:string,DocSubCategory?:string,DocTitle?:string,DocDescription?:string,DocData?:string,DocExpiration?:string,DocMimeType?:string,DisplayOrder?:number,FileSizeInKB?:number,Link?:string,UploadDate?:string,DocKey?:string}} [init] */
    constructor(init) { Object.assign(this, init) }
    /** @type {string} */
    DocumentId;
    /** @type {string} */
    DocType;
    /** @type {string} */
    DocCategory;
    /** @type {string} */
    DocSubCategory;
    /** @type {string} */
    DocTitle;
    /** @type {string} */
    DocDescription;
    /** @type {string} */
    DocData = [];
    /** @type {?string} */
    DocExpiration;
    /** @type {string} */
    DocMimeType;
    /** @type {number} */
    DisplayOrder;
    /** @type {number} */
    FileSizeInKB;
    /** @type {string} */
    Link;
    /** @type {?string} */
    UploadDate;
    /** @type {string} */
    DocKey;
}
export class DocumentResponse {
    /** @param {{ResponseStatus?:ResponseStatus,Document?:Document[]}} [init] */
    constructor(init) { Object.assign(this, init) }
    /** @type {ResponseStatus} */
    ResponseStatus;
    /** @type {Document[]} */
    Document = [];
}
export class DocumentRequest {
    /** @param {{Document?:Document[],DocumentId?:string,Fields?:{ [index:string]: string; }}} [init] */
    constructor(init) { Object.assign(this, init) }
    /** @type {Document[]} */
    Document = [];
    /** @type {string} */
    DocumentId;
    /** @type {{ [index:string]: string; }} */
    Fields = {};
}

JavaScript DocumentRequest 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 /v1/Document/{DocumentId} HTTP/1.1 
Host: api.dev.dynamics.trendsic.com 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	Document: 
	[
		{
			DocumentId: 00000000000000000000000000000000,
			DocType: String,
			DocCategory: String,
			DocSubCategory: String,
			DocTitle: String,
			DocDescription: String,
			DocData: AA==,
			DocExpiration: 0001-01-01,
			DocMimeType: String,
			DisplayOrder: 0,
			FileSizeInKB: 0,
			Link: String,
			UploadDate: 0001-01-01,
			DocKey: String
		}
	],
	DocumentId: 00000000000000000000000000000000,
	Fields: 
	{
		String: String
	}
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	ResponseStatus: 
	{
		ErrorCode: String,
		Message: String,
		StackTrace: String,
		Errors: 
		[
			{
				ErrorCode: String,
				FieldName: String,
				Message: String,
				Meta: 
				{
					String: String
				}
			}
		],
		Meta: 
		{
			String: String
		}
	},
	Document: 
	[
		{
			DocumentId: 00000000000000000000000000000000,
			DocType: String,
			DocCategory: String,
			DocSubCategory: String,
			DocTitle: String,
			DocDescription: String,
			DocData: AA==,
			DocExpiration: 0001-01-01,
			DocMimeType: String,
			DisplayOrder: 0,
			FileSizeInKB: 0,
			Link: String,
			UploadDate: 0001-01-01,
			DocKey: String
		}
	]
}