Fluxmail

Revoke an API key owned by the current member

Reference for DELETE /api/v1/me/api-keys/{keyId}.

DELETE /api/v1/me/api-keys/{keyId}

Reference for DELETE /api/v1/me/api-keys/{keyId}.

Authentication

Pass a Fluxmail member session as a bearer token. API keys cannot use this endpoint.

Request

curl 'http://localhost:8977/api/v1/me/api-keys/keyId_123' \
  -X DELETE \
  -H "Authorization: Bearer $FLUXMAIL_SESSION"

Parameters

NameLocationRequiredTypeDetails
keyIdpathYesstringMinimum length: 1.

Responses

StatusDescriptionContent type
200Successapplication/json
400Invalid requestapplication/json
401Authentication requiredapplication/json
403Permission deniedapplication/json
404Not foundapplication/json
409Conflictapplication/json
413Request body too largeapplication/json
429Too many attemptsapplication/json

200 response

{
  "type": "object",
  "properties": {
    "data": {
      "nullable": true
    }
  }
}

Last updated