VPC 환경에서 이용 가능합니다.
생성한 Shopping Intent의 Profile 목록을 조회합니다. 조회된 모든 Profile의 상세 정보를 확인할 수 있습니다.
요청
요청 형식을 설명합니다. 요청 형식은 다음과 같습니다.
메서드 | URI |
---|---|
GET | /profile/shopping-intents |
요청 헤더
NCLUE API에서 공통으로 사용하는 헤더에 대한 정보는 NCLUE 요청 헤더를 참조해 주십시오.
요청 쿼리 파라미터
파라미터에 대한 설명은 다음과 같습니다.
필드 | 타입 | 필수 여부 | 설명 |
---|---|---|---|
index |
Integer | Optional | 목록 시작 위치
|
limit |
Integer | Optional | 목록 출력 제한 값
|
요청 예시
요청 예시는 다음과 같습니다.
curl --location --request GET 'https://nclue.apigw.ntruss.com/api/v1/profile/shopping-intents?index=0&limit=20' \
--header 'X-NCP-APIGW-TIMESTAMP: {Timestamp}' \
--header 'X-NCP-IAM-ACCESS-KEY: {Access Key}' \
--header 'X-NCP-APIGW-SIGNATURE-V2: {API Gateway Signature}'
응답
응답 형식을 설명합니다.
응답 바디
응답 바디에 대한 설명은 다음과 같습니다.
필드 | 타입 | 필수 여부 | 설명 |
---|---|---|---|
index |
Integer | - | 목록 시작 위치 |
limit |
Integer | - | 목록 출력 제한 값 |
total |
Integer | - | 조회된 Profile 개수 |
profiles |
Array | - | Profile 목록 |
profiles
profiles
에 대한 설명은 다음과 같습니다.
필드 | 타입 | 필수 여부 | 설명 |
---|---|---|---|
profile_id |
String | - | Profile ID |
profile_name |
String | - | Profile 이름 |
task_id |
String | - | 프로파일링에 적용할 Task ID |
task_name |
String | - | 프로파일링에 적용할 Task 이름 |
status |
String | - | Profile 상태
|
created_at |
String | - | Profile 생성 요청 일시(ISO 8601 형식) |
completed_at |
String | - | Profile 생성 완료 일시(ISO 8601 형식) |
line_count |
Integer | - | Task에 적용된 Feature의 라인 수 |
disk_usage |
Integer | - | Profile 용량(Byte) |
fail_message |
String | null | - | 생성 실패 메시지
|
응답 상태 코드
NCLUE에서 공통으로 사용하는 응답 상태 코드에 대한 정보는 NCLUE 응답 상태 코드를 참조해 주십시오.
응답 예시
응답 예시는 다음과 같습니다.
{
"index": 0,
"limit": 20,
"total": 2,
"profiles": [
{
"profile_id": "cb4bc383-****-****-****-adeffdab602e",
"profile_name": "YOUR_PROFILE_NAME",
"task_id": "3dd950b2-****-****-****-64a7c54bd0e7",
"task_name": "YOUR_TASK_NAME",
"status": "completed",
"created_at": "2024-10-18T01:25:35",
"completed_at": "2024-10-18T01:28:09",
"line_count": 9367,
"disk_usage": 22060,
"fail_message": null
},
// (생략)
]
}