> ## Documentation Index
> Fetch the complete documentation index at: https://docs.agent.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get User List

> Capture a list of items from a textarea and split on a delimiter or newline.



## OpenAPI

````yaml /api-reference/v1/v1.1.0_openapi.json post /action/get_user_list
openapi: 3.0.0
info:
  version: 1.1.0
  title: AI Actions - Get Data
  description: API specifications for 'Get Data' category AI actions.
  license:
    name: MIT
servers:
  - url: https://api-lr.agent.ai/v1
security:
  - bearerAuth: []
paths:
  /action/get_user_list:
    post:
      tags:
        - Inputs & Data Retrieval
      summary: Get User List
      description: >-
        Capture a list of items from a textarea and split on a delimiter or
        newline.
      operationId: getUserList
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                input_description:
                  type: string
                  description: >-
                    Write a clear prompt to guide users on what information is
                    required. For example, 'Please enter your email address' or
                    'Select your preferred contact method.'
                delimiter:
                  type: string
                  description: >-
                    This is the character that separates the list items. For
                    example, use a comma (,) for 'item1,item2,item3'. Leave
                    blank to split on newlines.
                required:
                  type: boolean
                  description: >-
                    Mark this checkbox if this input is mandatory. For example,
                    enable it if a response is essential to proceed in the
                    workflow.
                  default: true
                input_name:
                  type: string
                  description: >-
                    Assign a unique variable name for the input value, such as
                    'user_email' or 'preferred_contact', which you can reference
                    later in the workflow.
                  default: user_input
                  pattern: ^[a-zA-Z][a-zA-Z0-9_]*$
              required:
                - input_description
                - input_name
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ActionResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ActionResponse'
        '401':
          description: Unauthorized - invalid or missing bearer token
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ActionResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ActionResponse'
components:
  schemas:
    ActionResponse:
      type: object
      properties:
        status:
          type: integer
          format: int32
          description: HTTP status code of the action response
        response:
          type: object
          description: Response data from the action
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Bearer token from your account
        ([https://agent.ai/user/integrations#api](https://agent.ai/user/integrations#api))

````