Users with no goals set for the current week, scoped to the caller.
GET
/goals/reports/non-setters
const url = 'https://api.gospl.example/v1/goals/reports/non-setters';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}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.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” period
string
Any date within the target week; defaults to current week.
Responses
Section titled “ Responses ”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"}