InvokeUpdate
Overview
Invokes the Update method on the specified objectSyntax
InvokeUpdate(1, 2, 3)
| Ordinal | Type | Description | |
|---|---|---|---|
| 1 | string | Required | Object on which to perform Update method |
| 2 | array | Required | Array containing status and RequestID of API call |
| 3 | string | Required | API configure options to include in call. Can contain a null value. |
Example
<script runat="server">
var StatusAndRequestID = [0,0];
var newObject = Platform.Function.InvokeUpdate(UpdateRequest,StatusAndRequestID,Options);
var status = StatusAndRequestID[0];
var requestID = StatusAndRequestID[1];
</script>