PATCH · projects:write

Set public dashboard access

Publish or disable a project's read-only Mentions and Analytics dashboard, with an optional public description and website link. Its share URL is assigned once and remains reserved when disabled.

External side effects

REST

PATCH/api/v1/projects/:projectId/public-dashboard
curl "https://www.stalkr.ai/api/v1/projects/:projectId/public-dashboard" \
  --request PATCH \
  --header "Authorization: Bearer $STALKR_API_KEY" \
  --header "Content-Type: application/json" \
  --header "Idempotency-Key: unique-operation-key"

MCP

Tool name: set_public_dashboard

The MCP tool accepts the same input schema and returns the same structured { data, meta } result as REST.

Input

enabledrequired

boolean

description

string

websiteUrl

string

Optional public HTTP or HTTPS website URL

projectIdrequired

string

idempotencyKey

string

Unique key used to safely retry this write operation

Safe retries

Pass idempotencyKey to the MCP tool or Idempotency-Key to REST when retrying this write.

Authorization

Required scope: projects:write.

Scope authorization is followed by resource authorization. Project operations check current membership and the minimum role required by the underlying workflow.

Related resources