list_column_cards
Retrieve all cards in a GitHub project column by specifying the column ID, with options to filter by archived state and paginate results for efficient project management.
Instructions
List all cards in a project column
Input Schema
Name | Required | Description | Default |
---|---|---|---|
archived_state | No | Filter by card archived state | |
column_id | Yes | The unique identifier of the column | |
page | No | Page number for pagination (starts at 1) | |
per_page | No | Number of results per page (max 100) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"archived_state": {
"description": "Filter by card archived state",
"enum": [
"all",
"archived",
"not_archived"
],
"type": "string"
},
"column_id": {
"description": "The unique identifier of the column",
"type": "number"
},
"page": {
"description": "Page number for pagination (starts at 1)",
"type": "number"
},
"per_page": {
"description": "Number of results per page (max 100)",
"type": "number"
}
},
"required": [
"column_id"
],
"type": "object"
}