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

# Update an emoji action

> Update multiple emoji actions for a team. This endpoint is only available for standard and enterprise tier organizations.



## OpenAPI

````yaml patch /v1/emojis/actions/{teamId}
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}:
    patch:
      tags:
        - Emoji Actions
      description: >-
        Update multiple emoji actions for a team. This endpoint is only
        available for standard and enterprise tier organizations.
      parameters:
        - name: teamId
          required: true
          in: path
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateEmojiActionDTO'
      responses:
        '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:
  schemas:
    UpdateEmojiActionDTO:
      type: object
      properties:
        action:
          type: string
          description: Action to map against the emojis
          example: create_ticket
        emojis:
          description: Emojis to map against the action
          example:
            - white_check_mark
          type: array
          items:
            type: string
      required:
        - action
        - emojis
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: 'Enter your API key '

````