SoftSolzSoftSolz
HomeAPI GuideAPI ReferenceWidget Tester
site builder

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.

GEThttps://app.softsolz.uk/api/v1/services/site-builder/projects/{id}/integrations

Recent Requests

Log in to see full request history
TimeStatusUser Agent
Make a request to see history.

Path Params

idstringrequired

Headers

Authorizationstringrequired

Bearer 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": []
}
}