GET Schedule?scheduled_for_guid={scheduled_for_guid}&appid={appid}&sg={sg}&hash={hash}&token={token}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| scheduled_for_guid | string |
Required |
|
| appid | string |
Required |
|
| sg | string |
Required |
|
| hash | string |
Required |
|
| token | string |
Required |
Body Parameters
None.
Response Information
Resource Description
BaseGridOfSchedule| Name | Description | Type | Additional information |
|---|---|---|---|
| page | integer |
None. |
|
| records | integer |
None. |
|
| total | integer |
None. |
|
| the_list | Collection of Schedule |
None. |
Response Formats
application/json, text/json
Sample:
{
"page": 1,
"records": 2,
"total": 3,
"the_list": [
null,
{
"appid": "sample string 1",
"name": "sample string 2",
"description": "sample string 3",
"scheduled_entity_guid": "sample string 4",
"scheduled_entity_guid_type": "sample string 5",
"scheduled_for_guid": "sample string 6",
"scheduled_for_guid_type": "sample string 7",
"scheduled_date": "2026-05-11T04:36:58.1203981+00:00",
"created_date": "2026-05-11T04:36:58.1203981+00:00",
"created_by_guid_type": "sample string 8",
"created_by_guid": "sample string 9",
"guid": "000000000000000000000000",
"guid_datetime": "1970-01-01T00:00:00Z"
}
]
}
application/xml, text/xml
Sample:
<BaseGridOfScheduleXD55xrjw 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>
<Schedule i:nil="true" />
<Schedule>
<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>
<appid>sample string 1</appid>
<created_by_guid>sample string 9</created_by_guid>
<created_by_guid_type>sample string 8</created_by_guid_type>
<created_date>2026-05-11T04:36:58.1203981+00:00</created_date>
<description>sample string 3</description>
<name>sample string 2</name>
<scheduled_date>2026-05-11T04:36:58.1203981+00:00</scheduled_date>
<scheduled_entity_guid>sample string 4</scheduled_entity_guid>
<scheduled_entity_guid_type>sample string 5</scheduled_entity_guid_type>
<scheduled_for_guid>sample string 6</scheduled_for_guid>
<scheduled_for_guid_type>sample string 7</scheduled_for_guid_type>
</Schedule>
</the_list>
<total>3</total>
</BaseGridOfScheduleXD55xrjw>