CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Fri, 05 Sep 2025 04:13:52 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20161114185936
location: https://web.archive.org/web/20161114185936/https://developer.github.com/v3/projects/columns/
server-timing: captures_list;dur=0.491522, exclusion.robots;dur=0.022744, exclusion.robots.policy;dur=0.010710, esindex;dur=0.011544, cdx.remote;dur=100.213679, LoadShardBlock;dur=399.009553, PetaboxLoader3.datanode;dur=185.347785, PetaboxLoader3.resolve;dur=168.598020
x-app-server: wwwb-app204
x-ts: 302
x-tr: 521
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
set-cookie: wb-p-SERVER=wwwb-app204; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Fri, 05 Sep 2025 04:13:52 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: GitHub.com
x-archive-orig-last-modified: Mon, 14 Nov 2016 05:40:40 GMT
x-archive-orig-access-control-allow-origin: *
x-archive-orig-expires: Mon, 14 Nov 2016 19:09:37 GMT
x-archive-orig-cache-control: max-age=600
x-archive-orig-x-github-request-id: 17EB2F1E:6305:650EC7:582A0998
x-archive-orig-content-length: 37263
x-archive-orig-accept-ranges: bytes
x-archive-orig-date: Mon, 14 Nov 2016 18:59:37 GMT
x-archive-orig-via: 1.1 varnish
x-archive-orig-age: 0
x-archive-orig-connection: close
x-archive-orig-x-served-by: cache-sjc3120-SJC
x-archive-orig-x-cache: MISS
x-archive-orig-x-cache-hits: 0
x-archive-orig-x-timer: S1479149977.026732,VS0,VE77
x-archive-orig-vary: Accept-Encoding
x-archive-orig-x-fastly-request-id: 00643f27d552274b822c709a49bd1b7a3107a572
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Mon, 14 Nov 2016 18:59:36 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Mon, 14 Nov 2016 18:59:36 GMT", ; rel="memento"; datetime="Mon, 14 Nov 2016 18:59:36 GMT", ; rel="next memento"; datetime="Tue, 14 Feb 2017 20:15:46 GMT", ; rel="last memento"; datetime="Tue, 15 Apr 2025 16:53:38 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: ARCHIVEIT-771-QUARTERLY-JOB248887-20161114-00001/ARCHIVEIT-771-QUARTERLY-JOB248887-20161114185847266-00018.warc.gz
server-timing: captures_list;dur=0.529178, exclusion.robots;dur=0.019955, exclusion.robots.policy;dur=0.009975, esindex;dur=0.010779, cdx.remote;dur=88.657773, LoadShardBlock;dur=142.182751, PetaboxLoader3.datanode;dur=73.690001, PetaboxLoader3.resolve;dur=180.547160, load_resource;dur=197.838412
x-app-server: wwwb-app204
x-ts: 200
x-tr: 532
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
Project columns | GitHub Developer Guide
Project columns
- List project columns
- Get a project column
- Create a project column
- Update a project column
- Delete a project column
- Move a project column
The Projects API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the blog post for full details.
To access the API during the preview period, you must provide a custom media type in the Accept
header:
application/vnd.github.inertia-preview+json
List project columns
GET /projects/:project_id/columns
Response
Status: 200 OK
Link: <https://api.github.com/resource?page=2>; rel="next",
<https://api.github.com/resource?page=5>; rel="last"
[
{
"id": 367,
"name": "To Do",
"project_url": "https://api.github.com/projects/120",
"created_at": "2016-09-05T14:18:44Z",
"updated_at": "2016-09-05T14:22:28Z"
}
]
Get a project column
GET /projects/columns/:id
Status: 200 OK
{
"id": 367,
"name": "To Do",
"project_url": "https://api.github.com/projects/120",
"created_at": "2016-09-05T14:18:44Z",
"updated_at": "2016-09-05T14:22:28Z"
}
Create a project column
POST /projects/:project_id/columns
Parameters
Name | Type | Description |
---|---|---|
name |
string |
Required. The name of the column. |
Status: 200 OK
{
"id": 367,
"name": "To Do",
"project_url": "https://api.github.com/projects/120",
"created_at": "2016-09-05T14:18:44Z",
"updated_at": "2016-09-05T14:22:28Z"
}
Update a project column
PATCH /projects/columns/:id
Parameters
Name | Type | Description |
---|---|---|
name |
string |
Required. The new name of the column. |
Status: 200 OK
{
"id": 367,
"name": "To Do",
"project_url": "https://api.github.com/projects/120",
"created_at": "2016-09-05T14:18:44Z",
"updated_at": "2016-09-05T14:22:28Z"
}
Delete a project column
DELETE /projects/columns/:id
Response
Status: 204 No Content
Move a project column
POST /projects/columns/:id/moves
Parameters
Name | Type | Description |
---|---|---|
position |
string |
Required. Can be one of first , last , or after:<column-id> , where <column-id> is the id value of a column in the same project. |
Example
{
"position": "after:3"
}
Response
Status: 201 Created