Links
Comment on page

Pakat Email Service API

This documentation is a work in progress.
In order to get your api-key, please click on Login and get your api-key in profile. If you have any issue please call support on +982191015383

Profile

get
https://api.pakat.net
/v3/account
Get your account information, plan and credits details

Contacts

get
https://api.pakat.net
/v3/contacts
Get all the contacts
post
https://api.pakat.net
/v3/contacts
Create a contact
put
https://api.pakat.net
/v3/contacts/{email}
Update a contact
get
https://api.pakat.net
/v3/contacts/lists
Get all the lists
post
https://api.pakat.net
/v3/contacts/lists
Create a list
get
https://api.pakat.net
/v3/contacts/folders
Get all folders
post
https://api.pakat.net
/v3/contacts/folders
Create a folder

Transactional

get
https://api.pakat.net
/v3/smtp/blockedContacts
Get the list of blocked or unsubscribed transactional contacts
get
https://api.pakat.net
/v3/smtp/statistics/reports
Get your transactional email activity aggregated per day
get
https://api.pakat.net
/v3/smtp/statistics/aggregatedReport
Get your transactional email activity aggregated over a period of time
get
https://api.pakat.net
/v3/smtp/statistics/events
Get all your transactional email activity (unaggregated events)
get
https://api.pakat.net
/v3/smtp/templates
Get the list of transactional email templates
post
https://api.pakat.net
/v3/smtp/templates
Create a transactional email template
get
https://api.pakat.net
/v3/smtp/templates/:templateId
Returns the template informations
put
https://api.pakat.net
/v3/smtp/templates/:templateId
Updates a transactional email templates
delete
https://api.pakat.net
/v3/smtp/templates/:templateId
Delete an inactive transactional email template
post
https://api.pakat.net
/v3/smtp/templates/templateId/sendTest
Send a template to your test list
post
https://api.pakat.net
/v3/smtp/email
Send a transactional email
get
https://api.pakat.net
/v3/smtp/emails
Get the list of transactional emails on the basis of allowed filters

Email Campaigns

get
https://api.pakat.net
/v3/emailCampaigns
Return all your created email campaigns
post
https://api.pakat.net
/v3/emailCampaigns
Create an email campaign
post
https://api.pakat.net
/v3/emailCampaigns/{campaignId}/sendNow
Send an email campaign immediately, based on campaignId
post
https://api.pakat.net
/v3/emailCampaigns/{campaignId}/sendTest
Send an email campaign to your test list
get
https://api.pakat.net
/v3/emailCampaigns/{campaignId}
Get an email campaign report

Webhooks

get
https://api.pakat.net
/v3/webhooks
Get all webhooks
post
https://api.pakat.net
/v3/webhooks
Create a webhook
get
https://api.pakat.net
/v3/webhooks/{webhookId}
Get a webhook details
put
https://api.pakat.net
/v3/webhooks/{webhookId}
Update a webhook
delete
https://api.pakat.net
/v3/webhooks/{webhookId}
Delete a webhook

Sender

get
https://api.pakat.net/v3
/senders
Get the list of all your senders
post
https://api.pakat.net/v3
/senders
Create a new sender

Example request to create a sender

curl --request POST \
--url https://api.pakat.net/v3/senders \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header 'api-key: my-api-key-v3' \
--data '
{
"ips": [
{
"ip": "1.1.1.1",
"domain": "example.com"
}
],
"name": "Ali",
"email": "[email protected]"
}
'
put
https://api.pakat.net/v3
/senders/{senderId}
Update a sender
delete
https://api.sendinblue.com/v3/
senders/{senderId}
Delete a sender
Last modified 2mo ago