Crear nueva API key
🚀 Servidor de producción
https://api.hiveflow.com/api
🚀 Servidor de producción
https://api.hiveflow.com/api
POST
/auth/api-keys
API Keys
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.hiveflow.com/api/auth/api-keys' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "API Key para Producción",
"permissions": [
"read",
"write"
],
"expiresIn": "never",
"description": "string"
}'
Response Response Example
{
"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"
}
}
Request
Body Params application/json
Responses
Modified at 2025-06-19 15:26:15