Small Improvements feedback-participants-resource API

Feedback Participants Resource

Operations 13

GET /v2/feedback-cycles/{cycleId}/feedback-requests/{requestId}/participants list #
POST /v2/feedback-cycles/{cycleId}/feedback-requests/{requestId}/participants addParticipants #
GET /v2/feedback-cycles/{cycleId}/feedback-requests/{requestId}/participants/{participantId} getItemById #
DELETE /v2/feedback-cycles/{cycleId}/feedback-requests/{requestId}/participants/{participantId} deleteItem #
PUT /v2/feedback-cycles/{cycleId}/feedback-requests/{requestId}/participants/{participantId}/completed complete #
DELETE /v2/feedback-cycles/{cycleId}/feedback-requests/{requestId}/participants/{participantId}/completed reopen #
PUT /v2/feedback-cycles/{cycleId}/feedback-requests/{requestId}/participants/{participantId}/declined decline #
POST /v2/feedback-cycles/{cycleId}/feedback-requests/{requestId}/participants/{participantId}/nudge nudgeReviewer #
POST /v2/feedback/new-unsolicited newUnsolicitedFeedback #
GET /v2/feedback/participant/mini/{participantId} getMiniById #
POST /v2/feedback/provide-feedback provideFeedback #
GET /v2/feedback/unsolicited/reviewees getPossibleRevieweesInCycle #
GET /v2/feedback/{feedbackId} getFeedback #

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/small-improvements-feedback-participants-resource-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

small-improvements-feedback-participants-resource-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: The Small Improvements REST API (v2) provides programmatic access to the core performance management platform, covering users, feedback cycles, review questionnaires, objectives, 1:1 meetings, pulse surveys, praise, messages, and administrative settings. Authentication uses personal Bearer access tokens generated from user profile settings.
  version: '2.0'
  title: Small Improvements action-item-resource Feedback Participants Resource API
  contact:
    url: https://www.small-improvements.com
    name: Small Improvements
  x-api-id: small-improvements-rest-api
servers:
- url: https://app.small-improvements.com/api
  description: Small Improvements API
security:
- BearerAuth: []
tags:
- name: feedback-participants-resource
  description: Feedback Participants Resource
