| Requires any of the roles: | Client, Admin, Partner |
| GET, POST | /scadmeta/tables/{TablesId}/data/{Id} | Gets table records |
|---|
"use strict";
export class GetTableRecordsByIdResponse {
/** @param {{ResponseStatus?:ResponseStatus}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {ResponseStatus} */
ResponseStatus;
}
export class GetTableRecordsByIdRequest {
/** @param {{TablesId?:number,Id?:number,RowGuid?:string,FilterList?:{ [index:string]: Object; }}} [init] */
constructor(init) { Object.assign(this, init) }
/**
* @type {number}
* @description Table id */
TablesId;
/**
* @type {number}
* @description Primary Key */
Id;
/**
* @type {string}
* @description Primary Key */
RowGuid;
/**
* @type {{ [index:string]: Object; }}
* @description Filter list */
FilterList;
}
JavaScript GetTableRecordsByIdRequest 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 /scadmeta/tables/{TablesId}/data/{Id} HTTP/1.1
Host: duengageapi.uat.scadsoftware.com
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
TablesId: 0,
Id: 0,
RowGuid: 00000000000000000000000000000000,
FilterList:
{
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
}
}
}