POST
/
api
/
v1
/
cloud-defender
curl --request POST \
  --url https://app.aegister.com/api/v1/cloud-defender \
  --header 'Content-Type: application/json' \
  --header 'X-Aegister-Token: <api-key>' \
  --data '{
  "organization": 5,
  "fqdn": "sample.com",
  "email": "jdoe@sample.com",
  "endpoint": "11.22.33.44",
  "services": [
    "Caching"
  ]
}'
{
  "error": 0,
  "messages": [],
  "ticket": 123
}

Authorizations

X-Aegister-Token
string
header
required

Body

organization
number

Organization unique identifier for which the Cloud Defender is installed.

Example:

5

fqdn
string

(Fully Qualified Domain Name) is your web application domain name.

Example:

"sample.com"

email
string

Email address of the Cloud Defender manager.

Example:

"jdoe@sample.com"

endpoint
string

Web application exposed interface address.

Example:

"11.22.33.44"

services
enum<string>[]

The services you need to activate for the web application.

Available options:
Caching,
DDoS,
OneFirewall,
WAF

Response

201
application/json
error
integer

Any value different from 0 indicates an error.
More details can be found in messages.

Required range: 0 <= x <= 0
Example:

0

messages
any[]

If error is 1, contains zero or more details on the error.

Example:
[]
ticket
number

Created Cloud Defender unique id.