Skip to content

SOP-006: Critical Mode

Business Only
FieldValue
Document IDSOP-006
Version1.0
StatusActive
Plan RequiredBusiness Only

Overview

Critical Mode is a security feature that removes sensitive information from the Proxidize dashboard including admin name, live chat button, and key device identifiers. Use this for maximum operational security.

Prerequisites

  • Valid API token (SOP-001)
  • Proxidize Business plan
  • Last 5 characters of your Proxidize license key

Security Flow


Endpoint

GET /api/crit_mode?toggle=VALUE&key=LICENSE_LAST_5

Parameters

ParameterRequiredDescription
toggleYesenable or disable
keyYesLast 5 characters of license key

Enable Critical Mode

Example

bash
curl -H "Authorization: Token YOUR_API_TOKEN" \
     "http://YOUR_SERVER_IP/api/crit_mode?toggle=enable&key=Ffx!r"

Response (Success)

Successfully enabled critical mode

Disable Critical Mode

Example

bash
curl -H "Authorization: Token YOUR_API_TOKEN" \
     "http://YOUR_SERVER_IP/api/crit_mode?toggle=disable&key=Ffx!r"

Response (Success)

Successfully disabled critical mode

What Critical Mode Does

ElementNormal ModeCritical Mode
Admin NameVisibleHidden
Live Chat ButtonVisibleRemoved
Device IdentifiersFullMasked
API AccessFullFull

INFO

Critical Mode only affects the dashboard UI. All API functionality remains available.


Finding Your License Key

  1. Log into your Proxidize dashboard
  2. Navigate to Settings > License
  3. Your full license key will be displayed
  4. Copy the last 5 characters for the API call

WARNING

Keep your license key secure. Only the last 5 characters are needed for this API.


Error Responses

ErrorCauseSolution
ERROR: Invalid requestWrong toggle value or incorrect keyVerify parameters
There was an error handling your requestAPI processing errorCheck server logs

Use Cases

When to Enable

  • Giving dashboard access to clients
  • During security audits
  • For regulatory compliance
  • Shared workspaces

When to Disable

  • Troubleshooting issues
  • Full admin access needed
  • Solo operation

Verification Checklist

  • [ ] API returns success message
  • [ ] Admin name no longer visible
  • [ ] Live chat button removed
  • [ ] Device identifiers masked

Troubleshooting

IssueCauseSolution
Invalid request errorWrong keyDouble-check last 5 chars
Toggle not workingPlan limitationVerify Business plan
Partial hidingCache issueClear browser cache

See Also

Proxidize API Documentation