The viewer's own nominations, newest first (Individual + Team).
GET
/mvp/nominations/me
const url = 'https://api.gospl.example/v1/mvp/nominations/me';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/nominations/me \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”OK
Media type application/json
Array<object>
object
id
required
string format: uuid
type
required
string
period
required
string
reason
required
string
createdAt
required
string format: date-time
nominee
Present for individual nominations.
object
id
required
string format: uuid
name
required
string
photoUrl
string format: uri
team
Present for team nominations.
object
teamName
string
members
Array<object>
object
id
required
string format: uuid
name
required
string
photoUrl
string format: uri
Example
[ { "type": "individual" }]Missing/invalid credentials.
Media type application/json
object
code
required
string
message
required
string
Example generated
{ "code": "example", "message": "example"}