Macrometa Triggers API

This endpoint is designed for configuring triggers for a specific component. Triggers are essential for initiating actions within a component, as they define the specific conditions under which these actions are executed. Each trigger consists of one or more rules, known as Trigger Rules, which collectively determine when an action should be started. In the configuration process, you can define various types of Trigger Rules, each tailored to different conditions and scenarios. This flexibility allows for precise control over component behavior, enabling actions to be executed in response to defined events or states. It is crucial to accurately set up triggers to ensure the proper functioning of the component within your website's architecture. By using this endpoint, you can create, modify, or delete trigger configurations, thereby customizing how and when your component reacts to specific conditions or user interactions.

Operations 5

POST /api/est/v1/trigger
GET /api/est/v1/trigger
GET /api/est/v1/trigger/{name}
PATCH /api/est/v1/trigger/{name}
DELETE /api/est/v1/trigger/{name}

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/macrometa-triggers-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

macrometa-triggers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Macrometa API Reference Activity Metrics Triggers API
  version: 0.17.17
  description: API reference for the Macrometa Global Data Network.
  license:
    name: Macrometa License, Version 2.0
servers:
- url: https://api-play.paas.macrometa.io
  description: GDN API
host: api-play.paas.macrometa.io
security:
- ApiKeyAuth: []
- BearerAuth: []
tags:
- name: Triggers
  description: 'This endpoint is designed for configuring triggers for a specific component. Triggers are essential for initiating actions within a component, as they define the specific conditions  under which these actions are executed. Each trigger consists of one or more rules, known as Trigger Rules, which collectively determine when an action should be started. In the  configuration process, you can define various types of Trigger Rules, each tailored to different conditions and scenarios. This flexibility allows for precise control over component behavior,  enabling actions to be executed in response to defined events or states. It is crucial to accurately set up triggers to ensure the proper functioning of the component within your website''s  architecture. By using this endpoint, you can create, modify, or delete trigger configurations, thereby customizing how and when your component reacts to specific conditions or user interactions. '
paths:
  /api/est/v1/trigger:
    post:
      tags:
      - Triggers
      description: Create PhotonIQ EST trigger.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                ruleType:
                  type: string
                variableName:
                  type: string
                matchOperation:
                  type: string
                matchValue:
                  type: string
      responses:
        '200':
          description: Returns created PhotonIQ EST trigger.
        '500':
          description: Error creating PhotonIQ EST trigger.
    get:
      tags:
      - Triggers
      description: Get all PhotonIQ EST triggers.
      responses:
        '200':
          description: Returns PhotonIQ EST trigger.
        '500':
          description: Error getting PhotonIQ EST trigger.
  /api/est/v1/trigger/{name}:
    get:
      tags:
      - Triggers
      description: Get PhotonIQ EST trigger.
      parameters:
      - in: path
        name: name
        required: true
        schema:
          type: string
        description: Trigger name
      responses:
        '200':
          description: Returns PhotonIQ EST trigger.
        '500':
          description: Error getting PhotonIQ EST trigger.
    patch:
      tags:
      - Triggers
      description: Update PhotonIQ EST trigger.
      parameters:
      - in: path
        name: name
        required: true
        schema:
          type: string
        description: Trigger name.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                ruleType:
                  type: string
                variableName:
                  type: string
                matchOperation:
                  type: string
                matchValue:
                  type: string
      responses:
        '200':
          description: Returns updated PhotonIQ EST trigger.
        '404':
          description: Error Trigger not found
        '500':
          description: Error updating PhotonIQ EST trigger.
    delete:
      tags:
      - Triggers
      description: Delete PhotonIQ EST trigger.
      parameters:
      - in: path
        name: name
        required: true
        schema:
          type: string
        description: Trigger name.
      responses:
        '200':
          description: PhotonIQ EST service trigger deleted successfully.
        '500':
          description: Error deleting PhotonIQ EST trigger.
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: 'Provide an API Key to the `Authorization` header, prefixed with "apikey".


        Example: `Authorization: apikey <key>`'
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: 'Provide a JSON Web Token (JWT) to the `Authorization` header, prefixed with "bearer".


        Example: `Authorization: bearer <jwt>`'