GitLab CI/CD award_emoji API

Operations about award_emoji

Operations 32

GET /api/v4/groups/{id}/epics/{epic_iid}/award_emoji List an awardable's emoji reactions for groups #
POST /api/v4/groups/{id}/epics/{epic_iid}/award_emoji Add a new emoji reaction #
GET /api/v4/groups/{id}/epics/{epic_iid}/award_emoji/{award_id} Get a single emoji reaction #
DELETE /api/v4/groups/{id}/epics/{epic_iid}/award_emoji/{award_id} Delete an emoji reaction #
GET /api/v4/groups/{id}/epics/{epic_iid}/notes/{note_id}/award_emoji List an awardable's emoji reactions for groups #
POST /api/v4/groups/{id}/epics/{epic_iid}/notes/{note_id}/award_emoji Add a new emoji reaction #
GET /api/v4/groups/{id}/epics/{epic_iid}/notes/{note_id}/award_emoji/{award_id} Get a single emoji reaction #
DELETE /api/v4/groups/{id}/epics/{epic_iid}/notes/{note_id}/award_emoji/{award_id} Delete an emoji reaction #
GET /api/v4/projects/{id}/issues/{issue_iid}/award_emoji List an awardable's emoji reactions for projects #
POST /api/v4/projects/{id}/issues/{issue_iid}/award_emoji Add a new emoji reaction #
GET /api/v4/projects/{id}/issues/{issue_iid}/award_emoji/{award_id} Get a single emoji reaction #
DELETE /api/v4/projects/{id}/issues/{issue_iid}/award_emoji/{award_id} Delete an emoji reaction #
GET /api/v4/projects/{id}/issues/{issue_iid}/notes/{note_id}/award_emoji List an awardable's emoji reactions for projects #
POST /api/v4/projects/{id}/issues/{issue_iid}/notes/{note_id}/award_emoji Add a new emoji reaction #
GET /api/v4/projects/{id}/issues/{issue_iid}/notes/{note_id}/award_emoji/{award_id} Get a single emoji reaction #
DELETE /api/v4/projects/{id}/issues/{issue_iid}/notes/{note_id}/award_emoji/{award_id} Delete an emoji reaction #
GET /api/v4/projects/{id}/merge_requests/{merge_request_iid}/award_emoji List an awardable's emoji reactions for projects #
POST /api/v4/projects/{id}/merge_requests/{merge_request_iid}/award_emoji Add a new emoji reaction #
GET /api/v4/projects/{id}/merge_requests/{merge_request_iid}/award_emoji/{award_id} Get a single emoji reaction #
DELETE /api/v4/projects/{id}/merge_requests/{merge_request_iid}/award_emoji/{award_id} Delete an emoji reaction #
GET /api/v4/projects/{id}/merge_requests/{merge_request_iid}/notes/{note_id}/award_emoji List an awardable's emoji reactions for projects #
POST /api/v4/projects/{id}/merge_requests/{merge_request_iid}/notes/{note_id}/award_emoji Add a new emoji reaction #
GET /api/v4/projects/{id}/merge_requests/{merge_request_iid}/notes/{note_id}/award_emoji/{award_id} Get a single emoji reaction #
DELETE /api/v4/projects/{id}/merge_requests/{merge_request_iid}/notes/{note_id}/award_emoji/{award_id} Delete an emoji reaction #
GET /api/v4/projects/{id}/snippets/{snippet_id}/award_emoji List an awardable's emoji reactions for projects #
POST /api/v4/projects/{id}/snippets/{snippet_id}/award_emoji Add a new emoji reaction #
GET /api/v4/projects/{id}/snippets/{snippet_id}/award_emoji/{award_id} Get a single emoji reaction #
DELETE /api/v4/projects/{id}/snippets/{snippet_id}/award_emoji/{award_id} Delete an emoji reaction #
GET /api/v4/projects/{id}/snippets/{snippet_id}/notes/{note_id}/award_emoji List an awardable's emoji reactions for projects #
POST /api/v4/projects/{id}/snippets/{snippet_id}/notes/{note_id}/award_emoji Add a new emoji reaction #
GET /api/v4/projects/{id}/snippets/{snippet_id}/notes/{note_id}/award_emoji/{award_id} Get a single emoji reaction #
DELETE /api/v4/projects/{id}/snippets/{snippet_id}/notes/{note_id}/award_emoji/{award_id} Delete an emoji reaction #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/gitlab-ci-award-emoji-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

