Get the SMTP Config
GET/v1/smtpbasic/get/:mailer_id
This endpoint gets the SMTP config by mailer_id
Responses
- 200
- 400
- 409
SMTP Config found
- application/json
- Schema
- Example (from schema)
Schema
config
config_type string
connection_type string
email string
name string
success boolean
{
"config": {},
"config_type": "string",
"connection_type": "string",
"email": "string",
"name": "string",
"success": true
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
error string
success boolean
{
"error": "string",
"success": false
}
Conflict Config Not Found
- application/json
- Schema
- Example (from schema)
Schema
error string
success boolean
{
"error": "string",
"success": false
}
Loading...