Skip to main content
GET
/
projects
/
{projectId}
/
actions
/
list
List actions
curl --request GET \
  --url https://devtune.ai/api/v2/projects/{projectId}/actions/list \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "actions": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "title": "<string>",
        "description": "<string>",
        "channels": [
          "<string>"
        ],
        "priority": "<string>",
        "status": "active",
        "surface": "recommendation",
        "opportunityScore": 123,
        "effortScore": 123,
        "portfolioCategory": "<string>",
        "createdAt": "2023-11-07T05:31:56Z",
        "updatedAt": "2023-11-07T05:31:56Z",
        "expectedImpact": "<string>",
        "feedBucket": "<string>",
        "isCommandCenter": true,
        "primaryCtaKind": "<string>",
        "targetLabel": "<string>",
        "whatChanged": "<string>"
      }
    ],
    "pagination": {
      "page": 123,
      "pageSize": 123,
      "totalCount": 123,
      "totalPages": 123
    }
  },
  "meta": {
    "timestamp": "2023-11-07T05:31:56Z",
    "projectId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  }
}

Authorizations

Authorization
string
header
required

API key with dtk_live_ prefix. Obtain it from API Keys in the account sidebar. New keys start with all supported scopes selected for the chosen project, and you can narrow them to specific read/write scopes as needed.

Path Parameters

projectId
string<uuid>
required

Query Parameters

status
enum<string>

Filter by public action status. active returns recommendations; the other values apply to adopted backlog work. The aliases open, completed, and dismissed map to backlog, done, and canceled.

Available options:
active,
backlog,
in_progress,
blocked,
done,
canceled,
open,
completed,
dismissed
surface
enum<string>

Filter to the recommendation feed or the adopted backlog surface.

Available options:
recommendation,
backlog
priority
string
channel
string
page
integer
default:1
Required range: x >= 1
pageSize
integer
default:25
Required range: 1 <= x <= 100

Response

Actions list

data
object
meta
object