Submit a Team MVP nomination for the current period.
POST
/mvp/nominations/team
const url = 'https://api.gospl.example/v1/mvp/nominations/team';const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"teamName":"example","memberUserIds":["2489E9AD-2EE2-8E00-8EC9-32D5F69181C0"],"reason":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}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.
Authorizations
Section titled “Authorizations ”Request Body required
Section titled “Request Body required ” Media type application/json
object
teamName
required
string
memberUserIds
required
Array<string>
reason
required
string
Example generated
{ "teamName": "example", "memberUserIds": [ "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0" ], "reason": "example"}Responses
Section titled “ Responses ”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"}