Get the SMTP test process status
GET{baseUrl}/api/2.0/smtpsettings/smtp/test/status
Returns the SMTP test process status.
Responses
- 200
- 401
- 402
SMTP operation status
- application/json
- Schema
- Example (auto)
Schema
completedboolean
Specifies if the SMTP operation is completed or not
Example:
true
idstringnullable
SMTP operation ID
Example:
{some-random-guid}
errorstringnullable
SMTP operation error
Example:
statusstringnullable
SMTP operation status
Example:
percentsint32
Percentage of SMTP operation completion
Example:
0
{
"completed": true,
"id": "{some-random-guid}",
"error": "",
"status": "",
"percents": 0
}
Unauthorized
Your pricing plan does not support this option
Authorization: asc_auth_key
name: asc_auth_keytype: apiKeyscopes: read,write
in: cookie
- curl
- python
- javascript
- php
- csharp
- java
- CURL
curl -L '/api/2.0/smtpsettings/smtp/test/status' \
-H 'Accept: application/json'
ResponseClear