v1

latestOpenAPI 3.1.02026-07-26294215839.4 KB
Goals
Public API

Get Goal Filters (v1.1)

Deprecated. Use "Get Goal Filters (v1.2)" instead. Get the number of goals per status for an employee. Note: Compared to "Get Goal Filters (v1)", this version includes actions.

OAuth Scopes: goal

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

Path parameters

employeeIdinteger 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
      }
    }
  ]
}