PUT
/
v2
/
projects
/
{project_id}
/
prompt_datasets
/
{dataset_id}
curl --request PUT \
  --url https://api.galileo.ai/v2/projects/{project_id}/prompt_datasets/{dataset_id} \
  --header 'Content-Type: multipart/form-data' \
  --header 'Galileo-API-Key: <api-key>' \
  --form 'column_names=[
  "<string>"
]'
{
  "id": "<string>",
  "dataset_id": "<string>",
  "file_name": "<string>",
  "message": "<string>",
  "num_rows": 123,
  "rows": 123
}

Authorizations

Galileo-API-Key
string
header
required

Path Parameters

project_id
string
required
dataset_id
string
required

Query Parameters

file_name
string | null
num_rows
integer | null
format
enum<string>
Available options:
csv,
feather,
json,
jsonl
hidden
boolean
default:false

Body

multipart/form-data

Response

200
application/json

Successful Response

The response is of type object.