Skip to main content
GET
/
api
/
orchestration
/
fabric
/
{fabricId}
/
secret
List secrets per fabric
curl --request GET \
  --url https://app.prophecy.io/api/orchestration/fabric/{fabricId}/secret \
  --header 'X-AUTH-TOKEN: <x-auth-token>'
{
  "success": true,
  "data": {
    "secrets": [
      {
        "kind": "prophecy",
        "subKind": "text",
        "properties": {
          "id": "4656",
          "name": "token_1"
        },
        "type": "secret"
      },
      {
        "kind": "prophecy",
        "subKind": "text",
        "properties": {
          "id": "4650",
          "name": "service_account_1"
        },
        "type": "secret"
      }
    ]
  }
}

Headers

X-AUTH-TOKEN
string
required

Prophecy authentication token. Required for all API requests.

Path Parameters

fabricId
string
required

The unique ID of the parent fabric

Response

200 - application/json

List of fabric secrets

success
enum<boolean>
required

Indicates the request was successful.

Available options:
true,
false
data
object

Response data containing the list of secrets.