v50

latestOpenAPI 3.0.3MITraw.githubusercontent.com2024-01-0382859610.0 MB
projects

List project columns

Lists the project columns in a project.

get/projects/{project_id}/columns

Path parameters

project_idinteger required

The unique identifier of the project.

Query parameters

per_pageinteger

The number of results per page (max 100). For more information, see "Using pagination in the REST API."

pageinteger

The page number of the results to fetch. For more information, see "Using pagination in the REST API."

Response

Response

urlstring uri required
project_urlstring uri required
cards_urlstring uri required
idinteger required

The unique identifier of the project column

node_idstring required
namestring required

Name of the project column

created_atstring date-time required
updated_atstring date-time required

Example response

[
  {
    "url": "https://api.github.com/projects/columns/367",
    "project_url": "https://api.github.com/projects/120",
    "cards_url": "https://api.github.com/projects/columns/367/cards",
    "id": 42,
    "node_id": "MDEzOlByb2plY3RDb2x1bW4zNjc=",
    "name": "Remaining tasks",
    "created_at": "2016-09-05T14:18:44Z",
    "updated_at": "2016-09-05T14:22:28Z"
  }
]