AMPscript
Add
Pause
Publish
Retrieve
Send
Start
Update
Validate Your Server-Side JavaScript using WSProxy
Retrieves an array of triggered send objects based on the specified criteria.
Retrieve(searchCriteria)
The Retrieve() function has the properties listed in this table.
| Property | Type | Description |
|---|---|---|
searchCriteria | Object | Required. Criteria used to search for triggered send. |
The searchCriteria object has the properties listed in this table.
| Name | Type | Description |
|---|---|---|
property | String | Required. The name of the field to use in the comparison. |
simpleOperator | String | Required. The comparison operator to use in the query. Possible values are:
|
value | String, number, boolean, or array | The value to compare the specified field to. |
To use the Publish() function, you must first initialize the triggered send object. Next, call the Publish() function on the initialized object.
This sample code retrieves a triggered send based on the specified filter criteria:
1var results = TriggeredSend.Retrieve({
2 Property: "CustomerKey",
3 SimpleOperator: "equals",
4 Value: "ssjs_tsd_key",
5});