Adobe Launch · Arazzo Workflow

Adobe Launch Add a Component to an Existing Rule

Version 1.0.0

Verify a rule exists, add a new rule component to it, and list the rule's components to confirm.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub Data CollectionEdge NetworkEvent ForwardingMarketing TechnologyTag ManagementArazzoWorkflows

Provider

adobe-launch

Workflows

add-rule-component
Resolve a rule's property, add a component to the rule, then verify by listing.
Confirms a rule, resolves its owning property, creates a rule component tied to the rule, and lists the rule's components to verify the addition.
4 steps inputs: accessToken, apiKey, componentName, delegateDescriptorId, extensionId, imsOrgId, ruleId outputs: componentCount, propertyId, ruleComponentId
1
getRule
Confirm the rule exists before modifying it.
2
getPropertyForRule
Resolve the property that owns the rule (components are created under the property).
3
createRuleComponent
Create a rule component linked to the rule and its extension.
4
listComponents
List the rule's components to verify the new component is present.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Adobe Launch Add a Component to an Existing Rule
  summary: Verify a rule exists, add a new rule component to it, and list the rule's components to confirm.
  description: >-
    Extends an existing Adobe Experience Platform Launch (Tags) rule with an
    additional component. The workflow confirms the rule exists, resolves its
    parent property, creates a new rule component linked to the rule and its
    extension, and then lists the rule's components to confirm the new one is
    present. Rule components must be created under the property that owns the
    rule, so the property id is resolved from the rule first. Each request is
    written inline using the JSON:API document shapes these endpoints require.
  version: 1.0.0
sourceDescriptions:
- name: ruleComponentsApi
  url: ../openapi/adobe-launch-rule-components-api-openapi.yml
  type: openapi
- name: rulesApi
  url: ../openapi/adobe-launch-rules-api-openapi.yml
  type: openapi
workflows:
- workflowId: add-rule-component
  summary: Resolve a rule's property, add a component to the rule, then verify by listing.
  description: >-
    Confirms a rule, resolves its owning property, creates a rule component tied
    to the rule, and lists the rule's components to verify the addition.
  inputs:
    type: object
    required:
    - accessToken
    - apiKey
    - imsOrgId
    - ruleId
    - componentName
    - delegateDescriptorId
    - extensionId
    properties:
      accessToken:
        type: string
        description: OAuth 2.0 Server-to-Server bearer access token from Adobe Developer Console.
      apiKey:
        type: string
        description: Client ID credential sent as the x-api-key header.
      imsOrgId:
        type: string
        description: Adobe Organization ID sent as the x-gw-ims-org-id header.
      ruleId:
        type: string
        description: Id of the existing rule to add a component to.
      componentName:
        type: string
        description: Human-readable name for the new rule component.
      delegateDescriptorId:
        type: string
        description: Delegate descriptor id identifying the event/condition/action type.
      extensionId:
        type: string
        description: Id of the extension that provides this rule component.
  steps:
  - stepId: getRule
    description: Confirm the rule exists before modifying it.
    operationId: getEventForwardingRule
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: x-api-key
      in: header
      value: $inputs.apiKey
    - name: x-gw-ims-org-id
      in: header
      value: $inputs.imsOrgId
    - name: ruleId
      in: path
      value: $inputs.ruleId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      ruleName: $response.body#/data/attributes/name
  - stepId: getPropertyForRule
    description: Resolve the property that owns the rule (components are created under the property).
    operationId: getPropertyForRule
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: x-api-key
      in: header
      value: $inputs.apiKey
    - name: x-gw-ims-org-id
      in: header
      value: $inputs.imsOrgId
    - name: ruleId
      in: path
      value: $inputs.ruleId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      propertyId: $response.body#/data/id
  - stepId: createRuleComponent
    description: Create a rule component linked to the rule and its extension.
    operationId: createRuleComponent
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: x-api-key
      in: header
      value: $inputs.apiKey
    - name: x-gw-ims-org-id
      in: header
      value: $inputs.imsOrgId
    - name: propertyId
      in: path
      value: $steps.getPropertyForRule.outputs.propertyId
    requestBody:
      contentType: application/vnd.api+json
      payload:
        data:
          type: rule_components
          attributes:
            name: $inputs.componentName
            delegate_descriptor_id: $inputs.delegateDescriptorId
            order: 1
          relationships:
            rules:
              data:
              - id: $inputs.ruleId
                type: rules
            extension:
              data:
                id: $inputs.extensionId
                type: extensions
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      ruleComponentId: $response.body#/data/id
  - stepId: listComponents
    description: List the rule's components to verify the new component is present.
    operationId: listRuleComponentsForRule
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: x-api-key
      in: header
      value: $inputs.apiKey
    - name: x-gw-ims-org-id
      in: header
      value: $inputs.imsOrgId
    - name: ruleId
      in: path
      value: $inputs.ruleId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      componentCount: $response.body#/meta/pagination/total_count
  outputs:
    propertyId: $steps.getPropertyForRule.outputs.propertyId
    ruleComponentId: $steps.createRuleComponent.outputs.ruleComponentId
    componentCount: $steps.listComponents.outputs.componentCount

Work with this as data

Every workflow 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 arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • 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 workflow
curl "https://apis.io/api/v1/arazzo/adobe-launch-add-rule-component-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?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.