POST
/
api_keys
/
delete
curl --request POST \
  --url https://api.openmind.org/api/core/api_keys/delete \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "<string>"
}'
{
  "message": "API key deleted successfully."
}

OpenMind allows you to manage your API keys for accessing various services. This endpoint enables you to delete an existing API key associated with your account.

The JWT token is generated with Clerk and is used to authenticate your requests. Ensure you have the necessary permissions to access this endpoint.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

200
application/json

API key deleted successfully

The response is of type object.