---
title: "Shopping Intent 생성"
slug: "nclue-postshoppingintent"
updated: 2026-04-23T08:55:38Z
published: 2026-04-23T09:02:17Z
canonical: "api.ncloud-docs.com/nclue-postshoppingintent"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://api.ncloud-docs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Shopping Intent 생성

<p class="platform-info type-vpc">VPC 환경에서 이용 가능합니다.</p>

Shopping Intent의 Profile을 생성합니다.

Profile 생성을 요청하면 다음 순서에 따라 생성 작업이 진행됩니다.

| 순서 | 생성 상태 | 설명 |
| :---- | :---- | :---- |
| Step 1 | `registered`: 등록됨 | 생성 작업이 NCLUE 시스템에 등록된 상태<ul><li>작업 시작 전 상태로, [Profile을 삭제](/docs/nclue-deleteshoppingintent)하여 작업 취소 가능</li></ul> |
| Step 2 | `pending`: 대기 중 | 생성 작업이 시스템 대기열에 올라간 상태 |
| Step 3 | `in_progress`: 생성 중 | 생성 작업이 서버에서 실행 중인 상태 |
| Step 4 | <ul><li>`complete`: 사용 가능</li><li>`failed`: 실패</li></ul> | 생성 작업이 완료된 상태<ul><li>생성 성공 시 `complete` 상태가 되며, 정상적으로 사용 가능</li><li>작업 중 발생한 오류로 인해 생성 실패 시 `failed` 상태가 되며, 사용 불가<ul><li>오류 메시지 확인: [Shopping Intent 조회](/docs/nclue-getshoppingintent) 참조</li><li>오류 해결 방법: [NCLUE 문제 해결](https://guide.ncloud-docs.com/docs/nclue-troubleshoot){target="_blank"} 참조</li></ul></li></ul> |

:::(Info) (참고)
Profile 생성 시 각 작업 시간은 데이터 양과 서비스 가용 자원 상황에 따라 달라집니다. 생성 진행 상태는 [Shopping Intent 조회](/docs/nclue-getshoppingintent) API를 호출하여 응답 바디의 `status` 필드에서 확인해 주십시오.
:::

## 요청 <a name="요청"></a>

요청 형식을 설명합니다. 요청 형식은 다음과 같습니다.

| 메서드 | URI |
| :--- | :--- |
| POST | /profile/shopping-intents |

### 요청 헤더 <a name="요청헤더"></a>

NCLUE API에서 공통으로 사용하는 헤더에 대한 정보는 [NCLUE 요청 헤더](/docs/nclue-api-overview#요청헤더)를 참조해 주십시오.

### 요청 바디 <a name="요청바디"></a>

요청 바디에 대한 설명은 다음과 같습니다.

| 필드 | 타입 | 필수 여부 | 설명 |
| :---- | :---- | :---- | :---- |
| `name` | String | Required | Profile 이름<ul><li>1~100 자</li></ul> |
| `task_id` | String | Required | 프로파일링에 적용할 Task ID<ul><li>[Task 목록 조회](/docs/nclue-gettasklist) 참조</li></li> |

### 요청 예시 <a name="요청예시"></a>

요청 예시는 다음과 같습니다.

```shell
curl --location --request POST 'https://nclue.apigw.ntruss.com/api/v1/profile/shopping-intents' \
--header 'x-ncp-apigw-timestamp: {Timestamp}' \
--header 'x-ncp-iam-access-key: {Access Key}' \
--header 'x-ncp-apigw-signature-v2: {API Gateway Signature}' \
--data '{
    "name": "YOUR_PROFILE_NAME",
    "task_id": "3179664c-****-****-****-af6354344018"
}'
```

## 응답 <a name="응답"></a>

응답 형식을 설명합니다.

### 응답 바디 <a name="응답바디"></a>

응답 바디에 대한 설명은 다음과 같습니다.

| 필드 | 타입 | 필수 여부 | 설명 |
| :---- | :---- | :---- | :---- |
| `profile_id` | String | -  | Profile ID |
| `profile_name` | String | - | Profile 이름 |
| `task_id` | String | -  | 프로파일링에 적용할 Task ID |
| `task_name` | String | - | 프로파일링에 적용할 Task 이름 |
| `created_at` | String | - | Profile 생성 요청 일시<ul><li>ISO 8601 형식</li></ul> |

### 응답 상태 코드 <a name="응답상태코드"></a>

NCLUE에서 공통으로 사용하는 응답 상태 코드에 대한 정보는 [NCLUE 응답 상태 코드](/docs/nclue-api-overview#응답상태코드)를 참조해 주십시오.

### 응답 예시 <a name="응답예시"></a>

응답 예시는 다음과 같습니다.

```json
{
    "profile_id": "da523192-****-****-****-01fce3b4f90d",
    "profile_name": "YOUR_PROFILE_NAME",
    "task_id": "3179664c-****-****-****-af6354344018",
    "task_name": "YOUR_TASK_NAME",
    "created_at": "2024-11-26T16:47:27+09:00"
}
```
