# skills_orgs_skills_thresholds_partial_update Manage skill thresholds for a platform. This endpoint allows platform administrators to view, create, update, and delete skill thresholds. Skill thresholds define the minimum points required to consider a skill as acquired or mastered. Path Parameters: org (str): The platform/organization identifier Methods: GET: Retrieve all skill thresholds for the platform POST: Create a new skill threshold PATCH: Update an existing skill threshold DELETE: Delete all skill thresholds for the platform Request Body (POST): name (str, required): The name of the threshold level (e.g., "Beginner", "Intermediate") threshold (int, required): The minimum points required to reach this threshold Request Body (PATCH): name (str, required): The name of the existing threshold to update threshold (int, required): The new minimum points value for this threshold Returns: GET: A list of all skill thresholds for the platform POST/PATCH: The created or updated skill threshold with format: { "name": "threshold_name", "threshold": threshold_value } DELETE: No content (204) Error Responses: 400 Bad Request: If the request data is invalid or missing required fields 404 Not Found: If the specified platform doesn't exist or the threshold to update cannot be found Access Control: - Only platform administrators can access this endpoint Endpoint: PATCH /api/skills/orgs/{org}/skills/thresholds/ Version: 3.59.0-ai-plus Security: PlatformApiKeyAuthentication ## Path parameters: - `org` (string, required) ## Request fields (application/json): - `name` (string) The name of the threshold e.g Beginner. - `threshold` (integer) The threshold for the skill. - `platform` (string) The platform key ## Response 200 fields (application/json): - `name` (string, required) The name of the threshold e.g Beginner. - `threshold` (integer, required) The threshold for the skill. - `platform` (string, required) The platform key