메인 콘텐츠로 건너뛰기
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
필수

생성된 데이터셋의 버전 인덱스