POST/users/{userId}/mail/migration/pop3
Migrates existing email data to LINE WORKS Mail using POP3.
OAuth 2.0 authentication.
For more information, see Authentication and Authorization.
| Parameter | Type | Description |
|---|---|---|
| userId | string | Member ID (must be URL-encoded)
required example : me |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
| Content-Type | string | application/json required example : application/json |
| Property | Type | Description |
|---|---|---|
| pop3Id | string | POP3 ID required minLength : 1 |
| pop3Address | string | POP3 address required minLength : 1 |
| pop3Password | string | POP3 password required minLength : 1 |
| pop3Port | integer | POP3 port required format : int32 |
| isNewFolder | boolean | Indicates whether to create a new folder. default : false |
| newFolderName | string | New folder name. minLength : 1 maxLength : 100 |
example
1{2 "pop3Id": "pop3@example.com",3 "pop3Address": "pop3.example.com",4 "pop3Password": "Pwd",5 "pop3Port": 110,6 "isNewFoler": true,7 "newFolderName": "POP3MigrationFolder"8}Accepted
Bad Request