Update the ideal-customer profile.
Change any of the settings fields; only keys you send are changed. This is the brief every future research reads, so keep it accurate.
https://app.softsolz.uk/api/v1/services/my-leads/settingsRecent Requests
Log in to see full request historyHeaders
AuthorizationstringrequiredBearer token: `Bearer sk_live_...` (or `sk_test_...` for sandbox). A login token will not work here.
Idempotency-KeystringOptional idempotency key for safe retries.
Body Params
company_namestringThe workspace company name.
company_websitestringThe workspace website.
offeringstringWhat the workspace sells.
ideal_customerstringIdeal customer profile in prose.
target_industriesstringComma-separated industries to prefer.
avoid_industriesstringComma-separated industries to avoid.
switching_targetsstringComma-separated software whose users are switch candidates.
default_countriesstringComma-separated default markets.
default_countintegerDefault number of companies per research.
default_deep_verifybooleanWhether SoftSolz research deep-verifies by default.
kb_sectionsarray of stringsSections included when a lead is sent to the Knowledge Hub.
Response
Response Body
company_namestringThe workspace company name.company_websitestringThe workspace website.offeringstringWhat the workspace sells.ideal_customerstringIdeal customer profile in prose.target_industriesstringComma-separated industries to prefer.avoid_industriesstringComma-separated industries to avoid.switching_targetsstringComma-separated software whose users are switch candidates.default_countriesstringComma-separated default markets.default_countintegerDefault number of companies per research.default_deep_verifybooleanWhether SoftSolz research deep-verifies by default.kb_sectionsarray of stringsSections included when a lead is sent to the Knowledge Hub.Request
import { SoftSolz } from '@softsolz/sdk';
const client = new SoftSolz({ apiKey: process.env.SOFTSOLZ_API_KEY });
const result = await client.myLeads.updateSettings({});console.log(result);Credentials
Sent as a Bearer token. Stored only in your browser.
Response · 200
{ "data": { "company_name": "string", "company_website": "string", "offering": "string", "ideal_customer": "string", "target_industries": "string", "avoid_industries": "string", "switching_targets": "string", "default_countries": "string", "default_count": 0, "default_deep_verify": true, "kb_sections": [] }}