Turn a mention into a link prospect.
Turn a mention into a link prospect.
POST
https://app.softsolz.uk/api/v1/services/seo/sites/{site_id}/mentions/{mention_id}/prospectRecent Requests
Log in to see full request historyTimeStatusUser Agent
Make a request to see history.
Path Params
site_idstringrequiredmention_idstringrequiredHeaders
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
target_urlstringPage on the site the link should point to.
Response
Response Body
idstringProspect id. Use it as prospect_id.source_urlstringPage you want a link from.source_domainstringDomain of that page.contact_namestring | nullWho to ask.contact_emailstring | nullTheir email.target_urlstring | nullPage on the site the link should point to.suggested_anchorstring | nullAnchor text to ask for.statusstringOutreach state.owner_user_idinteger | nullMember chasing it.notesstring | nullFree-text notes.next_follow_up_onstring | nullDate of the next follow-up.last_verified_atstring | nullLast time the page was checked for the link.verification_statusstring | nullResult of the last check.backlink_idstring | nullBacklink created once the link went live.created_atstringCreation time.updated_atstringLast change.Request
import { SoftSolz } from '@softsolz/sdk';
const client = new SoftSolz({ apiKey: process.env.SOFTSOLZ_API_KEY });
const result = await client.seo.createSiteMentionProspect('<site_id>', '<mention_id>', {});console.log(result);Credentials
Sent as a Bearer token. Stored only in your browser.
Response · 201
{ "data": { "id": "string", "source_url": "string", "source_domain": "string", "contact_name": "string", "contact_email": "string", "target_url": "string", "suggested_anchor": "string", "status": "string", "owner_user_id": 0, "notes": "string", "next_follow_up_on": "string", "last_verified_at": "string", "verification_status": "string", "backlink_id": "string", "created_at": "string", "updated_at": "string" }}