Appearance
정보 Default
GET/workspaces/{id}/subscriptionCopied!
워크스페이스 구독 정보와 플랜 제한을 조회해요.
접근 가능한 사용자
사용자
접근 권한
Request
Path
idstringrequired 워크스페이스 ID
Response
Returns 200 OK.
idstring구독 ID
lastPaidSeatsnumber마지막으로 결제된 좌석 수
statusstring?Stripe 구독 상태
planobject플랜 정보
plan.idstring플랜 ID
plan.namestring플랜 이름
plan.maxProjectnumber생성 가능한 최대 프로젝트 수
plan.maxMembernumber초대 가능한 최대 워크스페이스 멤버 수
plan.maxGuestPerProjectnumber프로젝트별 최대 게스트 수
plan.baseStorageSizenumber기본 저장소 용량
plan.storageSizePerMembernumber멤버당 추가 저장소 용량
plan.maxEncodingPresetstring?최대 인코딩 프리셋
plan.allowUploadVideoboolean동영상 업로드 허용 여부
plan.allowProjectConnectionboolean프로젝트 외부 연결 허용 여부
plan.keepOriginalVideoboolean원본 동영상 보관 여부
Example
bash
curl 'https://api.youvico.com/workspaces/6ba7b810-9dad-11d1-80b4-00c04fd430c8/subscription' \
-H 'Authorization: Bearer xoau.aB3xK9p2QwR7sT4uV1nM8oP5qL6rN0yZ7eF2gH4jK...'json
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"lastPaidSeats": 5,
"status": "active",
"plan": {
"id": "7ca7b810-9dad-11d1-80b4-00c04fd430c8",
"name": "Team",
"maxProject": 50,
"maxMember": 20,
"maxGuestPerProject": 10,
"baseStorageSize": 53687091200,
"storageSizePerMember": 10737418240,
"maxEncodingPreset": "HD",
"allowUploadVideo": true,
"allowProjectConnection": true,
"keepOriginalVideo": false
}
}