Return Back to API List
API Call Information
area: email
action: addfolder
API Arguments
API Url Example:
https://api.mailclickconvert.com/api.php?apikey=YOURAPIKEYHERE&area=email&action=addfolder&type=lists&parent=0
API Call Result:
email - addfolder
Add a folder to group lists, messages or images.
API Call Information
area: email
action: addfolder
API Arguments
| Argument | Data Type | Required | Description |
| foldername | string | Yes | Name of the folder |
| type | string | Yes | One of these three options lists,messages,images |
| parent | integer | No | Default is zero. Parent can be another folderid if you want to have a folder inside a folder |
https://api.mailclickconvert.com/api.php?apikey=YOURAPIKEYHERE&area=email&action=addfolder&type=lists&parent=0
API Call Result:
| XML Response | JSON Response |
| <response> <list> <folderid>22</folderid> <success>Folder Added</success> </list> </response> |
{
"list": {
"folderid": "22",
"success": "Folder Added"
}
} |