AddObjectArrayItem
CreateObject
InvokeConfigure
InvokeCreate
InvokeDelete
InvokeExecute
InvokeExtract
InvokePerform
InvokeRetrieve
InvokeSchedule
InvokeUpdate
SetObjectProperty
指定したオブジェクトで Schedule メソッドを呼び出します。
InvokeSchedule(1, 2, 3, 4, 5)
| 序数 | 型 | 説明 | |
|---|---|---|---|
| 1 | string | 必須 | Schedule メソッドを実行する対象のオブジェクト |
| 2 | string | 必須 | オブジェクトで実行するメソッド |
| 3 | string | 必須 | Schedule メソッドで使用するスケジュール定義オブジェクト |
| 4 | array | 必須 | API 呼び出しのステータスと RequestID を含む配列 |
| 5 | string | 必須 | 呼び出しに含める API 構成オプション。null 値を含めることができます。 |
1<script runat="server">
2 var rtn = [0,0,0];
3 var newObject = Platform.Function.InvokeSchedule(APIObject,"Validate",scheduleDefinition,StatusAndRequestID,Options);
4 var statusMessage = StatusAndRequestID[0];
5 var errorCode = StatusAndRequestID[1];
6 var scheduleResponse = StatusAndRequestID[2];
7</script>