curl --location --request POST 'https://api.hiveflow.ai/api/auth/api-keys' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "API Key para Producción",
"permissions": [
"read",
"write"
],
"expiresIn": "never",
"description": "string"
}'
{
"success": true,
"message": "API key creada exitosamente",
"apiKey": {
"id": "string",
"name": "string",
"key": "hf_abcdef123456789",
"permissions": [
"string"
],
"expiresAt": "2019-08-24T14:15:22Z",
"createdAt": "2019-08-24T14:15:22Z"
}
}