cURL
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 }
Create a dataset object.
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
Dataset rows
The name of this dataset. Datasets with the same name will be versioned together.
A description of this dataset
Successful Response
The digest of the created dataset
The ID of the created dataset
The version index of the created dataset
Was this page helpful?