POST
/
data_integration
/
custom
curl -X 'POST' \
  'https://api.coaxial.ai/data_integration/custom' \
  -H 'accept: application/json' \
  -H 'Authorization: Bearer <api_key>' \
  -H 'Content-Type: application/json' \
  -d '{
  "dataset_name": <custom_dataset_name>
}'
{
  "datasets": [
    {
      "dataset_name": "string",
      "id": <coaxial_dataset_integration_id>
    }
  ]
}
curl -X 'POST' \
  'https://api.coaxial.ai/data_integration/custom' \
  -H 'accept: application/json' \
  -H 'Authorization: Bearer <api_key>' \
  -H 'Content-Type: application/json' \
  -d '{
  "dataset_name": <custom_dataset_name>
}'
{
  "datasets": [
    {
      "dataset_name": "string",
      "id": <coaxial_dataset_integration_id>
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
dataset_name
string
required

Response

200
application/json
Custom dataset names in an array of strings
datasets
object[]
required