Postman Workspaces allow users to organize API requests, environments, collections, and documentation in a structured way. Workspaces can be created for individual use or shared with a team to collaborate on API development and testing.
A workspace in Postman is a container for API-related assets. Each workspace can include collections, APIs, environments, mocks, and monitors. Switching between workspaces helps isolate projects and avoid conflicts.
// Example of a request stored inside a workspace collection
GET https://api.example.com/users
// Headers and authorization are shared via the workspace
Authorization: Bearer {{token}}
When this request is executed inside a workspace, all team members with access can see the request, reuse the environment variables, and view the response history if permissions allow.
Toggle the workspace type to see how data access changes for your team.
// Simple SVG diagram showing workspace separation
<svg width="300" height="120">
<rect x="10" y="20" width="120" height="60" fill="#2563eb"/>
<text x="20" y="55" fill="#ffffff">Personal</text>
<rect x="160" y="20" width="120" height="60" fill="#16a34a"/>
<text x="180" y="55" fill="#ffffff">Team</text>
</svg>