Get status for batch metric upload

get

/serviceapi/entityModel/uds/metrics/status/{ecId}

Retrieves the ingest status for the given execution context id.

Request

Supported Media Types
Path Parameters
Back to Top

Response

Supported Media Types

200 Response

successful operation
Body ()
Root Schema : DataIngestStatus
Type: object

Describes the status of a data ingest batch job.

Show Source
Back to Top

Examples

JSON Response:
{
  "count" : 1000,
  "ecId" : "92aa97cc-01eb-4ff8-a49e-13b4ce76aed0",
  "endTime" : 2017-12-23T21:08:45.998Z,
  "errorMessage" : "an error message",
  "loaded" : 900,
  "message" : "a message",
  "rejected" : 100,
  "selfLink" : "/serviceapi/data/facts/status/92aa97cc-01eb-4ff8-a49e-13b4ce76aed0",
  "size" : 10000,
  "startTime" : 2017-12-23T21:08:40.123Z,
  "status" : "IN_PROGRESS",
}

Back to Top