v1

latestOpenAPI 3.1.02026-07-26294215839.4 KB
Goals
Public API

Get Goal Filters (v1)

Deprecated. Use "Get Goal Filters (v1.1)" instead. Get the number of goals per status for an employee. Returns a count of goals in each status (In Progress, Completed) for the specified employee. Goals with milestones are excluded from counts in this version.

OAuth Scopes: goal

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

Path parameters

employeeIdinteger required

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

Response

Returns goal status filter counts. Goals with milestones are excluded in this version.

Example response

{
  "filters": [
    {
      "id": "status-inProgress",
      "name": "In Progress",
      "count": 1
    }
  ]
}