Pick Item from List extracts one specific item from a list. Use this to get the first campaign, select a random URL for testing, or retrieve specific items by position.


When to Use It

  • Get the latest campaign (last item) from API results
  • Select a random URL for testing workflows
  • Extract the first client from a list for priority processing
  • Pick specific items by position for targeted operations

Inputs

FieldTypeRequiredDescription
ListListYesThe list to pick an item from
Pick ModeSelectYesHow to select the item
IndexNumberYes*Position of item to pick (*For Custom Index mode only)

Pick Mode Options

ModeDescriptionUse Case
First ItemGets the first item in the listLatest data, priority items
Last ItemGets the last item in the listMost recent entries
Random ItemSelects a random itemTesting, sampling
Custom IndexPick by position (starts at 0)Specific targeting

Credit Cost

Free to use - no credits required.


Outputs

OutputDescription
Selected ItemThe picked item from the list

Understanding Index Numbers

When using Custom Index mode, remember that counting starts at 0:

List: ["Item A", "Item B", "Item C", "Item D"]
Index 0: "Item A" (first item)
Index 1: "Item B" (second item)
Index 2: "Item C" (third item)
Index 3: "Item D" (fourth item)

FAQ