# User ID로 푸시 보내기

사용자 목록에 푸시를 보내려면 [`/createMessage`](/ko/developer/api-reference/messages-api/#createmessage) API 호출을 사용하거나 User ID가 포함된 CSV 파일을 업로드할 수 있습니다.

## API를 통해 User ID로 푸시 보내기


### createMessage

<Aside type="tip">

[`/createMessage`](/ko/developer/api-reference/messages-api/#createmessage) 파라미터는 완전히 사용자 정의할 수 있으므로 매우 맞춤화된 푸시 메시지를 만들 수 있습니다.

</Aside>


### 요청 본문 파라미터

| 파라미터    | 설명                                                                                                             |
| ----------- | ---------------------------------------------------------------------------------------------------------------- |
| application | 메시지를 보낼 Pushwoosh 애플리케이션 ID                                                                          |
| auth        | Pushwoosh Control Panel의 API 액세스 토큰                                                                        |
| send\_date  | 메시지를 보낼 시간(UTC 기준)을 설정하거나 'now'를 사용하여 즉시 보냅니다.                                         |
| content     | 푸시 알림의 텍스트입니다.                                                                                        |
| users       | 푸시 메시지를 보낼 User ID 목록입니다. 한 번에 최대 1000개의 User ID로 푸시를 보낼 수 있습니다.                    |

### 요청 예시

```
{
	"request": {
		"application": "APPLICATION_CODE",
		"auth": "API_ACCESS_TOKEN",
		"notifications": [{
			"send_date": "now",
			"content": "Hello world!",
			"users":["external_user_1"]
		}]
	}
}
```

### 응답 예시

```
{
   "status_code":200,
   "status_message":"OK",
   "response": {
      "Messages":["{Notification code}"]
   } 
}
```