Adobe Launch · Capability

Adobe Launch Reactor API — Secrets

Adobe Launch Reactor API — Secrets. 5 operations. Lead operation: List Secrets for a Property. Self-contained Naftiko capability covering one Adobe Launch business surface.

Run with Naftiko Adobe LaunchSecrets

What You Can Do

GET
Listsecretsforproperty — List Secrets for a Property
/v1/properties/{propertyid}/secrets
POST
Createsecret — Create a Secret
/v1/properties/{propertyid}/secrets
GET
Getsecret — Retrieve a Secret
/v1/secrets/{secretid}
PATCH
Updatesecret — Update a Secret
/v1/secrets/{secretid}
DELETE
Deletesecret — Delete a Secret
/v1/secrets/{secretid}

MCP Tools

list-secrets-property

List Secrets for a Property

read-only idempotent
create-secret

Create a Secret

retrieve-secret

Retrieve a Secret

read-only idempotent
update-secret

Update a Secret

idempotent
delete-secret

Delete a Secret

idempotent

Capability Spec

reactor-secrets.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Adobe Launch Reactor API — Secrets
  description: 'Adobe Launch Reactor API — Secrets. 5 operations. Lead operation: List Secrets for a Property. Self-contained
    Naftiko capability covering one Adobe Launch business surface.'
  tags:
  - Adobe Launch
  - Secrets
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ADOBE_LAUNCH_API_KEY: ADOBE_LAUNCH_API_KEY
capability:
  consumes:
  - type: http
    namespace: reactor-secrets
    baseUri: https://reactor.adobe.io
    description: Adobe Launch Reactor API — Secrets business capability. Self-contained, no shared references.
    resources:
    - name: properties-propertyId-secrets
      path: /properties/{propertyId}/secrets
      operations:
      - name: listsecretsforproperty
        method: GET
        description: List Secrets for a Property
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createsecret
        method: POST
        description: Create a Secret
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: secrets-secretId
      path: /secrets/{secretId}
      operations:
      - name: getsecret
        method: GET
        description: Retrieve a Secret
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatesecret
        method: PATCH
        description: Update a Secret
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletesecret
        method: DELETE
        description: Delete a Secret
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.ADOBE_LAUNCH_API_KEY}}'
  exposes:
  - type: rest
    namespace: reactor-secrets-rest
    port: 8080
    description: REST adapter for Adobe Launch Reactor API — Secrets. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/properties/{propertyid}/secrets
      name: properties-propertyid-secrets
      description: REST surface for properties-propertyId-secrets.
      operations:
      - method: GET
        name: listsecretsforproperty
        description: List Secrets for a Property
        call: reactor-secrets.listsecretsforproperty
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createsecret
        description: Create a Secret
        call: reactor-secrets.createsecret
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/secrets/{secretid}
      name: secrets-secretid
      description: REST surface for secrets-secretId.
      operations:
      - method: GET
        name: getsecret
        description: Retrieve a Secret
        call: reactor-secrets.getsecret
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updatesecret
        description: Update a Secret
        call: reactor-secrets.updatesecret
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletesecret
        description: Delete a Secret
        call: reactor-secrets.deletesecret
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: reactor-secrets-mcp
    port: 9090
    transport: http
    description: MCP adapter for Adobe Launch Reactor API — Secrets. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-secrets-property
      description: List Secrets for a Property
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: reactor-secrets.listsecretsforproperty
      outputParameters:
      - type: object
        mapping: $.
    - name: create-secret
      description: Create a Secret
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: reactor-secrets.createsecret
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieve-secret
      description: Retrieve a Secret
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: reactor-secrets.getsecret
      outputParameters:
      - type: object
        mapping: $.
    - name: update-secret
      description: Update a Secret
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: reactor-secrets.updatesecret
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-secret
      description: Delete a Secret
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: reactor-secrets.deletesecret
      outputParameters:
      - type: object
        mapping: $.