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

# Get next steps by profile

> Returns next steps/action items assigned to a specific team member profile.



## OpenAPI

````yaml openapi.json get /v/alpha/next-steps/profile/{profileId}
openapi: 3.1.0
info:
  title: Operate API Documentation
  description: 'API for Operate: A CRM designed for sales, built for founders'
  version: Alpha
servers:
  - url: https://api.operate.so
security:
  - apiKey: []
tags:
  - name: Companies
    description: Manage companies and their associated data
  - name: People
    description: Manage people/contacts and their associated data
  - name: Deals
    description: Manage deals and opportunities
  - name: Feedback
    description: Manage customer feedback and feature requests
  - name: Next Steps
    description: Manage action items and next steps
  - name: Profiles
    description: Manage organization profiles (team members)
paths:
  /v/alpha/next-steps/profile/{profileId}:
    get:
      tags:
        - Next Steps
      summary: Get next steps by profile
      description: >-
        Returns next steps/action items assigned to a specific team member
        profile.
      operationId: getVAlphaNext-stepsProfileByProfileId
      parameters:
        - name: profileId
          in: path
          required: true
          schema:
            format: uuid
            description: The unique identifier (UUID) of the profile
            examples:
              - 550e8400-e29b-41d4-a716-446655440000
            type: string
        - name: include_completed
          in: query
          required: false
          schema:
            default: false
            description: >-
              Whether to include completed items in the results. Defaults to
              false (only pending/active items).
            examples:
              - true
              - false
            type: boolean
        - name: limit
          in: query
          required: false
          schema:
            minimum: 1
            maximum: 100
            default: 50
            description: Maximum number of next steps to return per page (1-100)
            examples:
              - 10
              - 25
              - 50
            type: number
      responses:
        '200':
          description: Successful response
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: API key for authentication. Obtain from your Operate dashboard.

````