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"
}'