기본 콘텐츠로 건너뛰기 보완적인 콘텐츠로 건너뛰기

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"}

이 페이지가 도움이 되었습니까?

이 페이지 또는 해당 콘텐츠에서 오타, 누락된 단계 또는 기술적 오류와 같은 문제를 발견하면 개선 방법을 알려 주십시오!