### GET /token Source: https://api.leapsome.com/v1/api-docs/index Retrieves a JWT access token for authenticating API requests. ```APIDOC ## GET /token ### Description Get JWT access token ### Method GET ### Endpoint `/token` ### Response #### Success Response (200) - **token** (string) - The JWT access token. #### Response Example ```json { "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..." } ``` ``` -------------------------------- ### Content API - General Info Source: https://api.leapsome.com/v1/api-docs/index Information about the Leapsome Content API, including its purpose and rate limits. ```APIDOC ## Leapsome API ### 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. ### Server `https://api.leapsome.com/v1` ``` -------------------------------- ### Reviews API Source: https://api.leapsome.com/v1/api-docs/index Endpoints for retrieving information about review cycles and participants. ```APIDOC ## Reviews API ### GET /reviews #### Description List review cycles. ### GET /reviews/{reviewCycleId} #### Description List review cycles. ### GET /reviews/{reviewCycleId}/participants #### Description List review cycle participants. ### GET /reviews/{reviewCycleId}/participants/{userId}/overview #### Description Get results for a specific reviewee. ``` -------------------------------- ### Goals API Source: https://api.leapsome.com/v1/api-docs/index Endpoints for managing and retrieving goals within Leapsome. ```APIDOC ## Goals API ### GET /goals #### Description List goals. ### GET /goals/tags #### Description Get list of goal tags. ### GET /goals/{goalId} #### Description Get goal details. ### GET /goals/{goalId}/comments #### Description Get list of comments for a goal. ### POST /goals/{goalId}/key-results/{keyResultId} #### Description Update key result. ### POST /goals/{goalId}/initiatives/{initiativeId} #### Description Update initiative. ``` -------------------------------- ### Absences API Source: https://api.leapsome.com/v1/api-docs/index Endpoint for listing absences within Leapsome. ```APIDOC ## Absences API ### GET /absences #### Description List absences. ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.