Converting team to personal workspace

Hey @greg.mackey, you’re right, a team workspace cannot be reverted to a personal workspace as of now. You can file a feature request on our issue tracker here.

However, there is an easy way to import everything from a workspace to another without exporting and importing using the Postman API.

What you want can be achieved using three API calls, which can be chained using a Postman collection. Here’s what the calls would look like.

  • Get the contents of a single workspace using the GET /workspaces/{{workspaceId}} endpoint and save the returned response in an environment variable. Reference

  • Create a new personal workspace using the POST /workspaces endpoint by using the saved response from the environment variable. Reference

  • You can then delete the older workspace using the DELETE /workspaces/{{workspaceId}}. Reference

Hope this helps.

1 Like