(People Team) Employees with no nomination this month.
GET
/mvp/reports/outstanding-nominators
const url = 'https://api.gospl.example/v1/mvp/reports/outstanding-nominators';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/mvp/reports/outstanding-nominators \ --header 'Authorization: Bearer <token>'People-Team-only (Q4). Employee source per Q5.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” period
string
Defaults to the current period.
Responses
Section titled “ Responses ”OK
Media type application/json
Array<object>
object
id
required
string format: uuid
name
required
string
photoUrl
string format: uri
Example generated
[ { "id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "name": "example", "photoUrl": "https://example.com" }]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. non–People-Team, cross-tenant).
Media type application/json
object
code
required
string
message
required
string
Example generated
{ "code": "example", "message": "example"}