Skip to main content
GET
/
v1
/
scheduling
/
professionals
/
{id}
Obtener detalle de un profesional
curl --request GET \
  --url https://api.keebai.com/v1/scheduling/professionals/{id} \
  --header 'Authorization: Bearer <token>'
Returns the requested professional as long as they belong to the PAT’s tenant.

Endpoint

GET https://api.keebai.com/v1/scheduling/professionals/:id

Required scope

scheduling:professionals:read

Path params

ParamTypeDescription
idstringProfessional id.

Example request

curl https://api.keebai.com/v1/scheduling/professionals/66c1d2e3f4a5b6c7d8e9f0a1 \
  -H "Authorization: Bearer kbai_pk_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"

Response

200 OK

{
  "_id": "66c1d2e3f4a5b6c7d8e9f0a1",
  "name": "María",
  "last_name": "Soto",
  "cargo": "Médica general",
  "specialties": ["medicina general", "pediatría"],
  "email": "maria.soto@clinica.cl",
  "phone": "+56999999999",
  "avatar": "https://cdn.keebai.com/avatars/...",
  "branches": ["65a1f2b3c4d5e6f7a8b9c0d1"],
  "services": ["65b1c2d3e4f5a6b7c8d9e0f1"],
  "status": "active"
}

404 Not Found

The professional doesn’t exist or belongs to another company.

401 Unauthorized · 403 Forbidden

Same semantics as the rest of the public API.

Authorizations

Authorization
string
header
required

Personal Access Token con prefijo kbai_pk_. Generar desde el portal con permiso developer.manage_tokens.

Path Parameters

id
string
required

Response

200

Detalle del profesional