ContributionsMost RecentNewest TopicsMost LikesSolutionsDiscard All Uncommitted Changes in a Project via. REST API Hi SiSense Community, From the REST API document, I see that there is an endpoint to discard uncommitted changes by specifying their file paths. Is there any endpoint that can discard all uncommitted changes to a project without specifying their file paths? Finding the file path relative to the root of the repository can be challenging, and changes in the dashboard or datamodel can happen at any point. At one point, I had changes on 20+ files that I want to discard. Thus it will be easier if we can skip specifying the file path. Regards SolvedRe: Change multiple dashboards owner That explains it. Thank TriAnthony ! Re: Change multiple dashboards owner Hi intapiuser , Really appreciate for sharing this information. For the changing ownership of the dashboard endpoint, I'm wondering if you know at what point the value of adminAccess should be true. url: '/api/v1/dashboards/' + dash + '/change_owner?adminAccess=true' On some occasions, I received the following message after running that endpoint: {"error":{"code":101,"message":"Access denied","status":403,"httpMessage":"Forbidden"}} Re: API Endpoint for a List of Connections Hi dehrlich and DRay , Really appreciate for the reply. I can now see the live connection that I need via. GET api/v2/connections endpoint. Is there any tutorial on how to switch the connection of the datamodel to the existing live connection using connection-rest-controller API methods? Re: API Endpoint to List Down all Project Assets Hi DRay , thanks for the response and apology for the late reply. I will close this ticket as my use case is no longer valid. Re: API Endpoint for a List of Connections Hi DRay, Thanks for referring me to the PATCH /datamodels/{datamodelId}/schema/datasets/{datasetId} endpoint. With that endpoint, can we switch the connection of the datamodel to the existing one? When using the following body payload, the endpoint created a new connection named SnowflakeJDBC -Snowflake..., and the datamodel is connecting to it instead of the existing connection named Snowflake (as shown in the attached screenshot). { "name": "Snowflake", "type": "live", "connection": { "provider": "SnowflakeJDBC", "parameters": {}, "schema": "null", "fileName": "null", "uiParams": {}, "globalTableConfigOptions": {} } } Re: API Endpoint for a List of Connections Hi DRay It's a live connection to Snowflake, and I have successfully published it. The reason for this is that I'm currently working with multiple instances (say, instance A and instance B) that have the same: project_name branch_name datamodel (which also has the same schema and live connection name) When I move from instance A to instance B, I have to manually reconfigure the datamodel connection (as its connection oid for different instances is not the same) in the SiSense app for the datamodel to work. Checking to see if I can change the datamodel's connection via. REST API (per this instruction) which might require the connection metadata. Regards API Endpoint for a List of Connections Hi SiSense Community, Is there a REST API endpoint that will list down all the connections along with their oid? For some reason, 'api/v1/connection' endpoint doesn't show the Snowflake connection that I've just set up. Thanks SolvedAPI Endpoint to List Down all Project Assets Hi SiSense Community, Is there an API endpoint that will show all the assets (datamodel and dashboard) that belong to specific projects? Regards SolvedRe: Transfer ownership of objects (data models, dashboards) Hi folks, Thanks kwmacd for sharing the doc to change ownership of multiple dashboard, and DRay for sharing the list of dashboard endpoints. Is there a way to change the ownership of the datamodels via. REST API?