Uptimeify Docs
Api tokens

Delete Customer Token

Permanently revokes a customer-scoped API token. Users can only delete tokens within their customer scope.

DELETE /api/customer/tokens/:id

Example (cURL)

curl -X DELETE "$BASE_URL/api/customer/tokens/2" \
  -H "Cookie: $SESSION_COOKIE"

Response

{ "success": true }

Common errors

  • 403 Forbidden when the token is outside your customer scope, or when the token is org-scoped (no customerId)
  • 404 Token not found when the token doesn't exist or belongs to another org

On this page