digitaluapi

<back to all web services

GetTableRecordsByRowGuidRequest

Requires Authentication
Requires any of the roles:Client, Admin, Partner
The following routes are available for this service:
GET, POST/scadmeta/tables/{TablesId}/data/guid/{RowGuid}Gets table records
"use strict";
export class GetTableRecordsByIdResponse {
    /** @param {{ResponseStatus?:ResponseStatus}} [init] */
    constructor(init) { Object.assign(this, init) }
    /** @type {ResponseStatus} */
    ResponseStatus;
}
export class GetTableRecordsByRowGuidRequest {
    /** @param {{TablesId?:number,RowGuid?:string,FilterList?:{ [index:string]: Object; }}} [init] */
    constructor(init) { Object.assign(this, init) }
    /**
     * @type {number}
     * @description Table id */
    TablesId;
    /**
     * @type {string}
     * @description Row Guid */
    RowGuid;
    /**
     * @type {{ [index:string]: Object; }}
     * @description Filter list */
    FilterList;
}

JavaScript GetTableRecordsByRowGuidRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other

HTTP + OTHER

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /scadmeta/tables/{TablesId}/data/guid/{RowGuid} HTTP/1.1 
Host: duengageapi.uat.scadsoftware.com 
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length

{"TablesId":0,"RowGuid":"00000000000000000000000000000000","FilterList":{"String":{}}}
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length

{"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}}}