curl --request GET \
--url https://davinci-app.com/api/v2/projects/{projectId}/cards/{cardId}/history \
--header 'Authorization: Bearer <token>'import requests
url = "https://davinci-app.com/api/v2/projects/{projectId}/cards/{cardId}/history"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://davinci-app.com/api/v2/projects/{projectId}/cards/{cardId}/history', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://davinci-app.com/api/v2/projects/{projectId}/cards/{cardId}/history', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"history": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"project_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"team_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"timestamp": "2023-11-07T05:31:56Z",
"sequence": "<string>",
"entity_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"entity_type": "card",
"user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"event_type": "created",
"event_data": {},
"author_display_name": "<string>"
}
],
"meta": {
"limit": 2,
"offset": 1,
"hasMore": true,
"historyHeadId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"historyHeadSequence": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}List card history
Returns card history events newest-first with offset pagination.
curl --request GET \
--url https://davinci-app.com/api/v2/projects/{projectId}/cards/{cardId}/history \
--header 'Authorization: Bearer <token>'import requests
url = "https://davinci-app.com/api/v2/projects/{projectId}/cards/{cardId}/history"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://davinci-app.com/api/v2/projects/{projectId}/cards/{cardId}/history', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://davinci-app.com/api/v2/projects/{projectId}/cards/{cardId}/history', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"history": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"project_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"team_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"timestamp": "2023-11-07T05:31:56Z",
"sequence": "<string>",
"entity_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"entity_type": "card",
"user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"event_type": "created",
"event_data": {},
"author_display_name": "<string>"
}
],
"meta": {
"limit": 2,
"offset": 1,
"hasMore": true,
"historyHeadId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"historyHeadSequence": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}Authorizations
Personal access token. The scopes granted at issuance determine both which
operations the key may call and the ceiling on the resource permissions it
can exercise. Each scope family is a ladder: projects:manage implies
projects:write and projects:read; cards:manage implies cards:write
and cards:read; and teams:manage implies teams:write and teams:read.
These are named API capability bundles, not blanket domain roles:
manage exposes only the permissions enumerated for that scope and never
bypasses the acting user's current role-based access.
Path Parameters
Project id. May be compound in the form {projectId}--{branchName}.
1Agile card id.
Query Parameters
1 <= x <= 100x >= 0Response
One page of card history events.
Hide child attributes
Hide child attributes
Globally monotonic card-history sequence.
^\d+$card, sprint, team, status created, deleted, opened, closed, ownership_transfer_requested, ownership_transfer_declined, ownership_transferred, field_updated, status_changed, sprint_added, sprint_removed, team_added, team_removed, card_added, card_removed, tag_added, tag_removed, user_link_added, user_link_removed, reference_added, reference_removed, card_link_added, card_link_removed, card_mentioned, comment_added, comment_updated, comment_deleted For field_updated, field may be resolution and old/new carry the Markdown values.
Hide child attributes
Hide child attributes
x >= 1x >= 0Latest committed card-history row ID; null only before a card has history.
Globally monotonic card-history sequence.
^\d+$