Get incoming email configuration for a domain
GET/v1/inbound/username/:domain
Retrieves the incoming email configuration for a specific domain
Request
Path Parameters
domain stringrequired
Domain name
Responses
- 200
- 400
- 401
- 404
- 500
List of incoming email configurations
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
active boolean
strict_replies boolean
username string
[
{
"active": true,
"strict_replies": true,
"username": "string"
}
]
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
error string
success boolean
{
"error": "string",
"success": false
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
error string
success boolean
{
"error": "string",
"success": false
}
Domain not found
- application/json
- Schema
- Example (from schema)
Schema
error string
success boolean
{
"error": "string",
"success": false
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
Schema
error string
success boolean
{
"error": "string",
"success": false
}
Loading...