Authorizations
Body
application/json
The input required to add a custom domain to the platform
The custom domain to add to the platform
Minimum length:
1
curl --request POST \
--url https://{subdomain}.nudj.cx/api/v2/admin/domains \
--header 'Content-Type: application/json' \
--header 'x-api-token: <api-key>' \
--data '{
"domain": "<string>"
}'
{
"success": true,
"code": 123,
"message": "<string>",
"data": {
"verified": true,
"verification": [
{
"type": "<string>",
"domain": "<string>",
"value": "<string>",
"reason": "<string>"
}
]
}
}
Add a new custom domain to the platform configuration.
curl --request POST \
--url https://{subdomain}.nudj.cx/api/v2/admin/domains \
--header 'Content-Type: application/json' \
--header 'x-api-token: <api-key>' \
--data '{
"domain": "<string>"
}'
{
"success": true,
"code": 123,
"message": "<string>",
"data": {
"verified": true,
"verification": [
{
"type": "<string>",
"domain": "<string>",
"value": "<string>",
"reason": "<string>"
}
]
}
}
The input required to add a custom domain to the platform
The custom domain to add to the platform
1
Successful response
Was this page helpful?