跳到主要内容 跳到补充内容

Lookup item in list block

The lookup item in list block searches for a specific item inside a list.

lookup item in a list block

A lookup item in list block is commonly used in the following situation:

  • When an automation needs a specific object from a list.

Configuring a lookup item in list block

Configure the lookup item in list block to select a specified item within a single list.

信息注释

List blocks do not use iterators. This means that lists are loaded in memory before doing the processing of any data. If your automation contains large lists, the automation might fail with an out-of-memory error. Instead, use a loop block to iterate through large lists.

Inputs

The lookup item in list block requires a list and a condition. The list can be a field mapped list from a preceding block. The input condition accepts keys, for example email, or a nested key like profile.email.

Look up item in list block input fields

lookup item in list block inputs

Example of looking up item in list

List:

[
      {"email": "john@doe.com", "name": "John Doe"},
      {"email": "bill@acme.com", "name": "Bill Davis"}
]

If the above list is the input list, and the condition is email equals john@doe.com, then the resulting list is:

{"email": "john@doe.com", "name": "John Doe"}

本页面有帮助吗?

如果您发现此页面或其内容有任何问题 – 打字错误、遗漏步骤或技术错误 – 请告诉我们如何改进!