Call us toll free @ 888-497-7898

email - getsendingprofiles

Returns a list of sending profiles from the account.


API Call Information
area: email
action: getsendingprofiles

API Arguments
Argument Data Type Required Description
start integer No Starting position
limit integer No Number of records to return
API Url Example:
https://api.hypermail.com/api.php?apikey=YOURAPIKEYHERE&area=email&action=getsendingprofiles&start=0&limit=10

API Result:
XML Response JSON Response
<response>
<records>1</records>
<profile>
<id>7563</id>
<ip>127.0.0.1</ip>
<domain>test.com</domain>
<serverid>2325</serverid>
<ipid>1873</ipid>
<domainid>740</domainid>
<totalsent>2</totalsent>
<datecreated>September 28, 2011, 02:14:37 pm</datecreated>
</profile>
</response>
{
    "records": "1",
    "profile": {
        "id": "7563",
        "ip": "127.0.0.1",
        "domain": "test.com",
        "serverid": "2325",
        "ipid": "1873",
        "domainid": "740",
        "totalsent": "2",
        "datecreated": "September 28, 2011, 02:14:37 pm"
    }
}