Adobe Experience Cloud Decision Rules API

Operations for managing offer eligibility rules

Operations 2

GET /offer/decisionRules Adobe Journey Optimizer Adobe Experience Cloud List Decision Rules #
POST /offer/decisionRules Adobe Journey Optimizer Adobe Experience Cloud Create a Decision Rule #

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-decision-rules-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-decision-rules-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Adobe Experience Cloud Adobe Journey Optimizer Decision Rules 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: Decision Rules
  description: Operations for managing offer eligibility rules
paths:
  /offer/decisionRules:
    get:
      operationId: listDecisionRules
      summary: Adobe Journey Optimizer Adobe Experience Cloud List Decision Rules
      description: Returns a list of decision rules used to define offer eligibility criteria based on profile attributes and context data.
      tags:
      - Decision Rules
      parameters:
      - $ref: '#/components/parameters/sandboxHeader'
      responses:
        '200':
          description: A list of decision rules.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DecisionRuleList'
              examples:
                listDecisionRules200Example:
                  summary: Default listDecisionRules 200 response
                  x-microcks-default: true
                  value:
                    decisionRules:
                    - example
        '401':
          description: Authentication credentials are missing or invalid.
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    post:
      operationId: createDecisionRule
      summary: Adobe Journey Optimizer Adobe Experience Cloud Create a Decision Rule
      description: Creates a new decision rule using a PQL expression to define eligibility criteria for offer personalization.
      tags:
      - Decision Rules
      parameters:
      - $ref: '#/components/parameters/sandboxHeader'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DecisionRuleInput'
            examples:
              createDecisionRuleRequestExample:
                summary: Default createDecisionRule request
                x-microcks-default: true
                value:
                  name: Example Name
                  description: example
                  condition: example
      responses:
        '201':
          description: Decision rule created successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DecisionRule'
              examples:
                createDecisionRule201Example:
                  summary: Default createDecisionRule 201 response
                  x-microcks-default: true
                  value:
                    id: abc123
                    name: Example Name
                    description: example
                    condition: example
        '400':
          description: Invalid decision rule definition.
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    DecisionRuleInput:
      type: object
      required:
      - name
      - condition
      properties:
        name:
          type: string
        description:
          type: string
        condition:
          type: string
    DecisionRule:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        description:
          type: string
        condition:
          type: string
    DecisionRuleList:
      type: object
      properties:
        decisionRules:
          type: array
          items:
            $ref: '#/components/schemas/DecisionRule'
  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