# Insightsモデルビルドの開始

`POST /reporting/datamodels/{datamodel_id}/builds` を呼び出してビルドをトリガーします。レスポンスには生成されたビルドIDが含まれます。

APIエンドポイントについては、[お使いの地域に適したエンドポイント](/apis/endpoints/endpoints)を選択してください。


```bash
curl -X POST https://${TD_API_ENDPOINT}/reporting/datamodels/ae9e7e75-9651-4d4d-afec-f7ac58b773c6/builds \
-H 'authorization: TD1 xxxx/xxxxxxxxxxxxxx' \
-H 'cache-control: no-cache' \
-H 'accept: application/json' \
-H 'content-type: application/json' \
-d '{
  "buildType": "full"
}'
```