Aghanim LiveOps API

The LiveOps API from Aghanim — 5 operation(s) for liveops.

Operations 10

GET /v1/campaigns Get Campaigns #
POST /v1/campaigns Create Campaign #
PATCH /v1/campaigns Bulk Update Campaigns #
GET /v1/campaigns/by_ids Get Campaigns By Ids #
GET /v1/campaigns/{campaign_id} Get Campaign #
PUT /v1/campaigns/{campaign_id} Update Campaign #
DELETE /v1/campaigns/{campaign_id} Delete Campaign #
GET /v1/campaigns/{campaign_id}/graph Get Campaign Graph #
PUT /v1/campaigns/{campaign_id}/graph Update Campaign Graph #
POST /v1/events Trigger 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/aghanim-liveops-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

aghanim-liveops-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Aghanim Server-to-Server Achievements Live Ops API
  description: "The Aghanim Server-to-Server API is designed for **backend server integrations only**. Use this API when you need to automate game hub updates from your server-side applications.\n\n\n## OpenAPI Specification\n\nYou can download the [OpenAPI](https://www.openapis.org/) specification for this API at the following link:\n[docs.aghanim.com/openapi.json](https://docs.aghanim.com/openapi.json).\n\n## Changelog\n\nSee the [S2S API Changelog](https://docs.aghanim.com/s2s-api/changelog/) for a history of changes to this API.\n\n## Authentication\n\nAghanim supports two methods of authentication: **Bearer token** and **Basic authentication**.\n\nTo authenticate, you will need your API key, which can be retrieved from\nthe Aghanim Dashboard → [**Game → Integration → API Keys**](https://dashboard.aghanim.com/go/integration/api-keys).\n\n**⚠️ Security Notice**: The S2S API key is **secret** and must be kept secure on your server. Never expose the S2S API key in client-side code, mobile apps, or any public-facing applications.\n\n### Bearer Token Authentication\n\nUse the Bearer method by including an `Authorization` header with the word `Bearer`\nfollowed by your API key. The `Authorization` header in your HTTP request should look like this: `Authorization: Bearer API_KEY`\n\n### Basic Authentication\n\nAlternatively, you can authenticate using Basic authentication. Your API key is used\nas the `username`, and the `password` should be left empty. Send an `Authorization`\nheader with the word `Basic` followed by a base64-encoded string\nin the format `API_KEY:` (note the colon at the end).\n\nThe `Authorization` header should look like this: `Authorization: Basic ZGVtbzpwQDU1dzByZA==`\n\n## Error Codes\n\nAghanim employs standard HTTP response codes to denote the success or failure of an API request.\nBelow is a table detailing error codes.\n\n| Code | Description |\n| ---- | ----------- |\n| 200  | OK          |\n| 400  | Bad request |\n| 401  | Not authenticated |\n| 403  | Not authorized |\n| 404  | Resource not found |\n| 409  | Conflict. Request conflicts with current state of resource |\n| 422  | Validation error |\n| 429  | Too many requests. Rate limit exceeded |\n| 503  | Server unavailable |\n\n### Generic error schema\n\n```json\n{\n  \"detail\": \"string\"\n}\n```\n\n### Validation error schema\n\n```json\n{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"string\",\n        0\n      ],\n      \"msg\": \"string\",\n      \"type\": \"string\"\n    }\n  ]\n}\n```\n\n## Rate Limits\n\nThe Aghanim API has rate limiting in place to avoid overloading and to ensure it remains stable.\nThe allowable rate of requests is capped at 1,000 per minute for every game.\nGame developers who exceed this limit will receive a 429 error code.\n\nTo increase the rate limit, please contact us via [integration@aghanim.com](mailto:integration@aghanim.com).\n\n## Pagination\n\nIn the Aghanim API, pagination is managed through the use of the `limit` and `offset` query parameters.\nThese parameters allow to fine-tune your data retrieval requests by specifying:\n\n- `limit`: the number of records to be returned in a single request.\n- `offset`: indicates the number of records to skip from the start of the dataset.\n"
  contact:
    name: Aghanim
    email: integration@aghanim.com
  version: 2026.07.14
