Hi,
In a Workflow I’m trying to automatically create a Data Table out of a table from a connection. For that I’m using the Call /connection/{id}/dataset
with the following body:
{
"connectionType": "DB_CONNECTION",
"tableName": "@table_name@",
"tags": [],
"resourceType": "DATA",
"name": "@table_name@",
"description": "",
"databaseConnectionId": "@connection_id@",
"schema": "ANALYSIS_WORK_DE",
"target-project": "@project_id@",
"access": [
"UNKNOWN"
]
}
Unfortunately I get this error when executing the WF: {"errors":["User with id placeholder is not assigned to any project"]}
It doesn’t seem to be a rights management issue since the user I’m using in the Flexible Rest API processor has all rights for Data Tables and READ and EXECUTE for Connections. Any ideas?