cards
Get card details
Retrieve detailed information about a specific card
GET
/
beta
/
cards
/
{cardId}
Copy
curl --request GET \
--url https://api.vistaly.com/beta/cards/{cardId} \
--header 'Authorization: Bearer <token>'
Copy
{
"archived": true,
"archivedAt": "2023-11-07T05:31:56Z",
"archivedBy": "<string>",
"assignees": [
"<string>"
],
"cardDetails": "We need to streamline the onboarding process to reduce drop-off rates",
"cardId": "abc123def456",
"cardStatus": "<string>",
"cardTitle": "Improve customer onboarding",
"cardType": "assumption",
"children": [
{
"cardId": "<string>",
"contextId": "<string>"
}
],
"commentsCount": 123,
"commentsLastCreatedAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z",
"createdBy": "<string>",
"endDate": "2023-12-25",
"jiraIssueId": "<string>",
"jiraLinked": true,
"labels": [
"<string>"
],
"metricCurrent": 123,
"metricLowerThreshold": 123,
"metricStart": 123,
"metricTarget": 123,
"metricType": "<string>",
"metricUnit": "<string>",
"metricUpperThreshold": 123,
"organizationId": "iLQGOSQFOEIpkYoDgUfQO",
"parents": [
{
"contextId": "<string>",
"model": "card",
"id": "<string>"
}
],
"startDate": "2023-12-25",
"updatedAt": "2023-11-07T05:31:56Z",
"updatedBy": "<string>",
"workspaceId": "workspace123"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
The unique identifier for the card
Response
200
application/json
Card details retrieved successfully
The response is of type object
.
Copy
curl --request GET \
--url https://api.vistaly.com/beta/cards/{cardId} \
--header 'Authorization: Bearer <token>'
Copy
{
"archived": true,
"archivedAt": "2023-11-07T05:31:56Z",
"archivedBy": "<string>",
"assignees": [
"<string>"
],
"cardDetails": "We need to streamline the onboarding process to reduce drop-off rates",
"cardId": "abc123def456",
"cardStatus": "<string>",
"cardTitle": "Improve customer onboarding",
"cardType": "assumption",
"children": [
{
"cardId": "<string>",
"contextId": "<string>"
}
],
"commentsCount": 123,
"commentsLastCreatedAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z",
"createdBy": "<string>",
"endDate": "2023-12-25",
"jiraIssueId": "<string>",
"jiraLinked": true,
"labels": [
"<string>"
],
"metricCurrent": 123,
"metricLowerThreshold": 123,
"metricStart": 123,
"metricTarget": 123,
"metricType": "<string>",
"metricUnit": "<string>",
"metricUpperThreshold": 123,
"organizationId": "iLQGOSQFOEIpkYoDgUfQO",
"parents": [
{
"contextId": "<string>",
"model": "card",
"id": "<string>"
}
],
"startDate": "2023-12-25",
"updatedAt": "2023-11-07T05:31:56Z",
"updatedBy": "<string>",
"workspaceId": "workspace123"
}
Assistant
Responses are generated using AI and may contain mistakes.