Delete Postman Resource

Delete a Postman resource (collection, request, environment, mock) by ID or name.

Sby Skills Guide Bot
TestingBeginner
007/22/2026
Claude CodeCopilot
#postman#delete#resource#api#workspace

Recommended for


name: capability:postman:delete description: Delete Postman resources by ID or name argument-hint: "--target <collection|request|environment|mock> --id <id> [--description <text>]" user-invocable: true agent: zzaia-workspace-manager metadata: parameters: - name: target description: Resource type to delete (collection, request, environment, mock) required: true - name: id description: Resource ID or name to delete required: true - name: description description: Broader description of what to do within this action required: false

PURPOSE

Delete an existing Postman resource by ID or name. Removes the resource entirely from the workspace.

EXECUTION

  1. Identify the resource type from --target and resource ID from --id
  2. Delete the resource using Postman MCP
  3. Confirm the deletion completion

DELEGATION

MANDATORY: Always invoke the agents defined in this command's frontmatter for their designated responsibilities. Never skip, replace, or simulate their behavior directly.

  • zzaia-workspace-manager — Delete resource via Postman MCP

WORKFLOW

sequenceDiagram
    participant U as User
    participant C as Command
    participant W as zzaia-workspace-manager

    U->>C: /capability:postman:delete --target <type> --id <id>
    C->>W: Delete resource
    W-->>C: Deletion confirmation
    C-->>U: Success message

ACCEPTANCE CRITERIA

  • Resource is deleted from Postman workspace
  • Deletion is confirmed and irreversible
  • Deletion does not affect other resources
  • Resource is no longer accessible

EXAMPLES

/capability:postman:delete --target collection --id "collection-abc123"
/capability:postman:delete --target environment --id "staging" --description "Clean up staging environment after tests complete"
/capability:postman:delete --target request --id "Get Users"
/capability:postman:delete --target mock --id "mock-server-xyz"

OUTPUT

  • Deletion confirmation message
  • Deleted resource ID and name
  • Timestamp of deletion
Related skills