How to create new folder in amazon work mail

To create a new folder in Amazon WorkMail, you can follow these steps:

Method 1: Using the Amazon WorkMail Web Interface

  1. Log in to your Amazon WorkMail account using the web interface.
  2. Click on the "Mail" tab at the top of the page.
  3. Click on the "Folders" button on the left-hand side of the page.
  4. Click on the "New Folder" button.
  5. Enter a name for your new folder and click "Create".

Method 2: Using Microsoft Outlook

  1. Open Microsoft Outlook and log in to your Amazon WorkMail account.
  2. Click on the "File" menu and select "New Folder".
  3. Enter a name for your new folder and click "OK".

Method 3: Using Mozilla Thunderbird

  1. Open Mozilla Thunderbird and log in to your Amazon WorkMail account.
  2. Click on the "File" menu and select "New Folder".
  3. Enter a name for your new folder and click "OK".

Method 4: Using Amazon WorkMail API

If you want to create a new folder programmatically using the Amazon WorkMail API, you can use the following command:

POST https://email.workmail.com/v1/folders

Request Body:

{
  "Name": "My New Folder",
  "ParentFolderId": "folder-id"
}

Replace folder-id with the ID of the parent folder where you want to create the new folder.

Note: You need to have the necessary permissions and credentials to use the Amazon WorkMail API.