Skip to main content
PUT
/
api
/
organizations
/
{organizationId}
/
contact-protection-settings
Update contact protection period settings
curl --request PUT \
  --url https://your-instance.example.com/api/organizations/{organizationId}/contact-protection-settings \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "contactProtectionPeriod": 48
}
'
{
  "success": true,
  "message": "Contact protection settings updated",
  "data": {
    "contactProtectionPeriod": 48
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.tetherai.ca/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

organizationId
string
required

Body

application/json
contactProtectionPeriod
integer
required

Hours; capped at 720 (30 days)

Required range: 0 <= x <= 720

Response

Contact protection settings updated

success
enum<boolean>
Available options:
true
message
string
data
object