| GET,OPTIONS | /v1/ReportManager/api/Queries |
|---|
"use strict";
/** @typedef T {any} */
export class ReportManagerRequest {
constructor(init) { Object.assign(this, init) }
}
export class ReportManagerQuery {
/** @param {{id?:number,text?:string,name?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {number} */
id;
/** @type {string} */
text;
/** @type {string} */
name;
}
export class ReportManagerQueriesRequest extends ReportManagerRequest {
constructor(init) { super(init); Object.assign(this, init) }
}
JavaScript ReportManagerQueriesRequest 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.
GET /v1/ReportManager/api/Queries HTTP/1.1 Host: api.dev.dynamics.trendsic.com Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
[
{
id: 0,
text: String,
name: String
}
]