> ## 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.

# List inbox tags

> List the tags that can be applied to inbox threads.

Required parameters:
- None

Optional query parameters:
- senderIdentityId: scope tag counts to the threads visible for one sender identity
- archived: set to true to count archived threads instead of active ones. Defaults to false.

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



## OpenAPI

````yaml https://openapi.enginy.ai/definitions.json get /v1/inbox/tags
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/inbox/tags:
    get:
      tags:
        - Inbox
      summary: List inbox tags
      description: >-
        List the tags that can be applied to inbox threads.


        Required parameters:

        - None


        Optional query parameters:

        - senderIdentityId: scope tag counts to the threads visible for one
        sender identity

        - archived: set to true to count archived threads instead of active
        ones. Defaults to false.

            > **Required scope:** `MESSAGING_READ`
            >
            > **Rate limit:** 100 requests per minute
      parameters:
        - schema:
            type: integer
            exclusiveMinimum: 0
            description: Scope tag counts to the threads visible for one sender identity.
            example: 14
          required: false
          description: Scope tag counts to the threads visible for one sender identity.
          name: senderIdentityId
          in: query
        - schema:
            type: boolean
            description: Count archived threads instead of active ones. Defaults to false.
            example: false
          required: false
          description: Count archived threads instead of active ones. Defaults to false.
          name: archived
          in: query
      responses:
        '200':
          description: Inbox tags retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - success
                  message:
                    type: string
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: number
                          description: Unique identifier for the inbox tag
                        name:
                          type: string
                          description: Tag name
                        color:
                          type: string
                          description: Tag color
                        count:
                          type: number
                          description: >-
                            Number of visible contact threads that currently
                            have this tag
                        isPromptActive:
                          type: boolean
                          description: >-
                            Whether the tag is enabled for prompt-based
                            auto-tagging
                        isEditable:
                          type: boolean
                          description: Whether the tag can be edited manually
                      required:
                        - id
                        - name
                        - color
                        - count
                        - isPromptActive
                        - isEditable
                required:
                  - status
                  - message
                  - data
              examples:
                default:
                  summary: Available inbox tags with counts
                  value:
                    status: success
                    message: Inbox tags retrieved successfully
                    data:
                      - id: 5
                        name: Hot lead
                        color: '#F97316'
                        count: 18
                        isPromptActive: false
                        isEditable: true
                      - id: 8
                        name: Needs follow-up
                        color: '#2563EB'
                        count: 41
                        isPromptActive: false
                        isEditable: true
        '404':
          description: Sender identity not found
      security:
        - apiKey: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key

````