Skip to main content
POST
/
encrova-service
/
api
/
v1
/
secrets
Create Secrets
curl --request POST \
  --url https://encryption.platform.dev.ai71services.ai/encrova-service/api/v1/secrets \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --data '
{
  "projectName": "my-secret-project-123",
  "projectDescription": "This is a secret management project for storing application credentials"
}
'
{
  "secretKey": "<string>",
  "env": "<string>"
}

Headers

x-api-key
string
required

Body

application/json
projectName
string
required

Project name (alphanumeric characters and hyphens only)

Example:

"my-secret-project-123"

projectDescription
string
required

Description of the project (max 255 characters)

Maximum length: 255
Example:

"This is a secret management project for storing application credentials"

Response

Successful Response

secretKey
string
required
env
string
required