Skip to main content
Skip table of contents

Deleting a user

DELETE/api/v1/billing/user/manage

Headers

Accept

application/json

Body

json

JSON
{
    "login": "user@mail.com"
}

loginrequired

string

User login

Response

204

Successful response

400

Error delete user. Detalization will be in response (same as 422 error response)

422

Returns a JSON object with an error. Validation

JSON
{
    "message": "There will be no informative message here",
    "errors": {
        "any_key": [
            "The reason for the error will be described here."
        ]
    }
}

Example

JSON
curl -k --location --request DELETE 'https://vms.local/api/v1/billing/user/manage' \
--header 'Accept:application/json' \
--header 'Content-Type: application/json \
--data-raw '{
    "login": "user@mail.com"
}'
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.