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.
PUT
https://app.softsolz.uk/api/v1/services/seo/sites/{site_id}/conversion-sources/{service_id}Recent Requests
Log in to see full request historyTimeStatusUser Agent
Make a request to see history.
Path Params
site_idstringrequiredservice_idstringrequiredHeaders
AuthorizationstringrequiredBearer token: `Bearer sk_live_...` (or `sk_test_...` for sandbox). A login token will not work here.
Body Params
enabledbooleanWhether to count it.
value_per_conversionnumber | nullWhat one is worth to you.
currencystring | nullThree-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": {} }}