GET /api/events/{event_id}
| param |
type |
description |
| event_id |
string |
イベント ID (UUID) |
| param |
type |
description |
| name |
string |
イベント名 |
| description |
string |
説明 |
{
"name": string,
"description": string,
}
GET /api/events/{event_id}/teams
| param |
type |
description |
| event_id |
string |
イベント ID (UUID) |
| param |
type |
description |
| name |
string |
イベント名 |
| progress |
number |
進捗 |
{
"teams": [{
"name":string,
"progress":number
}]
}
GET /api/events/{event_id}/teams/{team_id}
| param |
type |
description |
| event_id |
string |
イベント ID (UUID) |
| team_id |
string |
チーム ID (UUID) |
| param |
type |
description |
| name |
string |
イベント名 |
| progress |
number |
進捗 |
{
"name":string,
"progress":number
}
PUT /api/events/{event_id}/teams/{team_id}/progress
| param |
type |
description |
| event_id |
string |
イベント ID (UUID) |
| team_id |
string |
チーム ID (UUID) |
| param |
type |
description |
| progress |
number |
進捗 |
| param |
type |
description |
| name |
string |
イベント名 |
| progress |
number |
進捗 |
{
"name":string,
"progress":number
}
PUT /api/events/{event_id}/teams/{team_id}/name
| param |
type |
description |
| event_id |
string |
イベント ID (UUID) |
| team_id |
string |
チーム ID (UUID) |
| param |
type |
description |
| name |
string |
チーム名 |
| param |
type |
description |
| name |
string |
イベント名 |
| progress |
number |
進捗 |
{
"name":string,
"progress":number
}