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
const url = 'https://example.com/api/trackers/credentials';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/trackers/credentialsResponses
Section titled “Responses”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" }]