authentication
Login - Get API Key
This endpoint allows you to get an API Key
By providing your turboSMTP authentication details you will be able to get an API Key.
Use your API Key to consume APIs that require authorization.
post/authorize
Request body
Example request
{
"email": "developer@yourdomain.com",
"password": "yourTurboSmtpPassword",
"no_expire": true
}Response
Sucess
User logged in sucessfully, use the auth value as API Key from request body in future API calls.
Example response
{
"auth": "f8efa7be4e7457c463e8b800e1f11f92072d272c"
}