Skip to main content
PUT/v1/consumer/protections/{id}/visibility
Change whether a content protection is publicly visible on your portfolio or hidden. Public protections appear in similarity checks and on your public profile page. Private protections are only visible to you. You can only update visibility for your own protections.

Parameters

id
string
required
The protection ID (UUID) returned when you protected the content.
visibility
string
required
The new visibility setting. Must be public or private.

Responses

{
  "status": "updated",
  "visibility": "public"
}
curl -X PUT https://api.truthlocks.com/v1/consumer/protections/a1b2c3d4-e5f6-7890-abcd-ef1234567890/visibility \
  -H "X-API-Key: tlk_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{"visibility": "public"}'