Get incoming domain with webhook
GET/v1/inbound/:domain
This endpoint retrieves the details of an incoming domain along with its webhook configuration
Request
Path Parameters
domain stringrequired
Domain name
Responses
- 200
- 400
- 500
Incoming domain with webhook details
- application/json
- Schema
- Example (from schema)
Schema
domain string
headers
object
property name* string
method string
url string
wildcard boolean
{
"domain": "string",
"headers": {},
"method": "string",
"url": "string",
"wildcard": true
}
error: Invalid Domain
- application/json
- Schema
- Example (from schema)
Schema
error string
success boolean
{
"error": "string",
"success": false
}
error: Internal Server Error
- application/json
- Schema
- Example (from schema)
Schema
error string
success boolean
{
"error": "string",
"success": false
}
Loading...