List Accessible Secrets
Endpoint: GET /api/secrets
Retrieves all secret names that the user has permission to grant access to.
Response
Returns an array of secret names (strings) that are accessible to the invoked user.
Examples
List accessible secrets
Request
curl -X 'GET' \
'https://<YOUR-SERVER-URL>/api/secrets' \
-H 'accept: application/json' \
-H 'X-Authorization: <TOKEN>'
Response
[
"openai_api_key",
"github_token"
]