| 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. |
|---|
import java.math.*
import java.util.*
import java.io.InputStream
import net.servicestack.client.*
open class ListSeedRefreshStatus : IGet
{
}
open class ListSeedRefreshStatusResponse
{
open var entries:ArrayList<SeedRefreshStatusResponse>? = null
}
open class SeedRefreshStatusResponse
{
open var requestId:UUID? = null
open var tableName:String? = null
open var status:String? = null
open var createdUtc:Date? = null
open var updatedUtc:Date? = null
open var startedUtc:Date? = null
open var completedUtc:Date? = null
open var rowCount:Long? = null
open var errorMessage:String? = null
open var outputPath:String? = null
open var totalCount:Int? = null
open var processedCount:Int? = null
open var skippedCount:Int? = null
open var failedCount:Int? = null
}
Kotlin ListSeedRefreshStatus DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
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/csv
HTTP/1.1 200 OK
Content-Type: text/csv
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}]}