Skip to content
Select themeSelect language

GET /api/trackers/credentials — list the workspace's connected Linear/Notion credentials (ADR 0029, Slice 5). Used to populate the issue-tracker credential picker in the project-edit modal.

GET
/api/trackers/credentials
curl --request GET \
--url https://example.com/api/trackers/credentials
Media typeapplication/json
Array<object>

A connected tracker credential, surfaced to the project-edit UI so it can offer a credential picker for the Linear/Notion issue tracker. Carries no secret material — only the id, provider and display label.

object
account_label
string | null
id
required
string format: uuid
provider
required
string
Examplegenerated
[
{
"account_label": "example",
"id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"provider": "example"
}
]