Call us toll free @ 888-497-7898

leads - getfolders

Gets a list of lead folders


API Call Information
area: leads
action: getfolders

API Arguments
Argument Data Type Required Description
API Url Example:
https://api.hypermail.com/api.php?apikey=YOURAPIKEYHERE&area=leads&action=getfolders

API Result:
XML Response JSON Response
<response>
<folder>
<id>1</id>
<parentid>4</parentid><title>mark leads</title>
</folder>
<folder>
<id>10</id><parentid>1</parentid>
<title>Chucks Leads</title>
</folder>
</response>
{
    "folder": [
        {
            "id": "1",
            "parentid": "4",
            "title": "mark leads"
        },
        {
            "id": "10",
            "parentid": "1",
            "title": "Chucks Leads"
        }
    ]
}