GetScheduledCloudScripts
Retrieves scripts scheduled to run up to and including the specified start time (UTC in ms).
Service | Operation |
---|---|
script | GET_SCHEDULED_CLOUD_SCRIPTS |
Method Parameters
Parameter | Description |
---|---|
startDateUTC | If scheduling at a set time. The start date in UTC in Unix millis timestamp format. |
Usage
http://localhost:3000
- C#
- C++
- Objective-C
- Java
- JavaScript
- Dart
- Cloud Code
- Raw
// S2S call: to view example, switch to the Cloud Code or Raw tab.
// S2S call: to view example, switch to the Cloud Code or Raw tab.
// S2S call: to view example, switch to the Cloud Code or Raw tab.
// S2S call: to view example, switch to the Cloud Code or Raw tab.
// S2S call: to view example, switch to the Cloud Code or Raw tab.
// S2S call: to view example, switch to the Cloud Code or Raw tab.
var startDateUTC = 1512750683157;
var scriptProxy = bridge.getScriptServiceProxy();
var postResult = scriptProxy.getScheduledCloudScripts(startDateUTC);
if (postResult.status == 200) {
// Success!
}
{
"service": "script",
"operation": "GET_SCHEDULED_CLOUD_SCRIPTS",
"data": {
"startDateUTC": "[[#ts+60000]]"
}
}