Deletes an empty private domain for the user in the /user/username namespace OR in the case of an utf-8 domain name
more
Deletes an empty private domain for the user in the /user/username namespace
- It can be composed of any valid utf8 character, with the exception that if the ascii encoding value is less than 128, only alphabets (both cases), numbers, underscore and dash are allowed.
- It can also be specified as a string of upper case UTF-8 codes with \u replaced by a $ character. For example, לשמוע is the same as $05DC$05E9$05DE$05D5$05E2. The response will contain the latter form and not the former form.
- It cannot start with an underscore or dash.
Sample response:
{
"status": "200 OK",
"code": "/api/status/ok",
"domain_name": trashdomain,
"domain_id": "trashdomain"
}
OR in the case of an utf-8 domain name
{
"status": "200 OK",
"code": "/api/status/ok",
"domain_name": "$05DC$05E9$05DE$05D5$05E2",
"domain_id": "/user/aseem/$05DC$05E9$05DE$05D5$05E2"
}
less