プロジェクト情報を取得します。
メソッドとURI
GET /api/v1/projects/:projectId
URLパラメーター
| パラメータ | 型 | 内容 |
| projectId | 数値 | プロジェクトID |
クエリーパラメーター
| パラメーター | 型 | 内容 |
| include_total | 真偽値 | 集計した情報(各種合計値)を取得する場合はtrue。 省略時:false |
レスポンス
{
"id": 1,
"name": "「東京の魅力発信プロジェクト」の第2回目の提案",
"code": "TOKYO02",
"client_id": 1,
"client_name": "東京都",
"status": "new",
"billing_method": "project_time",
"billing_hourly_wage": 2500,
"budget_kind": "project_time",
"budget_value": 3500,
"note": null,
"start_at": "2024-09-09",
"end_at": null,
"total": {
"minute": 15300,
"labour_cost": 1744000,
"expenses": 5500,
"billing_amount": 0,
}
}
| キー | 型 | 内容 |
| total | — | 各種合計値 クエリーパラメーター “include_total” がtrueの場合に出力される |
| minute | 数値 | 稼働時間(単位分) |
| labour_cost | 数値 | 人件費(単位円) |
| expenses | 数値 | 経費(単位円) |
| billing_amount | 数値 | 請求額(単位円) |