メインコンテンツへスキップ
POST
/
v2
/
{entity}
/
{project}
/
datasets
データセット作成
curl --request POST \
  --url https://api.example.com/v2/{entity}/{project}/datasets \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "rows": [
    {}
  ],
  "name": "<string>",
  "description": "<string>"
}
'
{
  "digest": "<string>",
  "object_id": "<string>",
  "version_index": 123
}

承認

Authorization
string
header
必須

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

パスパラメータ

entity
string
必須
project
string
必須

ボディ

application/json
rows
Rows · object[]
必須

データセットの行

name
string | null

このデータセットの名前です。同じ名前のデータセットはまとめてバージョン管理されます。

description
string | null

このデータセットの説明

レスポンス

正常な応答

digest
string
必須

作成されたデータセットのダイジェスト

object_id
string
必須

作成されたデータセットの ID

version_index
integer
必須

作成されたデータセットのバージョンインデックス