Postman Workspace
A Postman workspace that provides an isolated environment for organizing API development work. Workspaces contain collections, environments, mock servers, monitors, and APIs, and support collaboration through shared team access.
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The workspace's unique identifier. |
| name | string | The workspace name. |
| type | string | The workspace type. Personal workspaces are visible only to the owner. Team workspaces are shared with all team members. Private workspaces have restricted access. Public workspaces are visible to eve |
| description | string | The workspace description. |
| visibility | string | The workspace visibility setting. |
| createdBy | string | The user ID of the workspace creator. |
| updatedBy | string | The user ID of the last person to update the workspace. |
| createdAt | string | When the workspace was created. |
| updatedAt | string | When the workspace was last updated. |
| collections | array | Collections in this workspace. |
| environments | array | Environments in this workspace. |
| mocks | array | Mock servers in this workspace. |
| monitors | array | Monitors in this workspace. |
| apis | array | APIs in this workspace. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://postman.com/schemas/postman/workspace.json",
"title": "Postman Workspace",
"description": "A Postman workspace that provides an isolated environment for organizing API development work. Workspaces contain collections, environments, mock servers, monitors, and APIs, and support collaboration through shared team access.",
"type": "object",
"required": ["id", "name", "type"],
"properties": {
"id": {
"type": "string",
"description": "The workspace's unique identifier."
},
"name": {
"type": "string",
"description": "The workspace name."
},
"type": {
"type": "string",
"enum": ["personal", "team", "private", "public", "partner"],
"description": "The workspace type. Personal workspaces are visible only to the owner. Team workspaces are shared with all team members. Private workspaces have restricted access. Public workspaces are visible to everyone. Partner workspaces enable collaboration with external partners."
},
"description": {
"type": "string",
"description": "The workspace description."
},
"visibility": {
"type": "string",
"enum": ["personal", "team", "private", "public", "partner"],
"description": "The workspace visibility setting."
},
"createdBy": {
"type": "string",
"description": "The user ID of the workspace creator."
},
"updatedBy": {
"type": "string",
"description": "The user ID of the last person to update the workspace."
},
"createdAt": {
"type": "string",
"format": "date-time",
"description": "When the workspace was created."
},
"updatedAt": {
"type": "string",
"format": "date-time",
"description": "When the workspace was last updated."
},
"collections": {
"type": "array",
"description": "Collections in this workspace.",
"items": {
"$ref": "#/$defs/WorkspaceResource"
}
},
"environments": {
"type": "array",
"description": "Environments in this workspace.",
"items": {
"$ref": "#/$defs/WorkspaceResource"
}
},
"mocks": {
"type": "array",
"description": "Mock servers in this workspace.",
"items": {
"$ref": "#/$defs/WorkspaceResource"
}
},
"monitors": {
"type": "array",
"description": "Monitors in this workspace.",
"items": {
"$ref": "#/$defs/WorkspaceResource"
}
},
"apis": {
"type": "array",
"description": "APIs in this workspace.",
"items": {
"$ref": "#/$defs/WorkspaceResource"
}
}
},
"$defs": {
"WorkspaceResource": {
"type": "object",
"description": "A resource linked to the workspace.",
"properties": {
"id": {
"type": "string",
"description": "The resource's unique ID."
},
"name": {
"type": "string",
"description": "The resource name."
},
"uid": {
"type": "string",
"description": "The resource's UID."
}
}
}
}
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
curl "https://apis.io/api/v1/json-schemas/postman-workspace"
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.