Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"database": 0,
"owners": [
0
],
"schema": "string",
"table_name": "string"
}
Request Code Samples
curl --location --request POST '/dataset/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"database": 0,
"owners": [
0
],
"schema": "string",
"table_name": "string"
}'
Responses
{
"id": 0,
"result": {
"database": 0,
"owners": [
0
],
"schema": "string",
"table_name": "string"
}
}
Modified at 2025-06-04 22:27:17