paths:
  /v2/feedback-cycles/{cycleId}/feedback-requests/{requestId}/participants:
    get:
      tags:
      - feedback-participants-resource
      summary: list
      operationId: listUsingGET_1
      parameters:
      - name: cycleId
        in: path
        description: cycleId
        required: true
        schema:
          type: string
      - name: requestId
        in: path
        description: requestId
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json;charset=UTF-8:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FeedbackParticipantListDto'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
    post:
      tags:
      - feedback-participants-resource
      summary: addParticipants
      operationId: addParticipantsUsingPOST
      parameters:
      - name: cycleId
        in: path
        description: cycleId
        required: true
        schema:
          type: string
      - name: requestId
        in: path
        description: requestId
        required: true
        schema:
          type: string
      requestBody:
        $ref: '#/components/requestBodies/UserIdHolderArray2'
      responses:
        '200':
          description: OK
          content:
            application/json;charset=UTF-8:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FeedbackParticipantListDto'
        '201':
          description: Created
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
  /v2/feedback-cycles/{cycleId}/feedback-requests/{requestId}/participants/{participantId}:
    get:
      tags:
      - feedback-participants-resource
      summary: getItemById
      operationId: getItemByIdUsingGET
      parameters:
      - name: cycleId
        in: path
        description: cycleId
        required: true
        schema:
          type: string
      - name: participantId
        in: path
        description: participantId
        required: true
        schema:
          type: string
      - name: requestId
        in: path
        description: requestId
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json;charset=UTF-8:
              schema:
                $ref: '#/components/schemas/FeedbackParticipantListDto'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
    delete:
      tags:
      - feedback-participants-resource
      summary: deleteItem
      operationId: deleteItemUsingDELETE
      parameters:
      - name: cycleId
        in: path
        description: cycleId
        required: true
        schema:
          type: string
      - name: participantId
        in: path
        description: participantId
        required: true
        schema:
          type: string
      - name: requestId
        in: path
        description: requestId
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json;charset=UTF-8:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FeedbackParticipantListDto'
        '204':
          description: No Content
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
  /v2/feedback-cycles/{cycleId}/feedback-requests/{requestId}/participants/{participantId}/completed:
    put:
      tags:
      - feedback-participants-resource
      summary: complete
      operationId: completeUsingPUT
      parameters:
      - name: cycleId
        in: path
        description: cycleId
        required: true
        schema:
          type: string
      - name: participantId
        in: path
        description: participantId
        required: true
        schema:
          type: string
      - name: requestId
        in: path
        description: requestId
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json;charset=UTF-8:
              schema:
                $ref: '#/components/schemas/FeedbackParticipantListDto'
        '201':
          description: Created
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
    delete:
      tags:
      - feedback-participants-resource
      summary: reopen
      operationId: reopenUsingDELETE
      parameters:
      - name: cycleId
        in: path
        description: cycleId
        required: true
        schema:
          type: string
      - name: participantId
        in: path
        description: participantId
        required: true
        schema:
          type: string
      - name: requestId
        in: path
        description: requestId
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json;charset=UTF-8:
              schema:
                $ref: '#/components/schemas/FeedbackParticipantListDto'
        '204':
          description: No Content
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
  /v2/feedback-cycles/{cycleId}/feedback-requests/{requestId}/participants/{participantId}/declined:
    put:
      tags:
      - feedback-participants-resource
      summary: decline
      operationId: declineUsingPUT
      parameters:
      - name: cycleId
        in: path
        description: cycleId
        required: true
        schema:
          type: string
      - name: participantId
        in: path
        description: participantId
        required: true
        schema:
          type: string
      - name: requestId
        in: path
        description: requestId
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FeedbackReasonDto'
        description: feedbackReasonDto
      responses:
        '200':
          description: OK
          content:
            application/json;charset=UTF-8:
              schema:
                $ref: '#/components/schemas/FeedbackParticipantListDto'
        '201':
          description: Created
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
  /v2/feedback-cycles/{cycleId}/feedback-requests/{requestId}/participants/{participantId}/nudge:
    post:
      tags:
      - feedback-participants-resource
      summary: nudgeReviewer
      operationId: nudgeReviewerUsingPOST
      parameters:
      - name: cycleId
        in: path
        description: cycleId
        required: true
        schema:
          type: string
      - name: participantId
        in: path
        description: participantId
        required: true
        schema:
          type: string
      - name: requestId
        in: path
        description: requestId
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json;charset=UTF-8:
              schema:
                $ref: '#/components/schemas/FeedbackParticipantListDto'
        '201':
          description: Created
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
  /v2/feedback/new-unsolicited:
    post:
      tags:
      - feedback-participants-resource
      summary: newUnsolicitedFeedback
      operationId: newUnsolicitedFeedbackUsingPOST
      requestBody:
        content:
          application/json;charset=UTF-8:
            schema:
              $ref: '#/components/schemas/NewUnsolicitedFeedbackDto'
        description: newUnsolicitedFeedbackDto
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json;charset=UTF-8:
              schema:
                $ref: '#/components/schemas/FeedbackParticipantListDto'
        '201':
          description: Created
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
  /v2/feedback/participant/mini/{participantId}:
    get:
      tags:
      - feedback-participants-resource
      summary: getMiniById
      operationId: getMiniByIdUsingGET
      parameters:
      - name: participantId
        in: path
        description: participantId
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json;charset=UTF-8:
              schema:
                $ref: '#/components/schemas/FeedbackParticipantMini'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
  /v2/feedback/provide-feedback:
    post:
      tags:
      - feedback-participants-resource
      summary: provideFeedback
      operationId: provideFeedbackUsingPOST
      parameters:
      - name: saveDraft
        in: query
        description: saveDraft
        required: false
        schema:
          type: boolean
          default: false
      requestBody:
        content:
          application/json;charset=UTF-8:
            schema:
              $ref: '#/components/schemas/FeedbackDto'
        description: feedbackDto
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json;charset=UTF-8:
              schema:
                $ref: '#/components/schemas/FeedbackParticipantListDto'
        '201':
          description: Created
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
  /v2/feedback/unsolicited/reviewees:
    get:
      tags:
      - feedback-participants-resource
      summary: getPossibleRevieweesInCycle
      operationId: getPossibleRevieweesInCycleUsingGET
      parameters:
      - name: cycleId
        in: query
        description: cycleId
        required: true
        schema:
          type: string
      - name: reviewerId
        in: query
        description: reviewerId
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json;charset=UTF-8:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MiniFeedbackRequest'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
  /v2/feedback/{feedbackId}:
    get:
      tags:
      - feedback-participants-resource
      summary: getFeedback
      operationId: getFeedbackUsingGET
      parameters:
      - name: feedbackId
        in: path
        description: feedbackId
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json;charset=UTF-8:
              schema:
                $ref: '#/components/schemas/FeedbackParticipantProvideDto'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
components:
  schemas:
    UserIdHolder:
      type: object
      title: UserIdHolder
    FeedbackParticipantProvideDto:
      type: object
      title: FeedbackParticipantProvideDto
    FeedbackReasonDto:
      type: object
      title: FeedbackReasonDto
    FeedbackParticipantListDto:
      type: object
      title: FeedbackParticipantListDto
    MiniFeedbackRequest:
      type: object
      title: MiniFeedbackRequest
    FeedbackParticipantMini:
      type: object
      title: FeedbackParticipantMini
    NewUnsolicitedFeedbackDto:
      type: object
      title: NewUnsolicitedFeedbackDto
    FeedbackDto:
      type: object
      title: FeedbackDto
  requestBodies:
    UserIdHolderArray2:
      content:
        application/json;charset=UTF-8:
          schema:
            type: array
            items:
              $ref: '#/components/schemas/UserIdHolder'
      description: userIds
      required: true
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: Personal access token generated from user profile settings