# Return element transform action

## Use case

You have a list of users and you would like to grab the first user in the list.

## Overview

Returns the Nth element of a string or list

<figure><img src="https://1835401289-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FAQQ1EHVcEsGKBPVHmiav%2Fuploads%2FQe0EsQZyDVSX4ODv2Kfa%2FScreenshot%202025-05-01%20at%202.53.38%E2%80%AFPM.png?alt=media&#x26;token=9a8f43ab-30b7-4d5b-881f-9d9232c78d61" alt="A screenshot of the set return element transform action, seen in the actions list menu of the workflow builder canvas."><figcaption></figcaption></figure>

## Parameters

<table><thead><tr><th width="217">Parameter</th><th width="417.3333333333333">Description</th><th data-type="checkbox">Required</th></tr></thead><tbody><tr><td>Element</td><td>Element number to Return, starting at 0 for the first element. -1 will return the last element</td><td>true</td></tr><tr><td>Input String or List</td><td>String or list that you would like to return the element of.</td><td>true</td></tr></tbody></table>

## Usage

<details>

<summary>Example 1: Return the first user in a list of users</summary>

Input:

**Element:** 0

**Input String or List:**

```json
[
    {
        "id": 1,
        "user": "Bob"
    },
    {
        "id": 2,
        "user": "Kim"
    },
    {
        "id": 3,
        "user": "Magnus"
    },
    {
        "id": 4,
        "user": "Karin"
    },
]
```

</details>

## Results output

Result of example 1:

```json
{
	"id": 1,
	"user": "Bob"
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.rewst.help/documentation/automations/actions-in-rewst/transform-actions/return-element-transform-action.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
