Skip to main content
POST
/
ingest
/
new
/
{namespace}
/
{datasetName}
Create new dataset
curl --request POST \
  --url https://api.datalinks.com/api/v1/ingest/new/{namespace}/{datasetName} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "inferDefinition": {
    "dataDescription": "Employee dataset containing demographics and compensation.",
    "fieldDefinition": "id=unique employee identifier\nname=full employee name\nage=employee age in years\ndepartment=work department\nsalary=annual salary in USD\n"
  },
  "visibility": "Private"
}'
This response does not have an example.

Authorizations

Authorization
string
header
required

Path Parameters

namespace
string
required
datasetName
string
required

Body

application/json
visibility
enum<string>
required
Available options:
Public,
Private
Example:
inferDefinition
object

Response