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

# Get task owners

> Retrieve CRM owners for task assignment in campaign task steps.

Use this before creating `task` steps. If this endpoint returns one or more owners, `ownerId` becomes required on every task step in `POST /v1/campaigns`.

    > **Required scope:** `OWNERS_READ`
    >
    > **Rate limit:** 100 requests per minute



## OpenAPI

````yaml https://openapi.enginy.ai/definitions.json get /v1/tasks/owners
openapi: 3.1.0
info:
  title: Enginy API
  version: 1.0.0
  description: Public API for Enginy platform
servers:
  - url: https://openapi.enginy.ai
    description: Configured server
security: []
tags:
  - name: AI Variables
    description: >-
      Manage AI variables and discover the entity fields you can reference in
      prompts and entity requests.
  - name: Inbox
    description: >-
      Inbox endpoints for listing contact threads, reading thread messages,
      managing tags, and sending manual replies.
  - name: Workflows
    description: >-
      Build, validate, publish, run, and inspect advanced (graph) workflows,
      plus the block/condition catalog needed to author a workflow plan.
paths:
  /v1/tasks/owners:
    get:
      tags:
        - Tasks
      summary: Get task owners
      description: >-
        Retrieve CRM owners for task assignment in campaign task steps.


        Use this before creating `task` steps. If this endpoint returns one or
        more owners, `ownerId` becomes required on every task step in `POST
        /v1/campaigns`.

            > **Required scope:** `OWNERS_READ`
            >
            > **Rate limit:** 100 requests per minute
      responses:
        '200':
          description: Task owners retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - success
                  message:
                    type: string
                  data:
                    type: object
                    properties:
                      crmPlatform:
                        type:
                          - string
                          - 'null'
                        enum:
                          - HUBSPOT
                          - SALESFORCE
                          - PIPEDRIVE
                          - ZOHO
                          - DYNAMICS
                          - TRIBECRM
                          - CUSTOM_CRM
                          - ATTIO
                          - ODOO
                          - null
                        description: >-
                          Connected CRM platform, or `null` when no CRM is
                          connected.
                      ownerSelectionRequired:
                        type: boolean
                        description: >-
                          When `true`, every `task` step in `POST /v1/campaigns`
                          must include `ownerId`.
                      owners:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              description: >-
                                CRM owner ID to send back as `ownerId` in task
                                steps.
                            name:
                              type: string
                              description: CRM owner display name.
                            email:
                              type: string
                              description: CRM owner email when the CRM exposes it.
                          required:
                            - id
                            - name
                        description: Available CRM owners for task assignment.
                    required:
                      - crmPlatform
                      - ownerSelectionRequired
                      - owners
                required:
                  - status
                  - message
                  - data
        '400':
          description: CRM authentication expired or CRM owners could not be fetched
      security:
        - apiKey: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key

````