Get Scheduled Transactions

The Simulate Get Scheduled Transactions block returns all the scheduled transactions for a specific scheduler. To get the upcoming transactions, provide the scheduler key— that is all you need.

Simulate Get Scheduled Transactions Block
SchedulerKey

Scheduler Key for the particular scheduler

Data Type : Integer

Example  :  5
max

Allows you to specify how many checklists you want to return

Data Type : Integer

Example  :  20
last

Allows you to specify which record to start retrieving data: 0 begins with the first record, 1 skips the first record

Data Type : Integer

Example  :  0

Output Pins

Scheduled Transactions

Scheduled Transactions of the provided scheduler

Type : List

Example  : [ { "HasParent": "False", "Transactions": "[ { "App": { "DisplayText": "TestAPI", "Value": "35" }, "HasParent": false, "TargetStartDate": "2024-11-07T17:30:00Z", "RecurrenceType": "Daily", "Pattern": 1, "Checklists": [ { "Checklist": { "DisplayText": "Checklist Name", "Value": "48" }, "ServiceItems": [ { "displayText": "1000", "objectType": "Asset", "value": "3" } ] } ] } ]" }, { "HasParent": "False", "Transactions": "[ { "App": { "DisplayText": "TestAPI", "Value": "35" }, "HasParent": false, "TargetStartDate": "2024-11-08T17:30:00Z", "RecurrenceType": "Daily", "Pattern": 1, "Checklists": [ { "Checklist": { "DisplayText": "Checklist Name", "Value": "48" }, "ServiceItems": [ { "displayText": "1000", "objectType": "Asset", "value": "3" } ] } ] } ]" }, { "HasParent": "False", "Transactions": "[ { "App": { "DisplayText": "TestAPI", "Value": "35" }, "HasParent": false, "TargetStartDate": "2024-11-09T17:30:00Z", "RecurrenceType": "Daily", "Pattern": 1, "Checklists": [ { "Checklist": { "DisplayText": "Checklist Name", "Value": "48" }, "ServiceItems": [ { "displayText": "1000", "objectType": "Asset", "value": "3" } ] } ] } ]" }, { "HasParent": "False", "Transactions": "[ { "App": { "DisplayText": "TestAPI", "Value": "35" }, "HasParent": false, "TargetStartDate": "2024-11-10T17:30:00Z", "RecurrenceType": "Daily", "Pattern": 1, "Checklists": [ { "Checklist": { "DisplayText": "Checklist Name", "Value": "48" }, "ServiceItems": [ { "displayText": "1000", "objectType": "Asset", "value": "3" } ] } ] } ]" }, { "HasParent": "False", "Transactions": "[ { "App": { "DisplayText": "TestAPI", "Value": "35" }, "HasParent": false, "TargetStartDate": "2024-11-11T17:30:00Z", "RecurrenceType": "Daily", "Pattern": 1, "Checklists": [ { "Checklist": { "DisplayText": "Checklist Name", "Value": "48" }, "ServiceItems": [ { "displayText": "1000", "objectType": "Asset", "value": "3" } ] } ] } ]" } ]
Example: Using the Simulate Get Scheduled Transactions Block in a real application

Last updated