Skip to content

List Secret Assets

GET
/v1/portal/secret-assets
curl --request GET \
--url 'https://example.com/v1/portal/secret-assets?scope=project&project_slug=&environment=dev&customer_slug=&runtime_provider=&tenant_id='
scope
Scope
string
default: project
project_slug
Project Slug
string
""
environment
Environment
string
default: dev
customer_slug
Customer Slug
string
""
runtime_provider
Runtime Provider
string
""
tenant_id
Tenant Id
string
""
X-FractalOps-Tenant-Id
Any of:
string
x-pomerium-jwt-assertion
Any of:
string

Successful Response

Media typeapplication/json
PortalSecretAssetListOut
object
items
Items
Array<object>
PortalSecretAssetOut
object
key_name
Key Name
string
""
title
Title
string
""
description
Description
string
""
scope
Scope
string
default: project
project_slug
Project Slug
string
""
environment
Environment
string
""
customer_slug
Customer Slug
string
""
runtime_provider
Runtime Provider
string
""
owner_team
Owner Team
string
""
status
Status
string
default: unknown
rotation_strategy
Rotation Strategy
string
default: manual
reload_strategy
Reload Strategy
string
default: next_start
validation_policy
Validation Policy
Array<string>
lineage_refs
Lineage Refs
Array<string>
impact_targets
Impact Targets
Array<object>
PortalSecretAssetImpactOut
object
target_type
Target Type
string
""
target_ref
Target Ref
string
""
reason
Reason
string
""
last_changed_by
Last Changed By
string
""
last_changed_at
Last Changed At
string
""
storage_label
Storage Label
string
default: FractalOps managed secret
scopes
Scopes
Array<string>
source_of_truth
Source Of Truth
string
default: fractalops-lineage+openbao
Example
{
"items": [
{
"key_name": "",
"title": "",
"description": "",
"scope": "project",
"project_slug": "",
"environment": "",
"customer_slug": "",
"runtime_provider": "",
"owner_team": "",
"status": "unknown",
"rotation_strategy": "manual",
"reload_strategy": "next_start",
"impact_targets": [
{
"target_type": "",
"target_ref": "",
"reason": ""
}
],
"last_changed_by": "",
"last_changed_at": "",
"storage_label": "FractalOps managed secret"
}
],
"source_of_truth": "fractalops-lineage+openbao"
}

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
input
Input
ctx
Context
object
Examplegenerated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example",
"input": "example",
"ctx": {}
}
]
}