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

# List all monthly variable compensations

> Returns a paginated list of monthly variable compensations for the authenticated company.

Monthly variable compensations are monthly amount records associated to employee-compensation assignments (salary compensations) for variable-type compensations.



## OpenAPI

````yaml GET /contract/v1/monthly-variable-compensations
openapi: 3.0.0
info:
  description: ''
  version: 3.0.0
  title: Sesame Public API
servers:
  - url: https://api-{region}.sesametime.com
    variables:
      region:
        default: eu1
security: []
tags: []
paths:
  /contract/v1/monthly-variable-compensations:
    get:
      tags:
        - Monthly Variable Compensations
      summary: List all monthly variable compensations
      description: >-
        Returns a paginated list of monthly variable compensations for the
        authenticated company.


        Monthly variable compensations are monthly amount records associated to
        employee-compensation assignments (salary compensations) for
        variable-type compensations.
      operationId: ListMonthlyVariableCompensations
      parameters:
        - name: salaryCompensationId
          in: query
          description: Filter by salary compensation ID (employee-compensation assignment)
          schema:
            type: string
            format: uuid
        - in: query
          name: employeeId
          description: Filter by employee ID
          schema:
            type: string
            format: uuid
        - name: date
          in: query
          description: Filter by date (YYYY-MM-DD)
          schema:
            type: string
            format: date
        - in: query
          name: page
          description: Page number
          schema:
            type: integer
            default: 1
        - name: limit
          in: query
          description: Items per page (max 500)
          schema:
            type: integer
            default: 50
            maximum: 500
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                          description: Monthly variable compensation ID
                        salaryCompensationId:
                          type: string
                          format: uuid
                          description: >-
                            Salary compensation ID (employee-compensation
                            assignment)
                        amount:
                          type: number
                          description: Compensation amount for the month
                          example: 500
                        date:
                          type: string
                          format: date
                          description: Date of the compensation (YYYY-MM-DD)
                          example: '2024-01-15'
                        createdAt:
                          type: string
                          format: Y-m-dTH:i:sP
                          example: '2020-01-01T10:00:00+01:00'
                        updatedAt:
                          type: string
                          format: Y-m-dTH:i:sP
                          example: '2020-01-01T10:00:00+01:00'
                  meta:
                    type: object
                    properties:
                      currentPage:
                        type: integer
                        example: 1
                      lastPage:
                        type: integer
                        example: 1
                      total:
                        type: integer
                        example: 1
                      perPage:
                        type: integer
                        example: 1
        '401':
          description: Unauthorized - Invalid or missing API Key
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    description: Error message indicating authentication failure
                    example: Invalid or missing API Key
                  code:
                    type: string
                    description: Error code for programmatic handling
                    example: UNAUTHORIZED
              example:
                message: Invalid or missing API Key
                code: UNAUTHORIZED
        '429':
          description: Too Many Requests - Rate limit exceeded
      security:
        - Bearer: []
components:
  securitySchemes:
    Bearer:
      type: http
      scheme: bearer
      bearerFormat: JWT

````