Skip to content

Users with no goals set for the current week, scoped to the caller.

GET
/goals/reports/non-setters
curl --request GET \
--url https://api.gospl.example/v1/goals/reports/non-setters \
--header 'Authorization: Bearer <token>'

Scope follows the caller’s visibility (direct reports / full chain / org-wide) per the reporting-line graph (G3). People Team/Admin response is grouped by department. Delivery channel for the Monday push (in-app / email / both) is OQ-04 and out of this read-API’s scope.

period
string
/^\d{4}-\d{2}-\d{2}$/

Any date within the target week; defaults to current week.

OK

Media type application/json
object
period
required
string format: date
groupedByDepartment
boolean
rows
required
Array<object>
object
user
object
id
required
string format: uuid
name
required
string
team
string
department
string
lastGoalSetAt
string format: date-time
Example generated
{
"period": "2026-04-15",
"groupedByDepartment": true,
"rows": [
{
"user": {
"id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"name": "example",
"team": "example"
},
"department": "example",
"lastGoalSetAt": "2026-04-15T12:00:00Z"
}
]
}

Missing/invalid credentials.

Media type application/json
object
code
required
string
message
required
string
Example generated
{
"code": "example",
"message": "example"
}

Authenticated but not permitted (incl. cross-tenant, out-of-chain).

Media type application/json
object
code
required
string
message
required
string
Example generated
{
"code": "example",
"message": "example"
}