GET api/Admin/GetProgressBarValues?id={id}

Request Information

URI Parameters

Name Description Type Additional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

ProgressBarValuesModel
Name Description Type Additional information
DataSourceOperationCompleted

boolean

None.

ParsingCompleted

boolean

None.

TransformationCompleted

boolean

None.

PushNotificationsCompleted

boolean

None.

HasDataSourceOperationError

boolean

None.

HasParsingError

boolean

None.

HasTransformationError

boolean

None.

HasPushNotificationsError

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "DataSourceOperationCompleted": true,
  "ParsingCompleted": true,
  "TransformationCompleted": true,
  "PushNotificationsCompleted": true,
  "HasDataSourceOperationError": true,
  "HasParsingError": true,
  "HasTransformationError": true,
  "HasPushNotificationsError": true
}

text/html

Sample:
{"DataSourceOperationCompleted":true,"ParsingCompleted":true,"TransformationCompleted":true,"PushNotificationsCompleted":true,"HasDataSourceOperationError":true,"HasParsingError":true,"HasTransformationError":true,"HasPushNotificationsError":true}

application/xml, text/xml

Sample:
<ProgressBarValuesModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DAO.Models.Admin">
  <DataSourceOperationCompleted>true</DataSourceOperationCompleted>
  <HasDataSourceOperationError>true</HasDataSourceOperationError>
  <HasParsingError>true</HasParsingError>
  <HasPushNotificationsError>true</HasPushNotificationsError>
  <HasTransformationError>true</HasTransformationError>
  <ParsingCompleted>true</ParsingCompleted>
  <PushNotificationsCompleted>true</PushNotificationsCompleted>
  <TransformationCompleted>true</TransformationCompleted>
</ProgressBarValuesModel>