Knowledge Base Article

How to delete connections from Quick Access

To remove the connection from the Quick Access, please, use REST API.
You need to do the following.
 
For Windows:
1. Go to Admin - REST API - 1.0
2. Use 1.0 GET /users specifying username/first name/last name to get the _id parameter of the user
3. Use 1.0 GET /connection or , locate the connection with owner = _id from step 2 and provider = "MySQL" to get the _id of the connection for the specific user.
4. Use 1.0 DELETE /connection/{id} using the connection _id from step 3 to delete the connection so it will not be displayed in the quick access.
 
For Linux:
1. Go to Admin - REST API - 1.0 
2. Use 1.0 GET /users specifying username/first name/last name to get the _id parameter of the user
3. Use 1.0 GET /connection or , locate the connection with owner = _id from step 2 and provider = "MySQL" to get the oid of the connection for the specific user.
4. Use 1.0 DELETE /connection/{id} using the connection oid from step 3 to delete the connection so it will not be displayed in the quick access.
Updated 02-13-2024
No CommentsBe the first to comment