get_pull_requests_count
Retrieve the count of pull requests for a specific repository in Backlog, filtering by status, assignee, issue, or creator to streamline project tracking and management.
Instructions
Returns count of pull requests for a repository
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| assigneeId | No | Assignee user IDs | |
| createdUserId | No | Created user IDs | |
| issueId | No | Issue IDs | |
| projectIdOrKey | Yes | Project ID or project key | |
| repoIdOrName | Yes | Repository ID or name | |
| statusId | No | Status IDs | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "assigneeId": {
      "description": "Assignee user IDs",
      "items": {
        "type": "number"
      },
      "type": "array"
    },
    "createdUserId": {
      "description": "Created user IDs",
      "items": {
        "type": "number"
      },
      "type": "array"
    },
    "issueId": {
      "description": "Issue IDs",
      "items": {
        "type": "number"
      },
      "type": "array"
    },
    "projectIdOrKey": {
      "description": "Project ID or project key",
      "type": [
        "string",
        "number"
      ]
    },
    "repoIdOrName": {
      "description": "Repository ID or name",
      "type": "string"
    },
    "statusId": {
      "description": "Status IDs",
      "items": {
        "type": "number"
      },
      "type": "array"
    }
  },
  "required": [
    "projectIdOrKey",
    "repoIdOrName"
  ],
  "type": "object"
}