{
  "info": {
    "name": "Bugsnag — mcp.ai",
    "description": "REST API for the Bugsnag MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/bugsnag",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "bugsnag_add_organization_collaborator_team_memberships",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/organization/collaborator/team/memberships",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "organization",
            "collaborator",
            "team",
            "memberships"
          ]
        },
        "description": "Tool to add a collaborator to a group of teams in a Bugsnag organization. Use when you need to assign a collaborator to specific teams or all teams. Requires admin permissions on the organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team_ids\": \"\",\n  \"add_all_teams\": false,\n  \"collaborator_id\": \"\",\n  \"organization_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_add_organization_team_memberships",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/organization/team/memberships",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "organization",
            "team",
            "memberships"
          ]
        },
        "description": "Tool to add collaborators to a team in a Bugsnag organization. Use when you need to add specific collaborators or all organization collaborators to a team. Requires admin permissions on the organizati",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"organization_id\": \"\",\n  \"collaborator_ids\": \"\",\n  \"add_all_collaborators\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_bulk_update_errors",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/bulk/update/errors",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "bulk",
            "update",
            "errors"
          ]
        },
        "description": "Bulk update multiple errors in a Bugsnag project. Applies the same operation to all specified errors. Note: The actual API implementation returns only the operation name in the response, not per-error",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"severity\": \"\",\n  \"error_ids\": \"\",\n  \"issue_url\": \"\",\n  \"operation\": \"\",\n  \"project_id\": \"\",\n  \"issue_title\": \"\",\n  \"reopen_rules\": {},\n  \"notification_id\": \"\",\n  \"assigned_team_id\": \"\",\n  \"verify_issue_url\": false,\n  \"assigned_collaborator_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_configure_integration",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/configure/integration",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "configure",
            "integration"
          ]
        },
        "description": "Tool to configure a new integration for a Bugsnag project. Use after selecting integration key and preparing credentials.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"label\": \"\",\n  \"project_id\": \"\",\n  \"configuration\": {},\n  \"integration_key\": \"\",\n  \"issue_automation\": {},\n  \"disable_severities\": \"\",\n  \"disable_release_stages\": \"\",\n  \"disable_unhandled_states\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_confirm_project_event_data_deletion",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/confirm/project/event/data/deletion",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "confirm",
            "project",
            "event",
            "data",
            "deletion"
          ]
        },
        "description": "Confirms a project event data deletion request in Bugsnag. Use this action after creating a deletion request to confirm and proceed with the actual deletion of event data. The deletion request must be",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"project_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_create_collaborator",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/collaborator",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "collaborator"
          ]
        },
        "description": "Invites a new collaborator to a Bugsnag organization by email. Use this action to grant a user access to the organization. Optionally specify project_ids to restrict access to specific projects, or se",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"admin\": false,\n  \"email\": \"\",\n  \"project_ids\": \"\",\n  \"organization_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_create_custom_event_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/custom/event/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "custom",
            "event",
            "field"
          ]
        },
        "description": "Creates a custom event field for a Bugsnag project, enabling filtering and pivoting on custom metadata. Use this tool when you need to create a new searchable/filterable field from event metaData. Req",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"path\": \"\",\n  \"reindex\": false,\n  \"display_id\": \"\",\n  \"project_id\": \"\",\n  \"pivot_options\": {},\n  \"filter_options\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_create_org_data_deletion",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/org/data/deletion",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "org",
            "data",
            "deletion"
          ]
        },
        "description": "Tool to create an event data deletion request for GDPR/CCPA compliance. Use when you need to delete event data matching specific criteria (e.g., user email, error class, device info). Specify filters ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filters\": {},\n  \"filter_groups\": {},\n  \"organization_id\": \"\",\n  \"skip_confirmation\": false,\n  \"filter_groups_join\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_create_org_data_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/org/data/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "org",
            "data",
            "request"
          ]
        },
        "description": "Tool to create an event data request for a Bugsnag organization (GDPR/CCPA compliance). Use when you need to export event data for a specific user or set of conditions to comply with data access reque",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filters\": {},\n  \"report_type\": \"\",\n  \"filter_groups\": {},\n  \"organization_id\": \"\",\n  \"filter_groups_join\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_create_organization_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/organization/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "organization",
            "project"
          ]
        },
        "description": "Tool to create a new project in a Bugsnag organization. Use when you need to set up a new project for error tracking under a specific organization. Requires organization_id, project name, and platform",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"type\": \"\",\n  \"organization_id\": \"\",\n  \"ignore_old_browsers\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_create_organization_team",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/organization/team",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "organization",
            "team"
          ]
        },
        "description": "Tool to create a new team in a Bugsnag organization. Use when you need to organize collaborators into teams for better access management. The team name must be unique within the organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"organization_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_create_project_data_deletion",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/project/data/deletion",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "project",
            "data",
            "deletion"
          ]
        },
        "description": "Tool to create an event data deletion request for a specific project. Use when you need to delete event data matching specific criteria (e.g., error class, severity, user email) within a project. Spec",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filters\": {},\n  \"project_id\": \"\",\n  \"filter_groups\": {},\n  \"skip_confirmation\": false,\n  \"filter_groups_join\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_create_project_event_data_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/project/event/data/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "project",
            "event",
            "data",
            "request"
          ]
        },
        "description": "Tool to create an event data request for a Bugsnag project. Use when you need to export event data matching specific filters. The request is processed asynchronously - check the returned status and us",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filters\": {},\n  \"project_id\": \"\",\n  \"report_type\": \"\",\n  \"filter_groups\": {},\n  \"filter_groups_join\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_create_saved_search",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/saved/search",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "saved",
            "search"
          ]
        },
        "description": "Creates a saved search (filterset) for a Bugsnag project that persists filter and sort configurations. Use this to save frequently used error filters for quick access in the dashboard. Requires a vali",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"sort\": \"\",\n  \"shared\": false,\n  \"filters\": {},\n  \"project_id\": \"\",\n  \"project_default\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_delete_all_errors_in_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/all/errors/in/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "all",
            "errors",
            "in",
            "project"
          ]
        },
        "description": "Permanently deletes all errors and event data from a Bugsnag project. WARNING: This action is IRREVERSIBLE. All error and event data will be permanently removed. Requirements: - User must have Project",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_delete_collaborator",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/collaborator",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "collaborator"
          ]
        },
        "description": "Removes a collaborator from a Bugsnag organization. This action permanently revokes the user's access to all projects within the organization. Before using, obtain the organization_id from List Organi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"collaborator_id\": \"\",\n  \"organization_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_delete_configured_integration",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/configured/integration",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "configured",
            "integration"
          ]
        },
        "description": "Tool to delete a configured integration. Use when you need to remove an existing integration from a project after confirming the integration ID. This action cannot be undone and requires Organization ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_delete_event_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/event/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "event",
            "field"
          ]
        },
        "description": "Deletes a custom event field from a Bugsnag project. Use this tool when you need to remove a custom event field that was previously created via BUGSNAG_CREATE_CUSTOM_EVENT_FIELD. This action only work",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"display_id\": \"\",\n  \"project_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_delete_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "organization"
          ]
        },
        "description": "Permanently deletes a Bugsnag organization. This action is irreversible and removes all organization data including projects, collaborators, and settings. Use BUGSNAG_LIST_ORGANIZATIONS to find the or",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"organization_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_delete_organization_team",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/organization/team",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "organization",
            "team"
          ]
        },
        "description": "Tool to delete a team from a Bugsnag organization. Use when you need to permanently remove a team. Requires organization admin permissions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"organization_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_delete_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "project"
          ]
        },
        "description": "Permanently deletes a Bugsnag project. This action is irreversible and removes all project data including errors, events, and settings. Use BUGSNAG_LIST_PROJECTS to find the project_id. Requires admin",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_delete_saved_search",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/saved/search",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "saved",
            "search"
          ]
        },
        "description": "Permanently deletes a saved search (filterset) from a Bugsnag project. Use this to remove saved searches that are no longer needed. Requires the saved_search_id which can be obtained from list_saved_s",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"saved_search_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_get_configured_integration",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/configured/integration",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "configured",
            "integration"
          ]
        },
        "description": "Tool to retrieve details of a specific configured integration by its ID. Returns configuration details, status, automation settings, and usage information. Use 'List Configured Integrations for Projec",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_get_org_data_deletion",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/org/data/deletion",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "org",
            "data",
            "deletion"
          ]
        },
        "description": "Tool to check the status of an organization event data deletion request in Bugsnag. Use this to monitor deletion requests including their current status (PREPARING, AWAITING_CONFIRMATION, ACCEPTED, IN",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"organization_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_get_organization_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organization/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organization",
            "by",
            "id"
          ]
        },
        "description": "Tool to view an organization by its ID. Use when you need to retrieve detailed information about a specific Bugsnag organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_get_organization_collaborator_project_access_counts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organization/collaborator/project/access/counts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organization",
            "collaborator",
            "project",
            "access",
            "counts"
          ]
        },
        "description": "Tool to view the project count of collaborators in an organization. Use when you need to retrieve project access counts for specific collaborators.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"organization_id\": \"\",\n  \"collaborator_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_get_organization_collaborator_projects",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organization/collaborator/projects",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organization",
            "collaborator",
            "projects"
          ]
        },
        "description": "Tool to view projects a collaborator has access to in an organization. Use when you need to list all projects that a specific user can access within an organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"sort\": \"\",\n  \"per_page\": 0,\n  \"direction\": \"\",\n  \"collaborator_id\": \"\",\n  \"organization_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_get_organization_event_data_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organization/event/data/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organization",
            "event",
            "data",
            "request"
          ]
        },
        "description": "Tool to check the status of an organization event data request. Use when you need to monitor the progress of a data export or GDPR request.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"organization_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_get_organization_team",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organization/team",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organization",
            "team"
          ]
        },
        "description": "Tool to show the details of a team in an organization. Use when you need to retrieve information about a specific team including its name, collaborator count, and project count.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"organization_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_get_pivot_values_on_a_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/pivot/values/on/a/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "pivot",
            "values",
            "on",
            "a",
            "project"
          ]
        },
        "description": "List pivot values for a project, showing how events are distributed across different values of a field. Use this to analyze event distribution by release stage, app version, user, device type, or othe",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"base\": \"\",\n  \"sort\": \"\",\n  \"filters\": {},\n  \"per_page\": 0,\n  \"project_id\": \"\",\n  \"filter_groups\": {},\n  \"filter_groups_join\": \"\",\n  \"event_field_display_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_get_project_data_deletion",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/project/data/deletion",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "project",
            "data",
            "deletion"
          ]
        },
        "description": "Tool to check the status of a project event data deletion request in Bugsnag. Use this to monitor deletion requests including their current status (PREPARING, AWAITING_CONFIRMATION, ACCEPTED, IN_PROGR",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"project_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_get_project_event_data_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/project/event/data/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "project",
            "event",
            "data",
            "request"
          ]
        },
        "description": "Tool to check the status of a project event data request. Use when you need to monitor the progress of a data export or GDPR request for a specific project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"project_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_get_project_network_grouping_ruleset",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/project/network/grouping/ruleset",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "project",
            "network",
            "grouping",
            "ruleset"
          ]
        },
        "description": "Tool to retrieve a project's network grouping ruleset. Use when you need to view the URL patterns used to group network spans for performance monitoring in a project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_get_saved_search",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/saved/search",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "saved",
            "search"
          ]
        },
        "description": "Retrieves the details of a specific saved search by its unique ID. Returns comprehensive information about the saved search including its name, filters, sharing status, inclusion criteria for differen",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_get_saved_search_usage_summary",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/saved/search/usage/summary",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "saved",
            "search",
            "usage",
            "summary"
          ]
        },
        "description": "Retrieves usage statistics for a saved search, showing how it is being used across the project. Returns counts of project notifications, collaborator email notifications, and performance monitors that",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_list_collaborator_access_details_for_projects",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/collaborator/access/details/for/projects",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "collaborator",
            "access",
            "details",
            "for",
            "projects"
          ]
        },
        "description": "Tool to list summary details of the projects a collaborator has access to. Use when reviewing a collaborator's access across an organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"offset\": \"\",\n  \"per_page\": 0,\n  \"inaccessible\": false,\n  \"collaborator_id\": \"\",\n  \"individual_only\": false,\n  \"organization_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_list_collaborators",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/collaborators",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "collaborators"
          ]
        },
        "description": "Tool to list collaborators in an organization. Use when you need to retrieve all collaborators for a specified organization. Example: \"List collaborators for organization 515fb9337c1074f6fd000001\".",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"offset\": \"\",\n  \"per_page\": 0,\n  \"organization_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_list_collaborators_on_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/collaborators/on/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "collaborators",
            "on",
            "project"
          ]
        },
        "description": "Tool to list collaborators on a project. Use when you need to retrieve all users with access to a given project after confirming its ID. Example: \"List collaborators for project 515fb9337c1074f6fd0000",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"offset\": \"\",\n  \"per_page\": 0,\n  \"project_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_list_configured_integrations_for_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/configured/integrations/for/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "configured",
            "integrations",
            "for",
            "project"
          ]
        },
        "description": "Retrieves all configured integrations for a Bugsnag project. Returns details about each integration including its type (e.g., Slack, Jira, Asana), configuration, status, and trigger settings. Use BUGS",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_list_errors_on_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/errors/on/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "errors",
            "on",
            "project"
          ]
        },
        "description": "List all errors in a Bugsnag project with optional filtering and sorting. Use this to retrieve error summaries including error class, message, severity, status, occurrence counts, and affected users. ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"base\": \"\",\n  \"sort\": \"\",\n  \"per_page\": 0,\n  \"direction\": \"\",\n  \"project_id\": \"\",\n  \"version_seen_in\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_list_event_fields_for_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/event/fields/for/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "event",
            "fields",
            "for",
            "project"
          ]
        },
        "description": "Lists all event fields available for filtering and pivoting in a Bugsnag project. Use this action to discover which fields can be used to filter events in the project's error inbox. Common fields incl",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_list_events_for_error",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/events/for/error",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "events",
            "for",
            "error"
          ]
        },
        "description": "Lists individual error event occurrences for a specific error group. Use this after identifying an error_id via BUGSNAG_LIST_ERRORS_ON_PROJECT to retrieve detailed stack traces, metadata, and context ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"base\": \"\",\n  \"sort\": \"\",\n  \"filters\": {},\n  \"error_id\": \"\",\n  \"per_page\": 0,\n  \"direction\": \"\",\n  \"project_id\": \"\",\n  \"full_reports\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_list_events_on_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/events/on/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "events",
            "on",
            "project"
          ]
        },
        "description": "List all error events for a Bugsnag project. Events are individual occurrences of errors. Use this tool when you need to: - Retrieve all error occurrences (events) for a given project - Analyze indivi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"base\": \"\",\n  \"sort\": \"\",\n  \"filters\": {},\n  \"per_page\": 0,\n  \"direction\": \"\",\n  \"project_id\": \"\",\n  \"full_reports\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_list_organization_teams",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/organization/teams",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "organization",
            "teams"
          ]
        },
        "description": "Tool to list teams in an organization. Use when you need to retrieve teams for a specified Bugsnag organization, optionally filtered by team name.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"offset\": \"\",\n  \"per_page\": 0,\n  \"organization_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_list_organizations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/organizations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "organizations"
          ]
        },
        "description": "Tool to list organizations for the authenticated user. Use after validating the API token when you need to retrieve all organizations the current user has access to. Always resolve organization_id val",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_list_pivots_on_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/pivots/on/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "pivots",
            "on",
            "project"
          ]
        },
        "description": "Lists all pivot field definitions for a Bugsnag project. Pivots are customizable fields used for filtering and grouping errors in Bugsnag dashboards. Use this to discover available pivot fields that c",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_list_project_feature_flag_summaries",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/project/feature/flag/summaries",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "project",
            "feature",
            "flag",
            "summaries"
          ]
        },
        "description": "List feature flag summaries for a Bugsnag project with optional search filtering. Use this to retrieve feature flags that have been associated with errors in the project. Requires a valid project_id w",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"offset\": \"\",\n  \"per_page\": 0,\n  \"project_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_list_project_feature_flags",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/project/feature/flags",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "project",
            "feature",
            "flags"
          ]
        },
        "description": "List feature flags on a Bugsnag project for a specific release stage. Use this to retrieve feature flags including their names, activity status, first seen timestamps, and optional variant summaries. ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"sort\": \"\",\n  \"per_page\": 0,\n  \"direction\": \"\",\n  \"first_seen\": \"\",\n  \"project_id\": \"\",\n  \"starred_at_top\": false,\n  \"include_inactive\": false,\n  \"release_stage_name\": \"\",\n  \"include_variant_summary\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_list_projects",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/projects",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "projects"
          ]
        },
        "description": "Tool to list projects in an organization. Use when you need to retrieve all projects under a specified Bugsnag organization after confirming the organization ID. Results may be paginated; iterate thro",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"offset\": \"\",\n  \"per_page\": 0,\n  \"organization_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_list_release_groups",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/release/groups",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "release",
            "groups"
          ]
        },
        "description": "Tool to list release groups for a project. Use when you need to retrieve all release groups of a specific Bugsnag project after confirming the project ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"offset\": \"\",\n  \"per_page\": 0,\n  \"project_id\": \"\",\n  \"release_stage_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_list_releases",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/releases",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "releases"
          ]
        },
        "description": "List all releases (deployed versions) of a Bugsnag project. Releases track application versions, deployment stages, and associated source control information. Use this after obtaining a project_id fro",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"after\": \"\",\n  \"limit\": 0,\n  \"before\": \"\",\n  \"offset\": 0,\n  \"project_id\": \"\",\n  \"release_stage\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_list_saved_searches_on_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/saved/searches/on/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "saved",
            "searches",
            "on",
            "project"
          ]
        },
        "description": "Lists all saved searches for a Bugsnag project. Saved searches are predefined filter configurations that help users quickly access specific error views. Use this to retrieve saved searches before gett",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"offset\": \"\",\n  \"shared\": false,\n  \"per_page\": 0,\n  \"project_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_list_supported_integrations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/supported/integrations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "supported",
            "integrations"
          ]
        },
        "description": "Tool to list all supported integrations. Use when discovering available integration services before configuring a project.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_list_trends_for_project_buckets",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/trends/for/project/buckets",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "trends",
            "for",
            "project",
            "buckets"
          ]
        },
        "description": "Retrieves time-segmented event counts (trend buckets) for a Bugsnag project. Use this to analyze error/event occurrence patterns over time by splitting the data into configurable time buckets. Require",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filters\": {},\n  \"project_id\": \"\",\n  \"buckets_count\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_regenerate_project_api_key",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/regenerate/project/api/key",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "regenerate",
            "project",
            "api",
            "key"
          ]
        },
        "description": "Regenerates a Bugsnag project's notifier API key. This action invalidates the old API key and generates a new one. Use this when you need to rotate API keys for security purposes. WARNING: After regen",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_show_collaborator_access_details_for_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/show/collaborator/access/details/for/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "show",
            "collaborator",
            "access",
            "details",
            "for",
            "project"
          ]
        },
        "description": "Tool to show a collaborator's access details for a project. Use after confirming organization, collaborator, and project IDs have been obtained and you have access rights.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\",\n  \"collaborator_id\": \"\",\n  \"organization_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_show_collaborator_on_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/show/collaborator/on/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "show",
            "collaborator",
            "on",
            "organization"
          ]
        },
        "description": "Tool to show a collaborator in an organization. Use after confirming organization and collaborator IDs; requires Organization Administrator access.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"collaborator_id\": \"\",\n  \"organization_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_show_collaborator_on_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/show/collaborator/on/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "show",
            "collaborator",
            "on",
            "project"
          ]
        },
        "description": "Tool to show a collaborator in a project. Use when you need detailed information about a specific collaborator after confirming both project and collaborator IDs.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\",\n  \"collaborator_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_test_integration",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/test/integration",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "test",
            "integration"
          ]
        },
        "description": "Tool to test an integration configuration before deploying it. Use when validating credentials and connection parameters for integrations like Jira, Slack, or Asana before creating a configured integr",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"configuration\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugsnag_update_collaborator_permissions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/collaborator/permissions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "collaborator",
            "permissions"
          ]
        },
        "description": "Tool to update a collaborator's project access permissions. Use when you need to change which projects a collaborator can access or their roles within each project. Supply only project_ids or project_",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_ids\": \"\",\n  \"project_roles\": {},\n  \"collaborator_id\": \"\",\n  \"organization_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}