servers:
- url: https://api.aghanim.com/s2s
  description: Production
tags:
- name: LiveOps
paths:
  /v1/campaigns:
    get:
      tags:
      - LiveOps
      summary: Get Campaigns
      operationId: get_campaigns
      security:
      - HTTPBearer: []
      parameters:
      - name: resource_state
        in: query
        required: false
        schema:
          $ref: '#/components/schemas/ResourceState'
      - name: enabled
        in: query
        required: false
        schema:
          title: Enabled
          type: boolean
      - name: type
        in: query
        required: false
        schema:
          title: Type
          anyOf:
          - $ref: '#/components/schemas/CampaignEventType'
          - type: string
      - name: limit
        in: query
        required: false
        schema:
          title: Limit
          description: A limit on the number of objects to be returned
          default: 10
          type: integer
        description: A limit on the number of objects to be returned
      - name: offset
        in: query
        required: false
        schema:
          title: Offset
          description: The number of objects to skip
          type: integer
        description: The number of objects to skip
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                title: Response Get Campaigns
                type: array
                items:
                  $ref: '#/components/schemas/Campaign'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    post:
      tags:
      - LiveOps
      summary: Create Campaign
      operationId: create_campaign
      security:
      - HTTPBearer: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              title: Create
              $ref: '#/components/schemas/CampaignCreate'
      responses:
        '201':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Campaign'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    patch:
      tags:
      - LiveOps
      summary: Bulk Update Campaigns
      description: Updates multiple campaigns.
      operationId: bulk_update_campaigns
      security:
      - HTTPBearer: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              title: Bulk Update
              type: array
              items:
                $ref: '#/components/schemas/BulkCampaignUpdate'
      responses:
        '204':
          description: Successful Response
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /v1/campaigns/by_ids:
    get:
      tags:
      - LiveOps
      summary: Get Campaigns By Ids
      operationId: get_campaigns_by_ids
      security:
      - HTTPBearer: []
      parameters:
      - name: ids
        in: query
        required: true
        schema:
          title: Ids
          description: Comma separated list of ids
          type: string
        description: Comma separated list of ids
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                title: Response Get Campaigns By Ids
                type: array
                items:
                  $ref: '#/components/schemas/Campaign'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /v1/campaigns/{campaign_id}:
    get:
      tags:
      - LiveOps
      summary: Get Campaign
      operationId: get_campaign
      security:
      - HTTPBearer: []
      parameters:
      - name: campaign_id
        in: path
        required: true
        schema:
          title: Campaign Id
          type: string
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Campaign'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    put:
      tags:
      - LiveOps
      summary: Update Campaign
      operationId: update_campaign
      security:
      - HTTPBearer: []
      parameters:
      - name: campaign_id
        in: path
        required: true
        schema:
          title: Campaign Id
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              title: Update
              $ref: '#/components/schemas/CampaignUpdate'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Campaign'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    delete:
      tags:
      - LiveOps
      summary: Delete Campaign
      operationId: delete_campaign
      security:
      - HTTPBearer: []
      parameters:
      - name: campaign_id
        in: path
        required: true
        schema:
          title: Campaign Id
          type: string
      responses:
        '204':
          description: Successful Response
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /v1/campaigns/{campaign_id}/graph:
    get:
      tags:
      - LiveOps
      summary: Get Campaign Graph
      operationId: get_campaign_graph
      security:
      - HTTPBearer: []
      parameters:
      - name: campaign_id
        in: path
        required: true
        schema:
          title: Campaign Id
          type: string
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GraphRoot'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    put:
      tags:
      - LiveOps
      summary: Update Campaign Graph
      operationId: update_campaign_graph
      security:
      - HTTPBearer: []
      parameters:
      - name: campaign_id
        in: path
        required: true
        schema:
          title: Campaign Id
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              title: Update
              $ref: '#/components/schemas/GraphRoot'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Campaign'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /v1/events:
    post:
      tags:
      - LiveOps
      summary: Trigger Campaign
      description: Starts a [LiveOps campaign](https://dashboard.aghanim.com/go/campaigns/table) triggered by an in-game event.
      operationId: trigger_campaign
      requestBody:
        content:
          application/json:
            schema:
              title: Event
              $ref: '#/components/schemas/Event'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - HTTPBearer: []
components:
  schemas:
    RedeemCouponBlock:
      properties:
        block:
          type: string
          enum:
          - RedeemCouponBlock
          title: Block
          default: RedeemCouponBlock
        id:
          type: string
          title: Id
        name:
          type: string
          title: Name
        start_at:
          type: integer
          title: Start At
        end_at:
          type: integer
          title: End At
        variant:
          default: default
          $ref: '#/components/schemas/RedeemCouponBlockVariant'
        title:
          type: string
          title: Title
        description:
          type: string
          title: Description
        button_text:
          type: string
          title: Button Text
        background_image_url:
          type: string
          title: Background Image Url
      type: object
      title: RedeemCouponBlock
    CommunicationItem:
      properties:
        item_id:
          type: string
          title: Item Id
        store_item_id:
          type: string
          title: Store Item Id
      type: object
      required:
      - item_id
      - store_item_id
      title: CommunicationItem
    RollingOfferBlock:
      properties:
        block:
          type: string
          enum:
          - RollingOfferBlock
          title: Block
          default: RollingOfferBlock
        id:
          type: string
          title: Id
        name:
          type: string
          title: Name
        start_at:
          type: integer
          title: Start At
        end_at:
          type: integer
          title: End At
        rolling_offer_id:
          type: string
          title: Rolling Offer Id
        max_items_count:
          type: integer
          title: Max Items Count
        scroll_disabled:
          type: boolean
          title: Scroll Disabled
        variant:
          default: slider
          $ref: '#/components/schemas/RollingOfferBlockVariant'
      type: object
      required:
      - rolling_offer_id
      title: RollingOfferBlock
    SetAttributeValue:
      properties:
        name:
          type: string
          title: Name
        value:
          title: Value
        type:
          $ref: '#/components/schemas/AttributeValueType'
        add_values_to_list:
          type: boolean
          title: Add Values To List
      type: object
      required:
      - name
      - type
      title: SetAttributeValue
    DailyRewardsBlockVariant:
      type: string
      enum:
      - expanded
      - compact
      - compact_mobile
      title: DailyRewardsBlockVariant
      description: An enumeration.
    ItemAddNode:
      properties:
        id:
          type: string
          title: Id
        next_node_id:
          type: string
          title: Next Node Id
        title:
          type: string
          title: Title
        x:
          type: integer
          title: X
        y:
          type: integer
          title: Y
        result:
          type: string
          title: Result
        model_type:
          type: string
          enum:
          - ItemAddNode
          title: Model Type
          default: ItemAddNode
        break_on_error:
          type: boolean
          title: Break On Error
        description:
          type: string
          title: Description
        items:
          items:
            $ref: '#/components/schemas/ItemAddData'
          type: array
          minItems: 1
          title: Items
        show_reward_popup:
          type: boolean
          title: Show Reward Popup
      type: object
      required:
      - id
      - x
      - y
      - items
      title: ItemAddNode
    RemoveFromSegmentNode:
      properties:
        id:
          type: string
          title: Id
        next_node_id:
          type: string
          title: Next Node Id
        title:
          type: string
          title: Title
        x:
          type: integer
          title: X
        y:
          type: integer
          title: Y
        result:
          type: string
          title: Result
        model_type:
          type: string
          enum:
          - RemoveFromSegmentNode
          title: Model Type
          default: RemoveFromSegmentNode
        break_on_error:
          type: boolean
          title: Break On Error
        description:
          type: string
          title: Description
        segment_slug:
          type: string
          title: Segment Slug
      type: object
      required:
      - id
      - x
      - y
      title: RemoveFromSegmentNode
    TwitchBlock:
      properties:
        block:
          type: string
          enum:
          - TwitchBlock
          title: Block
          default: TwitchBlock
        id:
          type: string
          title: Id
        name:
          type: string
          title: Name
        start_at:
          type: integer
          title: Start At
        end_at:
          type: integer
          title: End At
        video:
          $ref: '#/components/schemas/VideoBlockSettings'
      type: object
      required:
      - video
      title: TwitchBlock
    CouponPlayerBondType:
      type: string
      enum:
      - all_users
      - current_user
      - except_current_user
      title: CouponPlayerBondType
      description: An enumeration.
    StoreBlock:
      properties:
        block:
          type: string
          enum:
          - StoreBlock
          title: Block
          default: StoreBlock
        id:
          type: string
          title: Id
        name:
          type: string
          title: Name
        start_at:
          type: integer
          title: Start At
        end_at:
          type: integer
          title: End At
        store_id:
          type: string
          title: Store Id
        category_id:
          type: string
          title: Category Id
        featured_category_id:
          type: string
          title: Featured Category Id
        show_sticky_categories:
          type: boolean
          title: Show Sticky Categories
      type: object
      title: StoreBlock
    SplitInfo:
      properties:
        title:
          type: string
          title: Title
          default: ''
        value:
          type: integer
          title: Value
        next_node_id:
          type: string
          title: Next Node Id
      type: object
      required:
      - value
      title: SplitInfo
    TwitchData:
      properties:
        channel:
          type: string
          title: Channel
          description: The channel of the Twitch video
      type: object
      required:
      - channel
      title: TwitchData
    Token:
      properties:
        type:
          $ref: '#/components/schemas/TokenType'
        value:
          title: Value
      type: object
      required:
      - type
      title: Token
    SetAttributeValuesNode:
      properties:
        id:
          type: string
          title: Id
        next_node_id:
          type: string
          title: Next Node Id
        title:
          type: string
          title: Title
        x:
          type: integer
          title: X
        y:
          type: integer
          title: Y
        result:
          type: string
          title: Result
        model_type:
          type: string
          enum:
          - SetAttributeValuesNode
          title: Model Type
          default: SetAttributeValuesNode
        break_on_error:
          type: boolean
          title: Break On Error
        description:
          type: string
          title: Description
        values:
          type: object
          title: Values
        values_from_variables:
          additionalProperties:
            type: string
          type: object
          title: Values From Variables
        new_values:
          items:
            $ref: '#/components/schemas/SetAttributeValue'
          type: array
          title: New Values
      type: object
      required:
      - id
      - x
      - y
      - values
      title: SetAttributeValuesNode
    LoyaltyProgramBlockVariant:
      type: string
      enum:
      - standard
      - expanded
      - compact
      title: LoyaltyProgramBlockVariant
      description: An enumeration.
    FeaturedPageBlock:
      properties:
        block:
          type: string
          enum:
          - FeaturedPageBlock
          title: Block
          default: FeaturedPageBlock
        id:
          type: string
          title: Id
        name:
          type: string
          title: Name
        start_at:
          type: integer
          title: Start At
        end_at:
          type: integer
          title: End At
        page_id:
          type: string
          title: Page Id
        is_collection:
          type: boolean
          title: Is Collection
          default: false
        rotation_period:
          type: integer
          title: Rotation Period
        hide_date:
          type: boolean
          title: Hide Date
      type: object
      required:
      - page_id
      title: FeaturedPageBlock
    VideoBlockSettings:
      properties:
        title:
          type: string
          title: Title
        description:
          type: string
          title: Description
        order_id:
          type: integer
          title: Order Id
          default: 0
        thumbnail_url:
          type: string
          maxLength: 65536
          minLength: 1
          format: uri
          title: Thumbnail Url
        show_thumbnail:
          type: boolean
          title: Show Thumbnail
          default: true
        auto_play:
          type: boolean
          title: Auto Play
        platform:
          $ref: '#/components/schemas/VideoPlatform'
        data:
          anyOf:
          - $ref: '#/components/schemas/YoutubeData'
          - $ref: '#/components/schemas/TwitchData'
          title: Data
      type: object
      required:
      - title
      - description
      - platform
      - data
      title: VideoBlockSettings
    VerifyPlayerNode:
      properties:
        id:
          type: string
          title: Id
        next_node_id:
          type: string
          title: Next Node Id
        title:
          type: string
          title: Title
        x:
          type: integer
          title: X
        y:
          type: integer
          title: Y
        result:
          type: string
          title: Result
        model_type:
          type: string
          enum:
          - VerifyPlayerNode
          title: Model Type
          default: VerifyPlayerNode
        break_on_error:
          type: boolean
          title: Break On Error
        description:
          type: string
          title: Description
      type: object
      required:
      - id
      - x
      - y
      title: VerifyPlayerNode
    ItemBonus:
      properties:
        id:
          type: string
          title: Id
          description: The ID of the bonus item that will be given to the user when they purchase this item.
        sku:
          type: string
          title: SKU
        quantity_fixed:
          type: integer
          title: Quantity Fixed
          description: The fixed quantity of the bonus item
          nullable: true
        quantity_percent:
          type: integer
          minimum: 0.0
          title: Quantity Percent
          description: The user will receive a quantity equivalent to the set percentage of the price_after_discount_usd (in cents) of the purchased item.
          nullable: true
      type: object
      required:
      - id
      title: ItemBonus
    CarouselNewsBlock:
      properties:
        block:
          type: string
          enum:
          - CarouselNewsBlock
          title: Block
          default: CarouselNewsBlock
        id:
          type: string
          title: Id
        name:
          type: string
          title: Name
        start_at:
          type: integer
          title: Start At
        end_at:
          type: integer
          title: End At
        delay:
          type: integer
          title: Delay
        loop:
          type: boolean
          title: Loop
        autoplay:
          type: boolean
          title: Autoplay
        show_dots:
          type: boolean
          title: Show Dots
      type: object
      title: CarouselNewsBlock
    AttributeValueType:
      type: string
      enum:
      - custom_attribute
      - event_attribute
      - constant
      - variable
      title: AttributeValueType
      description: An enumeration.
    DailyRewardsBlock:
      properties:
        block:
          type: string
          enum:
          - DailyRewardsBlock
          title: Block
          default: DailyRewardsBlock
        id:
          type: string
          title: Id
        name:
          type: string
          title: Name
        start_at:
          type: integer
          title: Start At
        end_at:
          type: integer
          title: End At
        variant:
          default: expanded
          $ref: '#/components/schemas/DailyRewardsBlockVariant'
        non_compliance:
          type: boolean
          title: Non Compliance
          default: false
      type: object
      title: DailyRewardsBlock
    ItemBonusSettings:
      properties:
        items:
          items:
            $ref: '#/components/schemas/ItemBonus'
          type: array
          title: Items
        start_at:
          type: integer
          title: Start At
        end_at:
          type: integer
          title: End At
      type: object
      required:
      - items
      title: ItemBonusSettings
    LimitedStoreBannerBlock:
      properties:
        block:
          type: string
          enum:
          - LimitedStoreBannerBlock
          title: Block
          default: LimitedStoreBannerBlock
        id:
          type: string
          title: Id
        name:
          type: string
          title: Name
        start_at:
          type: integer
          title: Start At
        end_at:
          type: integer
          title: End At
        title:
          type: string
          title: Title
        description:
          type: string
          title: Description
        button:
          type: string
          title: Button
        image_url:
          type: string
          title: Image Url
        background_image_url:
          type: string
          title: Background Image Url
        link:
          type: string
          title: Link
        store_id:
          type: string
          title: Store Id
      type: object
      title: LimitedStoreBannerBlock
    IFrameBlock:
      properties:
        block:
          type: string
          enum:
          - IFrameBlock
          title: Block
          default: IFrameBlock
        id:
          type: string
          title: Id
        name:
          type: string
          title: Name
        start_at:
          type: integer
          title: Start At
        end_at:
          type: integer
          title: End At
        width:
          type: string
          title: Width
        height:
          type: string
          title: Height
        url:
          type: string
          maxLength: 65536
          minLength: 1
          format: uri
          title: Url
        requires_auth:
          type: boolean
          title: Requires Auth
        popup_background_image:
          type: string
          maxLength: 65536
          minLength: 1
          format: uri
          title: Popup Background Image
        loading_background_image:
          type: string
          maxLength: 65536
          minLength: 1
          format: uri
          title: Loading Background Image
        crossplay_disabled:
          type: boolean
          title: Crossplay Disabled
        is_web_game_iframe:
          type: boolean
          title: Is Web Game Iframe
        aspect_ratio:
          type: number
          title: Aspect Ratio
      type: object
      required:
      - url
      title: IFrameBlock
    YoutubeBlock:
      properties:
        block:
          type: string
          enum:
          - YoutubeBlock
          title: Block
          default: YoutubeBlock
        id:
          type: string
          title: Id
        name:
          type: string
          title: Name
        start_at:
          type: integer
          title: Start At
        end_at:
          type: integer
          title: End At
        video:
          $ref: '#/components/schemas/VideoBlockSettings'
      type: object
      required:
      - video
      title: YoutubeBlock
    VirtualSKUBonusSource:
      type: string
      enum:
      - custom
      - event_item
      title: VirtualSKUBonusSource
      description: An enumeration.
    TokenType:
      type: string
      enum:
      - attribute
      - custom_attribute
      - event_attribute
      - custom_event_attribute
      - operator
      - number
      - date
      - string
      - boolean
      - list
      - variable
      - virtual_currency
      title: TokenType
    ViewPort:
      properties:
        x:
          type: number
          title: X
        y:
          type: number
          title: Y
        zoom:
          type: number
          title: Zoom
      type: object
      required:
      - x
      - y
      - zoom
      title: ViewPort
    MobilePopupActionNode:
      properties:
        id:
          type: string
          title: Id
        next_node_id:
          type: string
          title: Next Node Id
        title:
          type: string
          title: Title
        x:
          type: integer
          title: X
        y:
          type: integer
          title: Y
        result:
          type: string
          title: Result
        model_type:
          type: string
          enum:
          - MobilePopupActionNode
          title: Model Type
          default: MobilePopupActionNode
        break_on_error:
          type: boolean
          title: Break On Error
        description:
          type: string
          title: Description
        body:
          type: string
          title: Body
        item_id:
          type: string
          title: Item Id
        link_created_offer:
          type: boolean
          title: Link Created Offer
        store_item_id:
          type: string
          title: Store Item Id
        store_id:
          type: string
          title: Store Id
        content_type:
          $ref: '#/components/schemas/HubPopupContentType'
        button_text:
          type: string
          title: Button Text
        button_link:
          type: string
          title: Button Link
        items:
          items:
            $ref: '#/components/schemas/CommunicationItem'
          type: array
          title: Items
        url:
          type: string
          title: Url
        response:
          type: string
          title: Response
        status_code:
          type: integer
          title: Status Code
        image_url:
          type: string
          title: Image Url
      type: object
      required:
      - id
      - x
      - y
      title: MobilePopupActionNode
    MathExpression:
      properties:
        tokens:
          items:
            $ref: '#/components/schemas/Token'
          type: array
          title: Tokens
        name:
          type: string
          title: Name
      type: object
      required:
      - name
      title: MathExpression
    ProgressionProgramBlock:
      properties:
        block:
          type: string
          enum:
          - ProgressionProgramBlock
          title: Block
          default: ProgressionProgramBlock
        id:
          type: string
          title: Id
        name:
          type: string
          title: Name
        start_at:
          type: integer
          title: Start At
        end_at:
          type: integer
          title: End At
        program_id:
          type: string
          title: Program Id
        variant:
          default: standard
          $ref: '#/components/schemas/LoyaltyProgramBlockVariant'
        slider_on_mobile:
          type: boolean
          title: Slider On Mobile
          nullable: true
      type: object
      required:
      - program_id
      title: ProgressionProgramBlock
    RedeemCouponBlockVariant:
      type: string
      enum:
      - default
      - block
      title: RedeemCouponBlockVariant
      description: An enumeration.
    PeriodType:
      type: string
      enum:
      - year
      - month
      - week
      - day
      - hour
      - minute
      - second
      title: PeriodType
    GraphRoot:
      propertie

# --- truncated at 32 KB (93 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/aghanim/refs/heads/main/openapi/aghanim-liveops-api-openapi.yml