Skip to main content
GET
/
v1
/
orgs
/
{orgId}
/
secrets
List organization secrets
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"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

orgId
string
required

The unique identifier of the organization

Example:

"123456789012345678"

Response

List of organization secrets

secrets
object[]
required