List the SoftSolz services connected to a website and the pages they sit on.
Rows with an empty pages array are connected but not yet placed on a page. templated names the services this site has a designed slot for. Reading also finishes any pending sign-in destination for Customer Auth once its widget is found on a page.
GET
https://app.softsolz.uk/api/v1/services/site-builder/projects/{id}/integrationsRecent 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
integrationsarray of objectsConnected services.templatedarray of stringsService ids the site has a designed slot for.multiarray of stringsService ids that can be connected more than once.Request
import { SoftSolz } from '@softsolz/sdk';
const client = new SoftSolz({ apiKey: process.env.SOFTSOLZ_API_KEY });
const result = await client.siteBuilder.getProjectIntegrations('<id>');console.log(result);Credentials
Sent as a Bearer token. Stored only in your browser.
Response · 200
{ "data": { "integrations": [], "templated": [], "multi": [] }}