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

# Delete an emoji action by id

> Delete a specific emoji action by ID from a team. This endpoint is only available for standard and enterprise tier organizations.



## OpenAPI

````yaml delete /v1/emojis/actions/{teamId}/{emojiActionId}
openapi: 3.0.0
info:
  title: Thena Platform
  description: The Thena Platform API description
  version: 1.0.0
  contact: {}
servers:
  - url: https://platform.thena.ai
    description: Platform
  - url: http://localhost:8000
    description: Local
security:
  - ApiKey: []
tags: []
paths:
  /v1/emojis/actions/{teamId}/{emojiActionId}:
    delete:
      tags:
        - Emoji Actions
      description: >-
        Delete a specific emoji action by ID from a team. This endpoint is only
        available for standard and enterprise tier organizations.
      parameters:
        - name: teamId
          required: true
          in: path
          schema:
            type: string
        - name: emojiActionId
          required: true
          in: path
          schema:
            type: string
      responses:
        '204':
          description: Resource deleted successfully
        '400':
          description: Team ID is required
          content:
            application/json:
              example:
                statusCode: 400
                message: Team ID is required
                error: Bad Request
        '401':
          description: Unauthorized
          content:
            application/json:
              example:
                statusCode: 401
                message: Unauthorized
                error: Unauthorized
        '403':
          description: Forbidden - Organization tier requirement not met
          content:
            application/json:
              example:
                statusCode: 403
                message: >-
                  This feature is only available for standard and enterprise
                  tier organizations
                error: Forbidden
        '404':
          description: Resource not found!
        '429':
          description: Too many requests!
        '500':
          description: Internal Server Error
          content:
            application/json:
              example:
                statusCode: 500
                message: Failed to update emoji action
                error: Internal Server Error
        '503':
          description: Service Unavailable
          content:
            application/json:
              example:
                statusCode: 503
                message: Service Unavailable
                error: Service Unavailable
components:
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: 'Enter your API key '

````