SoftSolzSoftSolz
HomeAPI GuideAPI ReferenceWidget Tester
seo

Count a service as a conversion, and say what one is worth.

Setting a value is what turns clicks into money on the growth board: a page that earns few clicks but converts them is then ranked above a page that earns many and converts none. Without a value, prioritisation stays on clicks alone.

PUThttps://app.softsolz.uk/api/v1/services/seo/sites/{site_id}/conversion-sources/{service_id}

Recent Requests

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

Path Params

site_idstringrequired
service_idstringrequired

Headers

Authorizationstringrequired

Bearer token: `Bearer sk_live_...` (or `sk_test_...` for sandbox). A login token will not work here.

Body Params

enabledboolean

Whether to count it.

value_per_conversionnumber | null

What one is worth to you.

currencystring | null

Three-letter currency code.

Response

Response Body

sourceobjectOne of your own services, and whether its results count as conversions here.

Request

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

Credentials

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

Response · 200

{
"data": {
"source": {}
}
}