Creates a new secret with the supplied plaintext value.
The value is encrypted with the tenant's DEK before persistence and the call also publishes the initial revision — so the secret is immediately resolvable. Returns 409 if a secret with the same key already exists for this tenant.
Authorization
Bearer JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.
In: header
Path Parameters
The tenant identifier
Reference name (e.g. STRIPE_API_KEY). Unique per tenant.
Plaintext value. Encrypted at rest immediately; never persisted in cleartext anywhere. The new revision is created and published atomically when this value is supplied.
Sensitivity tier — defaults to Fruxon.Model.Encryption.Audit.CredentialSensitivity.Standard when omitted, matching the per-tier audit policy in Fruxon.Model.Encryption.Audit.ICredentialAuditLog. The user can upgrade by passing a stricter tier here or via Fruxon.Model.Secrets.UpdateTenantSecretRequest.
"UNSPECIFIED" | "STANDARD" | "PII" | "PHI" | "FINANCIAL" | "REGULATED"Optional publish note attached to the initial revision.
Response Body
curl -X POST "https://api.fruxon.com/v1/tenants/string/secrets" \ -H "Content-Type: application/json" \ -d '{ "key": "string", "value": "string" }'{
"id": "00000000-0000-0000-0000-000000000000",
"key": "string",
"description": "string",
"sensitivity": "STANDARD",
"publishedRevisionId": "00000000-0000-0000-0000-000000000000",
"publishedVersion": 0,
"valueHint": "string",
"createdBy": "string",
"createdAt": 0,
"modifiedAt": 0
}{
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string",
"property1": null,
"property2": null
}{
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string",
"property1": null,
"property2": null
}