curl --request POST \
--url https://api.artie.com/connectors/{uuid}/generate-shadow-script \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"database": "<string>",
"tables": [
{
"columns": [
{
"metadata": {
"dataType": "<string>",
"notNull": true,
"defaultValue": "<string>",
"isPrimaryKey": true
},
"name": "<string>"
}
],
"name": "<string>",
"schema": "<string>"
}
]
}
'