Category / Section
How to change the schema name while uploading the dashboard via API
Published:
Bold BI supports changing the schema name while uploading the dashboard via API by using the connection object.
-
Refer to the Upload Dashboard file in order to upload a dashboard via API.
-
To change the schema in the data source when uploading the dashboard, enter the new schema name in the Schema parameter.
-
The sample connection JSON for a PostgreSql data source is provided below.
NOTE: The connection string varies for different connectors, and it is available on the connectors page.
{
"Connection": {
"ServerName": "server name",
"Database": "database name",
"UserName": "username",
"Password": "password",
"Port": "port number",
"Schema": "schemaname",
"SslMode": "",
"TrustServerCertificate": "",
"CommandTimeout": "300"
},
"ReplaceDsId": ""
}