Skip to content

Submit an Individual MVP nomination for the current period.

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

One per (user, individual, period) — G3. A second submit in the same window returns 409. Window-closed returns 422.

Media type application/json
object
nomineeUserId
required
string format: uuid
reason
required
string
>= 1 characters
Example generated
{
"nomineeUserId": "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 (US-06 / G3).

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"
}