curl -X GET "https://api.caret.so/v1/workspace" \
-H "Authorization: Bearer your_api_key_here"
{
"workspace": {
"id": "ws_123456789",
"name": "Acme Corp",
"createdAt": "2023-01-01T00:00:00Z",
"updatedAt": "2023-01-01T00:00:00Z",
"settings": {
"keyterms": ["technical", "documentation"],
"audio_location": "aside-server",
"meeting_default_permission": "workspace"
},
"allowedEmailDomains": ["acme.com"],
"iconUrl": "https://example.com/icon.png"
}
}
ワークスペース
ワークスペース取得
APIキーに関連付けられたワークスペースの詳細を取得します
GET
/
v1
/
workspace
curl -X GET "https://api.caret.so/v1/workspace" \
-H "Authorization: Bearer your_api_key_here"
{
"workspace": {
"id": "ws_123456789",
"name": "Acme Corp",
"createdAt": "2023-01-01T00:00:00Z",
"updatedAt": "2023-01-01T00:00:00Z",
"settings": {
"keyterms": ["technical", "documentation"],
"audio_location": "aside-server",
"meeting_default_permission": "workspace"
},
"allowedEmailDomains": ["acme.com"],
"iconUrl": "https://example.com/icon.png"
}
}
概要
このエンドポイントは、提供されたAPIキーが属するワークスペースの詳細情報を返します。ワークスペース名、作成日、設定などの基本的なメタデータが含まれます。認証
すべてのAPIリクエストはAuthorization: Bearer <API_KEY> で認証します。
Bearerトークン。形式:
Bearer <API_KEY>。レスポンス
ワークスペースオブジェクト。
表示 properties
表示 properties
ワークスペースの一意識別子。
ワークスペース名。
ワークスペースが作成されたISO8601タイムスタンプ。
ワークスペースが最後に更新されたISO8601タイムスタンプ。
ワークスペース設定。
表示 properties
表示 properties
ワークスペースに関連付けられたRAGコーパスID。
ワークスペースの主要用語リスト。
音声ファイルの保存場所。
none、local、aside-server、custom-serverのいずれか。データ保持期間(日数)。
NONE、7、30、90、180、365のいずれか。新しいミーティングのデフォルト権限。
public、workspace、only-meのいずれか。メンバーミーティングの可視性。
only-me、workspace-read、workspace-writeのいずれか。文字起こしで機密情報をマスクするかどうか。
共有時にミーティングを自動的に公開するかどうか。
ワークスペースへのアクセスが許可されたメールドメインのリスト。
ワークスペースアイコンURL。
curl -X GET "https://api.caret.so/v1/workspace" \
-H "Authorization: Bearer your_api_key_here"
{
"workspace": {
"id": "ws_123456789",
"name": "Acme Corp",
"createdAt": "2023-01-01T00:00:00Z",
"updatedAt": "2023-01-01T00:00:00Z",
"settings": {
"keyterms": ["technical", "documentation"],
"audio_location": "aside-server",
"meeting_default_permission": "workspace"
},
"allowedEmailDomains": ["acme.com"],
"iconUrl": "https://example.com/icon.png"
}
}
⌘I