SoftSolzSoftSolz
HomeAPI GuideAPI ReferenceWidget Tester
my leads

Assign a lead to a workspace member.

Give the lead an owner by member id or by their email address; send neither to unassign. The new owner gets an in-app notification and an email. Answers 400 owner_not_member when the person is not an active member of the workspace.

POSThttps://app.softsolz.uk/api/v1/services/my-leads/leads/{id}/assign

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.

Idempotency-Keystring

Optional idempotency key for safe retries.

Body Params

owner_user_idinteger

Member id to own the lead.

owner_emailstring

Member email, used when you do not know the id.

Response

Response Body

idintegerLead id.
run_idinteger | nullResearch run that produced this lead, or null when it was added directly.
namestringCompany name.
websitestring | nullWebsite URL.
domainstring | nullBare domain, lower case.
external_idstring | nullYour own stable id for this company.
sourcestringHow the lead got here.
viastring | nullChannel of the last write: research, api, connected_app, or null for the dashboard.
via_labelstring | nullName of the app or key that last wrote the lead.
fit_scoreinteger | nullFit against the brief, 0-100.
lead_scoreinteger | nullReadiness to buy, 0-100.
confidencenumber | nullData confidence, 0-1.
verification_tierstring | nullverified, probable or unverified.
verified_contact_countintegerHow many contact channels were verified on the official site.
lead_statusstringWhere the lead is in your process.
industrystring | nullPrimary industry.
citystring | nullCity.
statestring | nullState or region.
countrystring | nullCountry.
employee_bandstring | nullHeadcount band.
revenue_bandstring | nullRevenue band.
source_urlstring | nullPrimary source URL.
owner_user_idinteger | nullMember who owns the lead, or null when unassigned.
owner_namestring | nullOwner display name.
owner_emailstring | nullOwner email.
tagsarray of stringsLower-case labels for segmentation.
last_contacted_atstring | nullSet whenever the status becomes called, contacted or follow_up.
company_idstring | nullCRM company created by convert, if any.
contact_idstring | nullCRM contact created by convert, if any.
deal_idinteger | nullDeal created by convert, if any.
resultobjectStructured research grouped by section. Every key is optional. Use the same keys on create and update; on update, sections merge key by key with what is already stored.
created_atstringCreation timestamp.
updated_atstringLast update. Round-trip as expected_updated_at on PATCH to refuse stale writes (409 STALE_VERSION).

Request

import { SoftSolz } from '@softsolz/sdk';
const client = new SoftSolz({ apiKey: process.env.SOFTSOLZ_API_KEY });
const result = await client.myLeads.assignLead('<id>', {});
console.log(result);

Credentials

Sent as a Bearer token. Stored only in your browser.

Response · 200

{
"data": {
"id": 0,
"run_id": 0,
"name": "string",
"website": "string",
"domain": "string",
"external_id": "string",
"source": "string",
"via": "string",
"via_label": "string",
"fit_score": 0,
"lead_score": 0,
"confidence": "string",
"verification_tier": "string",
"verified_contact_count": 0,
"lead_status": "string",
"industry": "string",
"city": "string",
"state": "string",
"country": "string",
"employee_band": "string",
"revenue_band": "string",
"source_url": "string",
"owner_user_id": 0,
"owner_name": "string",
"owner_email": "string",
"tags": [],
"last_contacted_at": "string",
"company_id": "string",
"contact_id": "string",
"deal_id": 0,
"result": {},
"created_at": "string",
"updated_at": "string"
}
}