Skip to main content
Version: 5.7.0

ScheduleCloudScript

Schedules a scheduled cloud code job. Can be scheduled minutes from the current time or at a set time.

Note - brainCloud checks for schedule cloud code scripts every minute, so it is not recommended to run jobs that require only a 1-60 second delay.

ServiceOperation
scriptSCHEDULE_CLOUD_SCRIPT

Method Parameters

ParameterDescription
scriptNameThe name of the script with its path to be run.
scriptDataData to be sent to the script in JSON format.
startDateUTCIf scheduling at a set time. The start date in UTC in Unix millis timestamp format.
minutesFromNowIf scheduling in minutes from the current time. Number of minutes from now to run the script.

Usage

http://localhost:3000
// S2S call: to view example, switch to the Cloud Code or Raw tab.
JSON Response
{
"packetId": 1,
"messageResponses": [
{
"status": 200,
"data": {
"result": {},
"scriptName": "testScript",
"jobId": "48266b95-d197-464d-bb6b-da70aa1e22a9",
"runState": "Scheduled",
"description": null,
"gameId": "10170",
"runEndTime": 0,
"parameters": {
"testParm1": 1
},
"runStartTime": 0,
"scheduledStartTime": 1437576422378
}
}
]
}