Deactivate a license
Release the stored license and return this instance to Personal limits. Requires admin.license.
DELETE /api/v1/admin/license
Release the stored license and return this instance to Personal limits. Requires admin.license.
Authentication
Pass an administrator member session or an API key as a bearer token. An API key must include the administrative capability named in the endpoint description.
Remote administrative requests require HTTPS. Requests from the local computer can use HTTP.
Request
curl 'http://localhost:8977/api/v1/admin/license' \
-X DELETE \
-H "Authorization: Bearer $FLUXMAIL_API_KEY"This endpoint has no parameters or request body.
Responses
| Status | Description | Content type |
|---|---|---|
200 | License deactivated | application/json |
400 | Invalid request | application/json |
401 | Authentication required | application/json |
403 | Administrative access denied | application/json |
404 | Resource not found | application/json |
409 | Request conflict | application/json |
413 | Request body too large | application/json |
415 | Unsupported media type | application/json |
500 | Internal error | application/json |
502 | License could not be verified | application/json |
200 response
{
"type": "object",
"properties": {
"data": {
"type": "object",
"additionalProperties": {
"nullable": true
}
}
},
"required": [
"data"
],
"additionalProperties": false
}Last updated