VPC 환경에서 이용 가능합니다.
워크스페이스의 상세 정보를 조회합니다.
요청
요청 형식을 설명합니다. 요청 형식은 다음과 같습니다.
| 메서드 | URI |
|---|---|
| GET | /api/v1/workspaces/{workspace_name} |
요청 헤더
Media Intelligence API에서 공통으로 사용하는 헤더에 대한 정보는 Media Intelligence 요청 헤더를 참조해 주십시오.
요청 경로 파라미터
파라미터에 대한 설명은 다음과 같습니다.
| 필드 | 타입 | 필수 여부 | 설명 |
|---|---|---|---|
workspace_name |
String | Required | 워크스페이스 이름 |
요청 예시
요청 예시는 다음과 같습니다.
curl --location --request GET 'https://mi.apigw.ntruss.com/api/v1/workspaces/my-workspace' \
--header 'x-ncp-apigw-timestamp: {Timestamp}' \
--header 'x-ncp-iam-access-key: {Access Key}' \
--header 'x-ncp-apigw-signature-v2: {API Gateway Signature}' \
--header 'Content-Type: application/json'
응답
응답 형식을 설명합니다.
응답 바디
응답 바디에 대한 설명은 다음과 같습니다.
| 필드 | 타입 | 필수 여부 | 설명 |
|---|---|---|---|
code |
String | - | API 처리 결과 코드 |
message |
String | - | API 처리 결과 메시지 |
result |
Object | - | 워크스페이스 상세 정보 |
result.workspaceName |
String | - | 워크스페이스 이름 |
result.workspaceUrl |
String | - | 워크스페이스 URL |
result.bucketName |
String | - | 연동된 Object Storage 버킷 이름 |
result.monthlyAnalysisCount |
Integer | - | 월간 분석 건수 |
result.createdUserName |
String | - | 생성자 이름 |
result.createdTime |
String | - | 생성 일시
|
result.updatedUserName |
String | - | 수정자 이름 |
result.updatedTime |
String | - | 수정 일시
|
응답 상태 코드
Media Intelligence API에서 공통으로 사용하는 응답 상태 코드에 대한 정보는 Media Intelligence 응답 상태 코드를 참조해 주십시오.
응답 예시
응답 예시는 다음과 같습니다.
{
"code": "0",
"message": "success",
"result": {
"workspaceName": "my-workspace",
"workspaceUrl": "https://mi.apigw.ntruss.com/api/v1/workspaces/my-workspace",
"bucketName": "my-bucket",
"monthlyAnalysisCount": 150,
"createdUserName": "username",
"createdTime": "2026-03-18T10:30:00",
"updatedUserName": "username",
"updatedTime": "2026-03-18T10:30:00"
}
}