<< Back to GIL API Documentation
Returns information such as current activity, progress information, condition etc. concerning the process model adapter and the external system adapter.
/api/status[.format]
Example: /api/status.xml
Omitted format defaults to html.
html, xml, json
GET
Element | Description | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
status | Set to any of the following predefined values:
|
||||||||||
statusDescription | An optional description of the cause of the current status. | ||||||||||
operatingState | The current operating state e.g. RUN, FREEZE. | ||||||||||
isActivityDone | true | false: A activity can be in progress e.g. loading an IC. This element is set to false when there is an activity in progress. | ||||||||||
currentActivity | Contains a descriptive text of the current activity. A text can only be expected when isActivityDone is set to false. | ||||||||||
activityCompletion | Contains progress information (0-100) about the current activity. The value of this element is undefined when isActivityDone is set to true. |
<status> <externalSystem> <status>OK</status> <statusDescription>The ES is OK</statusDescription> <operatingState>Freeze</operatingState> <isActivityDone>false</isActivityDone> <currentActivity>Loading IC no 19</currentActivity> <activityCompletion>60</activityCompletion> </externalSystem> <processModel> <status>OK</status> <statusDescription>The PM is OK</statusDescription> <operatingState>Freeze</operatingState> <isActivityDone>true</isActivityDone> <currentActivity/> <activityCompletion>0</activityCompletion> </processModel> </status>