Adobe Campaign · Capability

Adobe Campaign Standard API — Subscriptions

Adobe Campaign Standard API — Subscriptions. 2 operations. Lead operation: Adobe Campaign Subscribe a Profile to a Service. Self-contained Naftiko capability covering one Adobe Campaign business surface.

Run with Naftiko Adobe CampaignSubscriptions

What You Can Do

POST
Subscribeprofile — Adobe Campaign Subscribe a Profile to a Service
/v1/profileandservices/profile/{pkey}/subscriptions
DELETE
Unsubscribeprofile — Adobe Campaign Unsubscribe a Profile from a Service
/v1/profileandservices/service/{servicepkey}/subscriptions/{profilepkey}

MCP Tools

adobe-campaign-subscribe-profile-service

Adobe Campaign Subscribe a Profile to a Service

adobe-campaign-unsubscribe-profile-service

Adobe Campaign Unsubscribe a Profile from a Service

idempotent

Capability Spec

standard-subscriptions.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Adobe Campaign Standard API — Subscriptions
  description: 'Adobe Campaign Standard API — Subscriptions. 2 operations. Lead operation: Adobe Campaign Subscribe a Profile
    to a Service. Self-contained Naftiko capability covering one Adobe Campaign business surface.'
  tags:
  - Adobe Campaign
  - Subscriptions
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ADOBE_CAMPAIGN_API_KEY: ADOBE_CAMPAIGN_API_KEY
capability:
  consumes:
  - type: http
    namespace: standard-subscriptions
    baseUri: https://mc.adobe.io/{ORGANIZATION}/campaign
    description: Adobe Campaign Standard API — Subscriptions business capability. Self-contained, no shared references.
    resources:
    - name: profileAndServices-profile-PKEY-subscriptions
      path: /profileAndServices/profile/{PKEY}/subscriptions
      operations:
      - name: subscribeprofile
        method: POST
        description: Adobe Campaign Subscribe a Profile to a Service
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: profileAndServices-service-servicePKEY-subscriptions-profilePKEY
      path: /profileAndServices/service/{servicePKEY}/subscriptions/{profilePKEY}
      operations:
      - name: unsubscribeprofile
        method: DELETE
        description: Adobe Campaign Unsubscribe a Profile from a Service
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: servicePKEY
          in: path
          type: string
          description: The PKEY of the service.
          required: true
        - name: profilePKEY
          in: path
          type: string
          description: The PKEY of the profile to unsubscribe.
          required: true
    authentication:
      type: bearer
      token: '{{env.ADOBE_CAMPAIGN_API_KEY}}'
  exposes:
  - type: rest
    namespace: standard-subscriptions-rest
    port: 8080
    description: REST adapter for Adobe Campaign Standard API — Subscriptions. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/profileandservices/profile/{pkey}/subscriptions
      name: profileandservices-profile-pkey-subscriptions
      description: REST surface for profileAndServices-profile-PKEY-subscriptions.
      operations:
      - method: POST
        name: subscribeprofile
        description: Adobe Campaign Subscribe a Profile to a Service
        call: standard-subscriptions.subscribeprofile
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/profileandservices/service/{servicepkey}/subscriptions/{profilepkey}
      name: profileandservices-service-servicepkey-subscriptions-profilepkey
      description: REST surface for profileAndServices-service-servicePKEY-subscriptions-profilePKEY.
      operations:
      - method: DELETE
        name: unsubscribeprofile
        description: Adobe Campaign Unsubscribe a Profile from a Service
        call: standard-subscriptions.unsubscribeprofile
        with:
          servicePKEY: rest.servicePKEY
          profilePKEY: rest.profilePKEY
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: standard-subscriptions-mcp
    port: 9090
    transport: http
    description: MCP adapter for Adobe Campaign Standard API — Subscriptions. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: adobe-campaign-subscribe-profile-service
      description: Adobe Campaign Subscribe a Profile to a Service
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: standard-subscriptions.subscribeprofile
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: adobe-campaign-unsubscribe-profile-service
      description: Adobe Campaign Unsubscribe a Profile from a Service
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: standard-subscriptions.unsubscribeprofile
      with:
        servicePKEY: tools.servicePKEY
        profilePKEY: tools.profilePKEY
      outputParameters:
      - type: object
        mapping: $.