Adobe Experience Cloud Campaigns API

Operations for managing marketing campaigns

Operations 4

GET /campaign/campaigns Adobe Journey Optimizer Adobe Experience Cloud List Campaigns #
POST /campaign/campaigns Adobe Journey Optimizer Adobe Experience Cloud Create a Campaign #
GET /campaign/campaigns/{campaignId} Adobe Journey Optimizer Adobe Experience Cloud Get a Campaign #
DELETE /campaign/campaigns/{campaignId} Adobe Journey Optimizer Adobe Experience Cloud Delete a Campaign #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/adobe-experience-cloud-campaigns-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

adobe-experience-cloud-campaigns-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Adobe Experience Cloud Adobe Journey Optimizer Campaigns API
  description: The Adobe Journey Optimizer API enables programmatic management of customer journeys, messages, campaigns, offers, and content across channels including email, push, SMS, and in-app. It provides endpoints for creating and managing journey orchestrations, configuring offer decisioning, managing content templates, and accessing journey execution data.
  version: 1.0.0
  contact:
    name: Adobe Developer
    url: https://developer.adobe.com/journey-optimizer-apis/
  license:
    name: Proprietary
    url: https://www.adobe.com/legal/terms.html
servers:
- url: https://platform.adobe.io
  description: Adobe Journey Optimizer Production API
security:
- bearerAuth: []
- apiKey: []
tags:
- name: Campaigns
  description: Operations for managing marketing campaigns
paths:
  /campaign/campaigns:
    get:
      operationId: listCampaigns
      summary: Adobe Journey Optimizer Adobe Experience Cloud List Campaigns
      description: Returns a paginated list of marketing campaigns. Each campaign includes its ID, name, channel, status, and schedule.
      tags:
      - Campaigns
      parameters:
      - $ref: '#/components/parameters/sandboxHeader'
      - name: limit
        in: query
        schema:
          type: integer
          default: 20
      responses:
        '200':
          description: A paginated list of campaigns.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CampaignList'
              examples:
                listCampaigns200Example:
                  summary: Default listCampaigns 200 response
                  x-microcks-default: true
                  value:
                    campaigns:
                    - example
                    totalCount: 1
        '401':
          description: Authentication credentials are missing or invalid.
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    post:
      operationId: createCampaign
      summary: Adobe Journey Optimizer Adobe Experience Cloud Create a Campaign
      description: Creates a new marketing campaign with the specified channel, audience, content, and schedule configuration.
      tags:
      - Campaigns
      parameters:
      - $ref: '#/components/parameters/sandboxHeader'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CampaignInput'
            examples:
              createCampaignRequestExample:
                summary: Default createCampaign request
                x-microcks-default: true
                value:
                  name: Example Name
                  description: example
                  channel: email
                  audienceId: abc123
                  schedule: {}
      responses:
        '201':
          description: Campaign created successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Campaign'
              examples:
                createCampaign201Example:
                  summary: Default createCampaign 201 response
                  x-microcks-default: true
                  value:
                    id: abc123
                    name: Example Name
                    description: example
                    channel: email
                    status: draft
                    schedule:
                      startDate: '2025-03-15T14:30:00Z'
                      endDate: '2025-03-15T14:30:00Z'
        '400':
          description: Invalid campaign definition.
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /campaign/campaigns/{campaignId}:
    get:
      operationId: getCampaign
      summary: Adobe Journey Optimizer Adobe Experience Cloud Get a Campaign
      description: Retrieves the full definition of a marketing campaign by its ID.
      tags:
      - Campaigns
      parameters:
      - $ref: '#/components/parameters/sandboxHeader'
      - name: campaignId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Campaign details returned successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Campaign'
              examples:
                getCampaign200Example:
                  summary: Default getCampaign 200 response
                  x-microcks-default: true
                  value:
                    id: abc123
                    name: Example Name
                    description: example
                    channel: email
                    status: draft
                    schedule:
                      startDate: '2025-03-15T14:30:00Z'
                      endDate: '2025-03-15T14:30:00Z'
        '404':
          description: Campaign not found.
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    delete:
      operationId: deleteCampaign
      summary: Adobe Journey Optimizer Adobe Experience Cloud Delete a Campaign
      description: Deletes a campaign that is in draft or completed status.
      tags:
      - Campaigns
      parameters:
      - $ref: '#/components/parameters/sandboxHeader'
      - name: campaignId
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Campaign deleted successfully.
        '404':
          description: Campaign not found.
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    Campaign:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        description:
          type: string
        channel:
          type: string
          enum:
          - email
          - push
          - sms
          - inApp
        status:
          type: string
          enum:
          - draft
          - scheduled
          - live
          - completed
        schedule:
          type: object
          properties:
            startDate:
              type: string
              format: date-time
            endDate:
              type: string
              format: date-time
    CampaignList:
      type: object
      properties:
        campaigns:
          type: array
          items:
            $ref: '#/components/schemas/Campaign'
        totalCount:
          type: integer
    CampaignInput:
      type: object
      required:
      - name
      - channel
      properties:
        name:
          type: string
        description:
          type: string
        channel:
          type: string
          enum:
          - email
          - push
          - sms
          - inApp
        audienceId:
          type: string
        schedule:
          type: object
  parameters:
    sandboxHeader:
      name: x-sandbox-name
      in: header
      required: true
      description: The sandbox name.
      schema:
        type: string
        default: prod
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    apiKey:
      type: apiKey
      in: header
      name: x-api-key