v1

latestOpenAPI 3.1.02026-07-26294215839.4 KB
Goals
Public API

Get Goal Filters (v1.2)

Get the number of goals per status for an employee, including goals with milestones. Note: Compared to "Get Goal Filters (v1.1)", this version returns goals with milestones.

OAuth Scopes: goal

get/api/v1_2/performance/employees/{employeeId}/goals/filters

Path parameters

employeeIdstring required

The internal employee ID of the employee the goals are assigned to.

Response

Contains the map of goal statuses, their counts, and available actions

Example response

{
  "filters": [
    {
      "id": "status-inProgress",
      "name": "In Progress",
      "count": 1,
      "actions": {
        "canCloseGoal": true,
        "canEditGoal": true,
        "canEditGoalProgressBar": true,
        "canShareGoal": true
      }
    }
  ]
}