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