Skip to main content
PATCH
/
v1
/
tenants
/
me
Update tenant config
curl --request PATCH \
  --url https://api.mivicall.com/v1/tenants/me \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "specialty": "<string>",
  "publicSlug": "<string>",
  "publicBookingEnabled": true,
  "config": {}
}
'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "Clínica Sorriso",
  "specialty": "dental",
  "status": "trial",
  "clerkOrgId": "<string>",
  "legalName": "<string>",
  "nif": "506332014",
  "address": "<string>",
  "postalCode": "<string>",
  "city": "Lisboa",
  "country": "PT",
  "email": "jsmith@example.com",
  "phone": "<string>",
  "publicSlug": "clinica-sorriso",
  "publicBookingEnabled": true,
  "plan": "basic",
  "trialEndsAt": "2023-11-07T05:31:56Z",
  "config": {
    "voice": "<string>",
    "voiceSpeed": 123,
    "greeting": "<string>",
    "timezone": "<string>",
    "fallbackHumanNumber": "<string>"
  },
  "referralCode": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.mivicall.com/llms.txt

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

Authorizations

Authorization
string
header
required

API key no header Authorization: Bearer miv_live_.... Gere keys em Settings → Integrations.

Body

application/json
name
string
specialty
string
publicSlug
string | null
publicBookingEnabled
boolean
config
object

Response

Tenant actualizado

id
string<uuid>
required
name
string
required
Example:

"Clínica Sorriso"

specialty
enum<string>
required
Available options:
dental,
medical,
physio,
aesthetic,
other
status
enum<string>
required
Available options:
trial,
active,
past_due,
canceled
clerkOrgId
string
nif
string | null
Example:

"506332014"

address
string | null
postalCode
string | null
city
string | null
Example:

"Lisboa"

country
string
Example:

"PT"

email
string<email> | null
phone
string | null
publicSlug
string | null
Example:

"clinica-sorriso"

publicBookingEnabled
boolean
plan
enum<string>
Available options:
basic,
pro,
clinica_plus,
enterprise
trialEndsAt
string<date-time> | null
config
object

Tenant-specific config (voice AI, business hours metadata, etc.)

referralCode
string | null
createdAt
string<date-time>
updatedAt
string<date-time>