Skip to content

Submit a Team MVP nomination for the current period.

POST
/mvp/nominations/team
curl --request POST \
--url https://api.gospl.example/v1/mvp/nominations/team \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "teamName": "example", "memberUserIds": [ "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0" ], "reason": "example" }'

One per (user, team, period) — G3. 409 if already submitted; 422 if closed.

Media type application/json
object
teamName
required
string
>= 1 characters
memberUserIds
required
Array<string>
>= 1 items
reason
required
string
>= 1 characters
Example generated
{
"teamName": "example",
"memberUserIds": [
"2489E9AD-2EE2-8E00-8EC9-32D5F69181C0"
],
"reason": "example"
}

Created; inline confirmation payload.

Media type application/json
object
id
required
string format: uuid
confirmationMessage
required
string
Example generated
{
"id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"confirmationMessage": "example"
}

Invalid request.

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

Missing/invalid credentials.

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

Already nominated for this award this period.

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

Nomination window is closed.

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