Gatana Documentation
RoutesSecret storesStoreidTest

/secret-stores/{storeId}/test

Test fetching a secret from the store using a secret identifier (e.g., AWS ARN, GCP secret path)

POST
/secret-stores/{storeId}/test
AuthorizationBearer <token>

In: header

Path Parameters

storeId*string

Request Body

application/json

secretIdentifier*string

The secret identifier (e.g., AWS ARN, GCP secret path, Vault path, or Infisical secret name)

Length1 <= length

Response Body

application/json

curl -X POST "https://YOUR_ORG_ID.gatana.ai/api/v1/secret-stores/string/test" \  -H "Content-Type: application/json" \  -d '{    "secretIdentifier": "string"  }'
{
  "success": true,
  "message": "string",
  "value": "string"
}