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

# Add Tag

> Add a tag to a lead for organization, segmentation, and workflow triggers. Tags are useful for tracking lead status, campaign source, or custom categories.

Use underscores for multi-word tags (e.g., `High_Priority`, not `High Priority`).




## OpenAPI

````yaml PATCH /lead/tag
openapi: 3.0.3
info:
  title: Plura AI API
  description: >-
    Complete REST API reference for building powerful integrations with Plura
    AI.
  version: '1.7'
  contact:
    url: https://docs.plura.ai
servers:
  - url: https://api.plura.ai/v1
    description: Production
security:
  - bearerAuth: []
paths:
  /lead/tag:
    patch:
      tags:
        - Tags
      summary: Add Tag to Lead
      description: >
        Add a tag to a lead for organization, segmentation, and workflow
        triggers. Tags are useful for tracking lead status, campaign source, or
        custom categories.


        Use underscores for multi-word tags (e.g., `High_Priority`, not `High
        Priority`).
      operationId: addTag
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - lead_id
                - tag
              properties:
                lead_id:
                  type: string
                  description: UUID of the lead to tag
                  example: 307fc241-8398-4740-8122-cf6a59f3b86e
                tag:
                  type: string
                  description: Tag name. Use underscores for multi-word tags.
                  example: High_Priority
            example:
              lead_id: 307fc241-8398-4740-8122-cf6a59f3b86e
              tag: High_Priority
      responses:
        '200':
          description: Tag added successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: success
                  lead_id:
                    type: string
                  tag:
                    type: string
                  message:
                    type: string
                    example: Tag added successfully
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Lead not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      properties:
        status:
          type: string
          example: failed
        message:
          type: string
          example: Human-readable error description
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key from Settings → API Keys in your workspace

````