GET ScheduledActionOuputData?run_guid={run_guid}&action_guid={action_guid}&appid={appid}&sg={sg}&hash={hash}&token={token}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| run_guid | string |
Required |
|
| action_guid | string |
Required |
|
| appid | string |
Required |
|
| sg | string |
Required |
|
| hash | string |
Required |
|
| token | string |
Required |
Body Parameters
None.
Response Information
Resource Description
BaseGridOfScheduledActionOutputData| Name | Description | Type | Additional information |
|---|---|---|---|
| page | integer |
None. |
|
| records | integer |
None. |
|
| total | integer |
None. |
|
| the_list | Collection of ScheduledActionOutputData |
None. |
Response Formats
application/json, text/json
Sample:
{
"page": 1,
"records": 2,
"total": 3,
"the_list": [
null,
{
"appid": "sample string 1",
"sa_guid": "sample string 2",
"run_guid": "sample string 3",
"action_guid": "sample string 4",
"output": null,
"as_of_date": "2026-05-11T04:37:24.3030205+00:00",
"guid": "000000000000000000000000",
"guid_datetime": "1970-01-01T00:00:00Z"
}
]
}
application/xml, text/xml
Sample:
<BaseGridOfScheduledActionOutputDataXD55xrjw xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/productious_models">
<page>1</page>
<records>2</records>
<the_list>
<ScheduledActionOutputData i:nil="true" />
<ScheduledActionOutputData>
<guid>000000000000000000000000</guid>
<id xmlns:d4p1="http://schemas.datacontract.org/2004/07/MongoDB.Bson">
<d4p1:_a>0</d4p1:_a>
<d4p1:_b>0</d4p1:_b>
<d4p1:_c>0</d4p1:_c>
</id>
<action_guid>sample string 4</action_guid>
<appid>sample string 1</appid>
<as_of_date>2026-05-11T04:37:24.3030205+00:00</as_of_date>
<output xmlns:d4p1="http://schemas.datacontract.org/2004/07/MongoDB.Bson" i:nil="true" />
<run_guid>sample string 3</run_guid>
<sa_guid>sample string 2</sa_guid>
</ScheduledActionOutputData>
</the_list>
<total>3</total>
</BaseGridOfScheduledActionOutputDataXD55xrjw>