| Required roles: | Administrator, Administrator |
| POST,PUT,OPTIONS | /v1/LineImage/{LineId} | ||
|---|---|---|---|
| DELETE,OPTIONS | /v1/LineImage/{ImageId} |
"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 LineImageSaveRequest {
/** @param {{Document?:Document[],LineId?:string,ImageId?:string,Fields?:{ [index:string]: string; }}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {Document[]} */
Document = [];
/** @type {string} */
LineId;
/** @type {string} */
ImageId;
/** @type {{ [index:string]: string; }} */
Fields = {};
}
JavaScript LineImageSaveRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /v1/LineImage/{LineId} 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
}
],
LineId: 00000000000000000000000000000000,
ImageId: 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
}
]
}