Get the secrets of an organization

GET /organizations/{org-slug}/secrets

Get the secrets of an organization

Path parameters

Responses

GET /organizations/{org-slug}/secrets
curl \
 --request GET 'https://api.bitrise.io/v0.1/organizations/{org-slug}/secrets' \
 --header "Authorization: $API_KEY"
Response examples (200)
{
  "secrets": [
    {
      "expand_in_step_inputs": true,
      "id": "string",
      "is_exposed_for_pull_requests": true,
      "is_protected": true,
      "name": "string",
      "scope": "string"
    }
  ]
}
Response examples (401)
{
  "error_msg": "string"
}
Response examples (403)
{
  "error_msg": "string"
}
Response examples (404)
{
  "error_msg": "string"
}