Skip to content

The viewer's own nominations, newest first (Individual + Team).

GET
/mvp/nominations/me
curl --request GET \
--url https://api.gospl.example/v1/mvp/nominations/me \
--header 'Authorization: Bearer <token>'

OK

Media type application/json
Array<object>
object
id
required
string format: uuid
type
required
string
Allowed values: individual team
period
required
string
/^\d{4}-\d{2}$/
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"
}