| Requires any of the roles: | Riskstore.Read, Riskstore.Write, Riskstore.Admin |
| GET | /api/riskstore/seed/status | List recent seed refresh requests | Returns all seed refresh entries known to the running host process, newest first. Entries are lost on restart. |
|---|
"use strict";
export class SeedRefreshStatusResponse {
/** @param {{requestId?:string,tableName?:string,status?:string,createdUtc?:string,updatedUtc?:string,startedUtc?:string,completedUtc?:string,rowCount?:number,errorMessage?:string,outputPath?:string,totalCount?:number,processedCount?:number,skippedCount?:number,failedCount?:number}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
requestId;
/** @type {string} */
tableName;
/** @type {string} */
status;
/** @type {string} */
createdUtc;
/** @type {string} */
updatedUtc;
/** @type {?string} */
startedUtc;
/** @type {?string} */
completedUtc;
/** @type {?number} */
rowCount;
/** @type {string} */
errorMessage;
/** @type {string} */
outputPath;
/** @type {?number} */
totalCount;
/** @type {?number} */
processedCount;
/** @type {?number} */
skippedCount;
/** @type {?number} */
failedCount;
}
export class ListSeedRefreshStatusResponse {
/** @param {{entries?:SeedRefreshStatusResponse[]}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {SeedRefreshStatusResponse[]} */
entries;
}
export class ListSeedRefreshStatus {
constructor(init) { Object.assign(this, init) }
}
JavaScript ListSeedRefreshStatus DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /api/riskstore/seed/status HTTP/1.1 Host: riskstoreng-dev.nephila.com Accept: text/jsonl
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length
{"entries":[{"requestId":"00000000000000000000000000000000","tableName":"String","status":"String","createdUtc":"0001-01-01T00:00:00.0000000Z","updatedUtc":"0001-01-01T00:00:00.0000000Z","startedUtc":"0001-01-01T00:00:00.0000000Z","completedUtc":"0001-01-01T00:00:00.0000000Z","rowCount":0,"errorMessage":"String","outputPath":"String","totalCount":0,"processedCount":0,"skippedCount":0,"failedCount":0}]}