List records linked to a task. Labels and URLs resolve through the installed services; a link to an uninstalled service is returned without them rather than failing.
List records linked to a task. Labels and URLs resolve through the installed services; a link to an uninstalled service is returned without them rather than failing.
GET
https://app.softsolz.uk/api/v1/services/tasks/tasks/{id}/linksRecent Requests
Log in to see full request historyTimeStatusUser Agent
Make a request to see history.
Path Params
idstringrequiredHeaders
AuthorizationstringrequiredBearer token: `Bearer sk_live_...` (or `sk_test_...` for sandbox). A login token will not work here.
Response
Response Body · array of objects
idintegerLink id.task_idintegerThe task.sourcestringService id owning the linked record (invoicing, my-leads, appointments, forms, smart-chat).source_idstringThat service row id.labelstring | nullResolved display label. Null when the owning service is not installed.urlstring | nullResolved dashboard URL, or null.Request
import { SoftSolz } from '@softsolz/sdk';
const client = new SoftSolz({ apiKey: process.env.SOFTSOLZ_API_KEY });
const result = await client.tasks.listTaskLinks('<id>', {});console.log(result);Credentials
Sent as a Bearer token. Stored only in your browser.
Response · 200
{ "data": [ { "id": 0, "task_id": 0, "source": "string", "source_id": "string", "label": "string", "url": "string" } ]}