Leapsome feedback API

The feedback API from Leapsome — 4 operation(s) for feedback.

Operations 4

GET /feedback List feedback #
POST /feedback/praise Create praise #
POST /feedback/instant Create instant feedback #
POST /feedback/private-note Create private note #

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/leapsome-feedback-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

leapsome-feedback-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.0.1
  title: Leapsome absences Feedback API
  contact:
    name: Support
    url: https://leapsome.zendesk.com
  description: The Content API enables you to export some raw data from Leapsome for usage within your own systems and beyond what the Leapsome application offers natively. Usage is restricted to a maximum of 20 requests per second when making requests in parallel. If you exceed this limit, you will receive a 429 status code.
servers:
- url: https://api.leapsome.com/v1
tags:
- name: feedback
paths:
  /feedback:
    get:
      summary: List feedback
      description: 'Get a paginated list of instant feedback and praise items. Supports filtering by

        type (praise or instantFeedback), sender, and receiver.

        '
      operationId: listFeedback
      security:
      - bearerAuth: []
      tags:
      - feedback
      parameters:
      - name: type
        in: query
        required: false
        description: Filter by feedback type
        schema:
          type: string
          enum:
          - praise
          - instantFeedback
      - name: receiverId
        in: query
        required: false
        description: Filter by receiver user ID
        schema:
          type: string
          pattern: ^[0-9a-f]{24}$
      - name: senderId
        in: query
        required: false
        description: Filter by sender user ID
        schema:
          type: string
          pattern: ^[0-9a-f]{24}$
      - name: offset
        in: query
        required: false
        description: Number of results to skip
        schema:
          type: integer
          minimum: 0
          default: 0
      - name: limit
        in: query
        required: false
        description: Maximum number of results to return
        schema:
          type: integer
          minimum: 1
          maximum: 1000
          default: 100
      responses:
        '200':
          description: A list of feedback items
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FeedbackList'
        '401':
          description: Authorization failed. Token is missing or invalid.
  /feedback/praise:
    post:
      summary: Create praise
      description: 'Create a new praise item. Requires the instant feedback praise permission.

        Returns the ID of the created feedback.

        '
      operationId: createPraise
      security:
      - bearerAuth: []
      tags:
      - feedback
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreatePraiseRequest'
      responses:
        '201':
          description: Praise created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreatePraiseResponse'
        '401':
          description: Authorization failed. Token is missing or invalid.
        '403':
          description: Insufficient permissions. Praise permission is required.
  /feedback/instant:
    post:
      summary: Create instant feedback
      description: 'Create instant feedback for a user. By default only visible to the receiver.

        Requires the instant feedback permission.

        '
      operationId: createInstantFeedback
      security:
      - bearerAuth: []
      tags:
      - feedback
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateInstantFeedbackRequest'
      responses:
        '201':
          description: Instant feedback created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateFeedbackResponse'
        '401':
          description: Authorization failed. Token is missing or invalid.
        '403':
          description: Insufficient permissions. Instant feedback permission is required.
  /feedback/private-note:
    post:
      summary: Create private note
      description: 'Create a private note about a user. Private notes are only visible to the

        sender and cannot be seen by the receiver or anyone else.

        '
      operationId: createPrivateNote
      security:
      - bearerAuth: []
      tags:
      - feedback
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreatePrivateNoteRequest'
      responses:
        '201':
          description: Private note created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateFeedbackResponse'
        '401':
          description: Authorization failed. Token is missing or invalid.
components:
  schemas:
    CreatePraiseResponse:
      type: object
      properties:
        id:
          type: string
          pattern: ^[0-9a-f]{24}$
          description: ID of the created feedback item
    CreateInstantFeedbackRequest:
      type: object
      required:
      - senderId
      - receiverId
      - message
      properties:
        senderId:
          type: string
          pattern: ^[0-9a-f]{24}$
          description: User ID of the sender
        receiverId:
          type: string
          pattern: ^[0-9a-f]{24}$
          description: User ID of the feedback receiver
        message:
          type: string
          minLength: 1
          description: The feedback message content
        visibility:
          type: string
          enum:
          - public
          - receiver
          - manager
          - senderOnly
          default: receiver
          description: Visibility level of the feedback
    CreatePrivateNoteRequest:
      type: object
      required:
      - senderId
      - receiverId
      - message
      properties:
        senderId:
          type: string
          pattern: ^[0-9a-f]{24}$
          description: User ID of the sender
        receiverId:
          type: string
          pattern: ^[0-9a-f]{24}$
          description: User ID the private note is about
        message:
          type: string
          minLength: 1
          description: The private note content
    CreatePraiseRequest:
      type: object
      required:
      - senderId
      - receiverIds
      - message
      properties:
        senderId:
          type: string
          pattern: ^[0-9a-f]{24}$
          description: User ID of the sender
        receiverIds:
          type: array
          items:
            type: string
            pattern: ^[0-9a-f]{24}$
          minItems: 1
          description: User IDs of the praise receivers
        message:
          type: string
          minLength: 1
          description: The praise message content
        visibility:
          type: string
          enum:
          - public
          - receiver
          default: public
          description: Visibility level of the praise
    CreateFeedbackResponse:
      type: object
      properties:
        id:
          type: string
          pattern: ^[0-9a-f]{24}$
          description: ID of the created feedback item
    FeedbackList:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/FeedbackItem'
        meta:
          type: object
          properties:
            offset:
              type: integer
              description: Number of results skipped
            limit:
              type: integer
              description: Maximum number of results returned
            totalCount:
              type: integer
              description: Total number of feedback items
    FeedbackItem:
      type: object
      properties:
        id:
          type: string
          pattern: ^[0-9a-f]{24}$
          example: 58d55e3ffdc2eb20547edd0a
          description: Feedback item ID
        type:
          type: string
          enum:
          - praise
          - instantFeedback
          description: Type of feedback
        sender:
          type:
          - object
          - 'null'
          properties:
            id:
              type:
              - string
              - 'null'
              pattern: ^[0-9a-f]{24}$
              description: Sender user ID (null if anonymous)
            name:
              type: string
              description: Sender display name ("Anonymous" if anonymous)
          description: The user who sent the feedback
        receivers:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
                pattern: ^[0-9a-f]{24}$
                description: Receiver user or team ID
              name:
                type: string
                description: Receiver display name
          description: Users or teams who received the feedback
        message:
          type:
          - string
          - 'null'
          description: The feedback message content
        badge:
          type:
          - object
          - 'null'
          properties:
            name:
              type: string
              description: Badge name
            icon:
              type: string
              description: Badge icon path
          description: Badge attached to the feedback (praise only)
        visibility:
          type: string
          enum:
          - public
          - receiver
          - senderOnly
          description: Visibility level of the feedback
        createdAt:
          type: string
          format: date-time
          description: When the feedback was created
        likesCount:
          type: integer
          description: Number of likes on the feedback
        commentsCount:
          type: integer
          description: Number of comments on the feedback
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT