SecretsOrg Secrets

List org secrets

GET
/v1/orgs/{org}/secrets
AuthorizationBearer <token>

API key starting with tektona_. Create one at app-dev.tektona.ai under API Keys.

In: header

Path Parameters

org*string

Query Parameters

cursor?string

Opaque pagination cursor from a previous response

limit?integer

Maximum number of items to return (1–100)

Formatint32
Range1 <= value <= 100
Default20

Response Body

application/json

application/problem+json

curl -X GET "https://example.com/v1/orgs/string/secrets"
{  "items": [    {      "created_at": "string",      "id": "string",      "key": "string",      "owner_user_id": "string",      "scope": "org",      "type": "generic",      "updated_at": "string"    }  ],  "pagination": {    "has_more": true,    "next_cursor": "string",    "total_count": 0  }}