gitlab-ci-award-emoji-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: GitLab access_requests Award Emoji API
  version: v4
  description: Operations related to access requests
servers:
- url: https://gitlab.com
tags:
- name: award_emoji
  description: Operations about award_emoji
paths:
  /api/v4/groups/{id}/epics/{epic_iid}/award_emoji:
    get:
      summary: List an awardable's emoji reactions for groups
      description: Get a list of all emoji reactions for a specified awardable. This feature was introduced in 8.9
      parameters:
      - in: path
        name: id
        description: The ID or URL-encoded path of the group
        required: true
        schema:
          type: string
      - in: path
        name: epic_iid
        description: ID (`iid` for merge requests/issues/epics, `id` for snippets) of an awardable.
        required: true
        schema:
          type: integer
          format: int32
      - in: query
        name: page
        description: Current page number
        required: false
        example: 1
        schema:
          type: integer
          format: int32
          default: 1
      - in: query
        name: per_page
        description: Number of items per page
        required: false
        example: 20
        schema:
          type: integer
          format: int32
          default: 20
      responses:
        '200':
          description: List an awardable's emoji reactions for groups
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/API_Entities_AwardEmoji'
        '404':
          description: Not Found
      tags:
      - award_emoji
      operationId: getApiV4GroupsIdEpicsEpicIidAwardEmoji
    post:
      summary: Add a new emoji reaction
      description: Add an emoji reaction on the specified awardable. This feature was introduced in 8.9
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: epic_iid
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '201':
          description: Add a new emoji reaction
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/API_Entities_AwardEmoji'
        '400':
          description: Bad Request
        '404':
          description: Not Found
      tags:
      - award_emoji
      operationId: postApiV4GroupsIdEpicsEpicIidAwardEmoji
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/postApiV4GroupsIdEpicsEpicIidAwardEmoji'
        required: true
  /api/v4/groups/{id}/epics/{epic_iid}/award_emoji/{award_id}:
    get:
      summary: Get a single emoji reaction
      description: Get a single emoji reaction from an issue, snippet, or merge request. This feature was introduced in 8.9
      parameters:
      - in: path
        name: award_id
        description: ID of the emoji reaction.
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: id
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: epic_iid
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Get a single emoji reaction
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/API_Entities_AwardEmoji'
        '404':
          description: Not Found
      tags:
      - award_emoji
      operationId: getApiV4GroupsIdEpicsEpicIidAwardEmojiAwardId
    delete:
      summary: Delete an emoji reaction
      description: Only an administrator or the author of the reaction can delete an emoji reaction. This feature was introduced in 8.9
      parameters:
      - in: path
        name: award_id
        description: ID of an emoji reaction.
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: id
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: epic_iid
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '204':
          description: Delete an emoji reaction
        '401':
          description: Unauthorized
        '404':
          description: Not Found
      tags:
      - award_emoji
      operationId: deleteApiV4GroupsIdEpicsEpicIidAwardEmojiAwardId
  /api/v4/groups/{id}/epics/{epic_iid}/notes/{note_id}/award_emoji:
    get:
      summary: List an awardable's emoji reactions for groups
      description: Get a list of all emoji reactions for a specified awardable. This feature was introduced in 8.9
      parameters:
      - in: query
        name: page
        description: Current page number
        required: false
        example: 1
        schema:
          type: integer
          format: int32
          default: 1
      - in: query
        name: per_page
        description: Number of items per page
        required: false
        example: 20
        schema:
          type: integer
          format: int32
          default: 20
      - in: path
        name: id
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: epic_iid
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: note_id
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: List an awardable's emoji reactions for groups
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/API_Entities_AwardEmoji'
        '404':
          description: Not Found
      tags:
      - award_emoji
      operationId: getApiV4GroupsIdEpicsEpicIidNotesNoteIdAwardEmoji
    post:
      summary: Add a new emoji reaction
      description: Add an emoji reaction on the specified awardable. This feature was introduced in 8.9
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: epic_iid
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: note_id
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '201':
          description: Add a new emoji reaction
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/API_Entities_AwardEmoji'
        '400':
          description: Bad Request
        '404':
          description: Not Found
      tags:
      - award_emoji
      operationId: postApiV4GroupsIdEpicsEpicIidNotesNoteIdAwardEmoji
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/postApiV4GroupsIdEpicsEpicIidNotesNoteIdAwardEmoji'
        required: true
  /api/v4/groups/{id}/epics/{epic_iid}/notes/{note_id}/award_emoji/{award_id}:
    get:
      summary: Get a single emoji reaction
      description: Get a single emoji reaction from an issue, snippet, or merge request. This feature was introduced in 8.9
      parameters:
      - in: path
        name: award_id
        description: ID of the emoji reaction.
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: id
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: epic_iid
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: note_id
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Get a single emoji reaction
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/API_Entities_AwardEmoji'
        '404':
          description: Not Found
      tags:
      - award_emoji
      operationId: getApiV4GroupsIdEpicsEpicIidNotesNoteIdAwardEmojiAwardId
    delete:
      summary: Delete an emoji reaction
      description: Only an administrator or the author of the reaction can delete an emoji reaction. This feature was introduced in 8.9
      parameters:
      - in: path
        name: award_id
        description: ID of an emoji reaction.
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: id
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: epic_iid
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: note_id
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '204':
          description: Delete an emoji reaction
        '401':
          description: Unauthorized
        '404':
          description: Not Found
      tags:
      - award_emoji
      operationId: deleteApiV4GroupsIdEpicsEpicIidNotesNoteIdAwardEmojiAwardId
  /api/v4/projects/{id}/issues/{issue_iid}/award_emoji:
    get:
      summary: List an awardable's emoji reactions for projects
      description: Get a list of all emoji reactions for a specified awardable. This feature was introduced in 8.9
      parameters:
      - in: path
        name: id
        description: The ID or URL-encoded path of the project
        required: true
        schema:
          type: string
      - in: path
        name: issue_iid
        description: ID (`iid` for merge requests/issues/epics, `id` for snippets) of an awardable.
        required: true
        schema:
          type: integer
          format: int32
      - in: query
        name: page
        description: Current page number
        required: false
        example: 1
        schema:
          type: integer
          format: int32
          default: 1
      - in: query
        name: per_page
        description: Number of items per page
        required: false
        example: 20
        schema:
          type: integer
          format: int32
          default: 20
      responses:
        '200':
          description: List an awardable's emoji reactions for projects
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/API_Entities_AwardEmoji'
        '404':
          description: Not Found
      tags:
      - award_emoji
      operationId: getApiV4ProjectsIdIssuesIssueIidAwardEmoji
    post:
      summary: Add a new emoji reaction
      description: Add an emoji reaction on the specified awardable. This feature was introduced in 8.9
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: issue_iid
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '201':
          description: Add a new emoji reaction
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/API_Entities_AwardEmoji'
        '400':
          description: Bad Request
        '404':
          description: Not Found
      tags:
      - award_emoji
      operationId: postApiV4ProjectsIdIssuesIssueIidAwardEmoji
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/postApiV4ProjectsIdIssuesIssueIidAwardEmoji'
        required: true
  /api/v4/projects/{id}/issues/{issue_iid}/award_emoji/{award_id}:
    get:
      summary: Get a single emoji reaction
      description: Get a single emoji reaction from an issue, snippet, or merge request. This feature was introduced in 8.9
      parameters:
      - in: path
        name: award_id
        description: ID of the emoji reaction.
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: id
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: issue_iid
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Get a single emoji reaction
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/API_Entities_AwardEmoji'
        '404':
          description: Not Found
      tags:
      - award_emoji
      operationId: getApiV4ProjectsIdIssuesIssueIidAwardEmojiAwardId
    delete:
      summary: Delete an emoji reaction
      description: Only an administrator or the author of the reaction can delete an emoji reaction. This feature was introduced in 8.9
      parameters:
      - in: path
        name: award_id
        description: ID of an emoji reaction.
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: id
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: issue_iid
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '204':
          description: Delete an emoji reaction
        '401':
          description: Unauthorized
        '404':
          description: Not Found
      tags:
      - award_emoji
      operationId: deleteApiV4ProjectsIdIssuesIssueIidAwardEmojiAwardId
  /api/v4/projects/{id}/issues/{issue_iid}/notes/{note_id}/award_emoji:
    get:
      summary: List an awardable's emoji reactions for projects
      description: Get a list of all emoji reactions for a specified awardable. This feature was introduced in 8.9
      parameters:
      - in: query
        name: page
        description: Current page number
        required: false
        example: 1
        schema:
          type: integer
          format: int32
          default: 1
      - in: query
        name: per_page
        description: Number of items per page
        required: false
        example: 20
        schema:
          type: integer
          format: int32
          default: 20
      - in: path
        name: id
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: issue_iid
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: note_id
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: List an awardable's emoji reactions for projects
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/API_Entities_AwardEmoji'
        '404':
          description: Not Found
      tags:
      - award_emoji
      operationId: getApiV4ProjectsIdIssuesIssueIidNotesNoteIdAwardEmoji
    post:
      summary: Add a new emoji reaction
      description: Add an emoji reaction on the specified awardable. This feature was introduced in 8.9
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: issue_iid
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: note_id
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '201':
          description: Add a new emoji reaction
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/API_Entities_AwardEmoji'
        '400':
          description: Bad Request
        '404':
          description: Not Found
      tags:
      - award_emoji
      operationId: postApiV4ProjectsIdIssuesIssueIidNotesNoteIdAwardEmoji
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/postApiV4ProjectsIdIssuesIssueIidNotesNoteIdAwardEmoji'
        required: true
  /api/v4/projects/{id}/issues/{issue_iid}/notes/{note_id}/award_emoji/{award_id}:
    get:
      summary: Get a single emoji reaction
      description: Get a single emoji reaction from an issue, snippet, or merge request. This feature was introduced in 8.9
      parameters:
      - in: path
        name: award_id
        description: ID of the emoji reaction.
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: id
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: issue_iid
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: note_id
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Get a single emoji reaction
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/API_Entities_AwardEmoji'
        '404':
          description: Not Found
      tags:
      - award_emoji
      operationId: getApiV4ProjectsIdIssuesIssueIidNotesNoteIdAwardEmojiAwardId
    delete:
      summary: Delete an emoji reaction
      description: Only an administrator or the author of the reaction can delete an emoji reaction. This feature was introduced in 8.9
      parameters:
      - in: path
        name: award_id
        description: ID of an emoji reaction.
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: id
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: issue_iid
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: note_id
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '204':
          description: Delete an emoji reaction
        '401':
          description: Unauthorized
        '404':
          description: Not Found
      tags:
      - award_emoji
      operationId: deleteApiV4ProjectsIdIssuesIssueIidNotesNoteIdAwardEmojiAwardId
  /api/v4/projects/{id}/merge_requests/{merge_request_iid}/award_emoji:
    get:
      summary: List an awardable's emoji reactions for projects
      description: Get a list of all emoji reactions for a specified awardable. This feature was introduced in 8.9
      parameters:
      - in: path
        name: id
        description: The ID or URL-encoded path of the project
        required: true
        schema:
          type: string
      - in: path
        name: merge_request_iid
        description: ID (`iid` for merge requests/issues/epics, `id` for snippets) of an awardable.
        required: true
        schema:
          type: integer
          format: int32
      - in: query
        name: page
        description: Current page number
        required: false
        example: 1
        schema:
          type: integer
          format: int32
          default: 1
      - in: query
        name: per_page
        description: Number of items per page
        required: false
        example: 20
        schema:
          type: integer
          format: int32
          default: 20
      responses:
        '200':
          description: List an awardable's emoji reactions for projects
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/API_Entities_AwardEmoji'
        '404':
          description: Not Found
      tags:
      - award_emoji
      operationId: getApiV4ProjectsIdMergeRequestsMergeRequestIidAwardEmoji
    post:
      summary: Add a new emoji reaction
      description: Add an emoji reaction on the specified awardable. This feature was introduced in 8.9
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: merge_request_iid
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '201':
          description: Add a new emoji reaction
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/API_Entities_AwardEmoji'
        '400':
          description: Bad Request
        '404':
          description: Not Found
      tags:
      - award_emoji
      operationId: postApiV4ProjectsIdMergeRequestsMergeRequestIidAwardEmoji
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/postApiV4ProjectsIdMergeRequestsMergeRequestIidAwardEmoji'
        required: true
  /api/v4/projects/{id}/merge_requests/{merge_request_iid}/award_emoji/{award_id}:
    get:
      summary: Get a single emoji reaction
      description: Get a single emoji reaction from an issue, snippet, or merge request. This feature was introduced in 8.9
      parameters:
      - in: path
        name: award_id
        description: ID of the emoji reaction.
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: id
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: merge_request_iid
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Get a single emoji reaction
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/API_Entities_AwardEmoji'
        '404':
          description: Not Found
      tags:
      - award_emoji
      operationId: getApiV4ProjectsIdMergeRequestsMergeRequestIidAwardEmojiAwardId
    delete:
      summary: Delete an emoji reaction
      description: Only an administrator or the author of the reaction can delete an emoji reaction. This feature was introduced in 8.9
      parameters:
      - in: path
        name: award_id
        description: ID of an emoji reaction.
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: id
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: merge_request_iid
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '204':
          description: Delete an emoji reaction
        '401':
          description: Unauthorized
        '404':
          description: Not Found
      tags:
      - award_emoji
      operationId: deleteApiV4ProjectsIdMergeRequestsMergeRequestIidAwardEmojiAwardId
  /api/v4/projects/{id}/merge_requests/{merge_request_iid}/notes/{note_id}/award_emoji:
    get:
      summary: List an awardable's emoji reactions for projects
      description: Get a list of all emoji reactions for a specified awardable. This feature was introduced in 8.9
      parameters:
      - in: query
        name: page
        description: Current page number
        required: false
        example: 1
        schema:
          type: integer
          format: int32
          default: 1
      - in: query
        name: per_page
        description: Number of items per page
        required: false
        example: 20
        schema:
          type: integer
          format: int32
          default: 20
      - in: path
        name: id
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: merge_request_iid
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: note_id
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: List an awardable's emoji reactions for projects
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/API_Entities_AwardEmoji'
        '404':
          description: Not Found
      tags:
      - award_emoji
      operationId: getApiV4ProjectsIdMergeRequestsMergeRequestIidNotesNoteIdAwardEmoji
    post:
      summary: Add a new emoji reaction
      description: Add an emoji reaction on the specified awardable. This feature was introduced in 8.9
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: merge_request_iid
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: note_id
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '201':
          description: Add a new emoji reaction
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/API_Entities_AwardEmoji'
        '400':
          description: Bad Request
        '404':
          description: Not Found
      tags:
      - award_emoji
      operationId: postApiV4ProjectsIdMergeRequestsMergeRequestIidNotesNoteIdAwardEmoji
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/postApiV4ProjectsIdMergeRequestsMergeRequestIidNotesNoteIdAwardEmoji'
        required: true
  /api/v4/projects/{id}/merge_requests/{merge_request_iid}/notes/{note_id}/award_emoji/{award_id}:
    get:
      summary: Get a single emoji reaction
      description: Get a single emoji reaction from an issue, snippet, or merge request. This feature was introduced in 8.9
      parameters:
      - in: path
        name: award_id
        description: ID of the emoji reaction.
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: id
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: merge_request_iid
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: note_id
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Get a single emoji reaction
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/API_Entities_AwardEmoji'
        '404':
          description: Not Found
      tags:
      - award_emoji
      operationId: getApiV4ProjectsIdMergeRequestsMergeRequestIidNotesNoteIdAwardEmojiAwardId
    delete:
      summary: Delete an emoji reaction
      description: Only an administrator or the author of the reaction can delete an emoji reaction. This feature was introduced in 8.9
      parameters:
      - in: path
        name: award_id
        description: ID of an emoji reaction.
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: id
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: merge_request_iid
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: note_id
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '204':
          description: Delete an emoji reaction
        '401':
          description: Unauthorized
        '404':
          description: Not Found
      tags:
      - award_emoji
      operationId: deleteApiV4ProjectsIdMergeRequestsMergeRequestIidNotesNoteIdAwardEmojiAwardId
  /api/v4/projects/{id}/snippets/{snippet_id}/award_emoji:
    get:
      summary: List an awardable's emoji reactions for projects
      description: Get a list of all emoji reactions for a specified awardable. This feature was introduced in 8.9
      parameters:
      - in: path
        name: id
        description: The ID or URL-encoded path of the project
        required: true
        schema:
          type: string
      - in: path
        name: snippet_id
        description: ID (`iid` for merge requests/issues/epics, `id` for snippets) of an awardable.
        required: true
        schema:
          type: integer
          format: int32
      - in: query
        name: page
        description: Current page number
        required: false
        example: 1
        schema:
          type: integer
          format: int32
          default: 1
      - in: query
        name: per_page
        description: Number of items per page
        required: false
        example: 20
        schema:
          type: integer
          format: int32
          default: 20
      responses:
        '200':
          description: List an awardable's emoji reactions for projects
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/API_Entities_AwardEmoji'
        '404':
          description: Not Found
      tags:
      - award_emoji
      operationId: getApiV4ProjectsIdSnippetsSnippetIdAwardEmoji
    post:
      summary: Add a new emoji reaction
      description: Add an emoji reaction on the specified awardable. This feature was introduced in 8.9
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: snippet_id
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '201':
          description: Add a new emoji reaction
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/API_Entities_AwardEmoji'
        '400':
          description: Bad Request
        '404':
          description: Not Found
      tags:
      - award_emoji
      operationId: postApiV4ProjectsIdSnippetsSnippetIdAwardEmoji
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/postApiV4ProjectsIdSnippetsSnippetIdAwardEmoji'
        required: true
  /api/v4/projects/{id}/snippets/{snippet_id}/award_emoji/{award_id}:
    get:
      summary: Get a single emoji reaction
      description: Get a single emoji reaction from an issue, snippet, or merge request. This feature was introduced in 8.9
      parameters:
      - in: path
        name: award_id
        description: ID of the emoji reaction.
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: id
        required: true
        schema:
          type: integer
          format: int32
      - in: path
        name: snippet_id
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Get a single emoji reaction
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/API_Entities_AwardEmoji'
        '404':
          description: Not Found
      tags:
      - award_emoji
      operationId: getApiV4ProjectsIdSnippetsSnippetIdAwardEmojiAwardId
    delete:
      summary: Delete an emoji reaction
      description: Only an administrator or the author of the reaction can delete an emoji reaction. This feature was introduced in 8.9
      parameters:
      - in: path
        name: award_id
        description: ID of an emoji reaction.
        required: true


# --- truncated at 32 KB (41 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/gitlab-ci/refs/heads/main/openapi/gitlab-ci-award-emoji-api-openapi.yml