overview your first call subscribers mailing lists list ai campaigns sender profiles send campaign analytics insight

Email Sender Profiles

A sender profile contains the send from information attached to a campaign send i.e. send from email address and associated contact information. When setting up a new send using the API, you will be asked to specify an existing sender profile id to attach to the send.

You can use this section of the email blaster API to query your current sender profiles and return their unique {id}.

View Sender Profiles

This GET request to the email blaster API will return a listing of all of your existing sender profiles and associated details. Your request should be made to the following URL:

https://api.emailblaster.cloud/2.0/senderprofiles/list

After a successful request, the following JSON response will be returned:

{
   "status":"ok",
   "profiles":[
      {
         "id":1,
         "sender_name":"Gary Paul",
         "sender_email":"gary@example.com",
         "sender_reply":"gary@example.com",
         "sender_address":"Unit 10a burcote wood business park,wood burcote,towcester, northants,NN12 8TA",
         "total_sent":0,
         "month_sent":0,
         "verified":"Y"
      },
      {
         "id":2,
         "sender_name":"Sarah Grace",
         "sender_email":"sarah@example.com",
         "sender_reply":"office@example.com",
         "sender_address":"Unit 10a burcote wood business park,wood burcote,towcester, northants,NN12 8TA",
         "total_sent":0,
         "month_sent":0,
         "verified":""
      },
      {
         "id":3,
         "sender_name":"Mark Smith",
         "sender_email":"mark@example.com",
         "sender_reply":"office@example.com",
         "sender_address":"Unit 10a burcote wood business park,wood burcote,towcester, northants,NN12 8TA",
         "total_sent":0,
         "month_sent":0,
         "verified":"Y"
      }
   ]
}
total_sent => Total emails sent to this profile.
month_sent => Total emails sent to this profile this month.
verified => Has the profile been verified with valid SPF/DKIM record (Y if true).
cloud