curl --request GET \
--url https://api.ryvn.app/v1/orgs/{orgId}/secrets \
--header 'Authorization: Bearer <token>'{
"secrets": [
{
"name": "<string>",
"version": 123,
"keys": [
"<string>"
],
"updatedAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z"
}
]
}Retrieve all secrets belonging to an organization. This endpoint returns only the secret names and metadata, not the actual secret values for security reasons.
curl --request GET \
--url https://api.ryvn.app/v1/orgs/{orgId}/secrets \
--header 'Authorization: Bearer <token>'{
"secrets": [
{
"name": "<string>",
"version": 123,
"keys": [
"<string>"
],
"updatedAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The unique identifier of the organization
"123456789012345678"
List of organization secrets
Show child attributes
Was this page helpful?