CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Fri, 05 Sep 2025 03:52:34 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20161114185547
location: https://web.archive.org/web/20161114185547/https://developer.github.com/v3/projects/cards/
server-timing: captures_list;dur=0.920322, exclusion.robots;dur=0.040043, exclusion.robots.policy;dur=0.025991, esindex;dur=0.013188, cdx.remote;dur=16.844455, LoadShardBlock;dur=268.891588, PetaboxLoader3.resolve;dur=112.477858, PetaboxLoader3.datanode;dur=125.088751
x-app-server: wwwb-app28
x-ts: 302
x-tr: 329
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app28; 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 03:52:35 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:05:47 GMT
x-archive-orig-cache-control: max-age=600
x-archive-orig-x-github-request-id: 17EB2F14:0861:846BEC9:582A08AF
x-archive-orig-content-length: 39465
x-archive-orig-accept-ranges: bytes
x-archive-orig-date: Mon, 14 Nov 2016 18:55:47 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-sjc3634-SJC
x-archive-orig-x-cache: MISS
x-archive-orig-x-cache-hits: 0
x-archive-orig-x-timer: S1479149747.670307,VS0,VE75
x-archive-orig-vary: Accept-Encoding
x-archive-orig-x-fastly-request-id: 55a711d64838be6a3e8ed91b6bc3394facdbf7a4
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Mon, 14 Nov 2016 18:55:47 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Mon, 14 Nov 2016 18:55:47 GMT", ; rel="memento"; datetime="Mon, 14 Nov 2016 18:55:47 GMT", ; rel="next memento"; datetime="Tue, 14 Feb 2017 20:15:44 GMT", ; rel="last memento"; datetime="Sat, 20 Jul 2024 04:33:29 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.957262, exclusion.robots;dur=0.042234, exclusion.robots.policy;dur=0.026327, esindex;dur=0.015642, cdx.remote;dur=77.377602, LoadShardBlock;dur=477.897849, PetaboxLoader3.datanode;dur=454.592109, PetaboxLoader3.resolve;dur=192.367591, load_resource;dur=234.114487
x-app-server: wwwb-app28
x-ts: 200
x-tr: 973
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 cards | GitHub Developer Guide
Project cards
- List project cards
- Get a project card
- Create a project card
- Update a project card
- Delete a project card
- Move a project card
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 cards
GET /projects/columns/:column_id/cards
Response
Status: 200 OK
Link: <https://api.github.com/resource?page=2>; rel="next",
<https://api.github.com/resource?page=5>; rel="last"
[
{
"column_url": "https://api.github.com/projects/columns/367",
"content_url": "https://api.github.com/repos/api-playground/projects-test/issues/3",
"id": 1478,
"note": "Add payload for delete Project column",
"created_at": "2016-09-05T14:21:06Z",
"updated_at": "2016-09-05T14:20:22Z"
}
]
Get a project card
GET /projects/columns/cards/:id
Status: 200 OK
{
"column_url": "https://api.github.com/projects/columns/367",
"content_url": "https://api.github.com/repos/api-playground/projects-test/issues/3",
"id": 1478,
"note": "Add payload for delete Project column",
"created_at": "2016-09-05T14:21:06Z",
"updated_at": "2016-09-05T14:20:22Z"
}
Create a project card
POST /projects/columns/:column_id/cards
Parameters
Name | Type | Description |
---|---|---|
note |
string |
The card's note content. Only valid for cards without another type of content, so this must be omitted if content_id and content_type are specified. |
content_id |
integer |
The id of the Issue to associate with this card. |
content_type |
string |
The type of content to associate with this card. Can only be "Issue" at this time. |
Response
Status: 200 OK
{
"column_url": "https://api.github.com/projects/columns/367",
"content_url": "https://api.github.com/repos/api-playground/projects-test/issues/3",
"id": 1478,
"note": "Add payload for delete Project column",
"created_at": "2016-09-05T14:21:06Z",
"updated_at": "2016-09-05T14:20:22Z"
}
Update a project card
PATCH /projects/columns/cards/:id
Parameters
Name | Type | Description |
---|---|---|
note |
string |
The card's note content. Only valid for cards without another type of content, so this cannot be specified if the card already has a content_id and content_type . |
Status: 200 OK
{
"column_url": "https://api.github.com/projects/columns/367",
"content_url": "https://api.github.com/repos/api-playground/projects-test/issues/3",
"id": 1478,
"note": "Add payload for delete Project column",
"created_at": "2016-09-05T14:21:06Z",
"updated_at": "2016-09-05T14:20:22Z"
}
Delete a project card
DELETE /projects/columns/cards/:id
Response
Status: 204 No Content
Move a project card
POST /projects/columns/cards/:id/moves
Parameters
Name | Type | Description |
---|---|---|
position |
string |
Required. Can be one of top , bottom , or after:<card-id> , where <card-id> is the id value of a card in the same column, or in the new column specified by column_id . |
column_id |
integer |
The id value of a column in the same project. |
Example
{
"position": "after:3",
"column_id": 5
}
Response
Status: 201 Created