Domains
To add new domain to monitoring
POST {{baseURL}}/domains
Request Body
Name
Type
Description
domain*
String
Domain name - without http ou https
{
"data": {
"id": "15b9706c03ad486b64f86b19",
"domain": "vulneri.io",
"is_active": true,
"is_processed": false
}
}To list all domains in your account
GET {{baseURL}}/domains
Use the is_processed return attribute to see if domain is processed
{
"data": [
{
"domain": "vulneri.io",
"id": "65c1206b63ad254f64f86a19",
"is_processed": false
}
]
}To see details of specific domain in your account
GET {{baseURL}}/domains/:domainId
Path Parameters
Name
Type
Description
domainId*
String
The domain id returned in post method.
{
"data": {
"domain": "vulneri.io",
"id": "65c1206b63ad254f64f86a19",
"is_processed": true
}
}Last updated