BurstIQ Data Pipeline RuleSet Step APIs API

RuleSet Step is a step used in Data Pipelines and is used to execute a series of rules

Operations 7

GET /api/metadata/datapipeline/steps/ruleset/{id} Get rule set step id #
PUT /api/metadata/datapipeline/steps/ruleset/{id} Put rule set step #
DELETE /api/metadata/datapipeline/steps/ruleset/{id} Delete rule set step by id #
GET /api/metadata/datapipeline/steps/ruleset Get query rule set steps #
POST /api/metadata/datapipeline/steps/ruleset Post step #
POST /api/metadata/datapipeline/steps/ruleset/{id}/trial-run Post rule set step trial run #
GET /api/metadata/datapipeline/steps/ruleset/{id}/history Get history 9 #

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/burstiq-data-pipeline-ruleset-step-apis-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

burstiq-data-pipeline-ruleset-step-apis-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: LifeGraph Data Pipeline RuleSet Step APIs API
  description: LifeGraph API descriptions
  license:
    name: BurstIQ, Inc.
    url: https://www.burstiq.com
  version: 2.42.0
servers:
- url: https://api.burstiq.com
  description: Generated server url
tags:
- name: Data Pipeline RuleSet Step APIs
  description: RuleSet Step is a step used in Data Pipelines and is used to execute a series of rules
paths:
  /api/metadata/datapipeline/steps/ruleset/{id}:
    get:
      tags:
      - Data Pipeline RuleSet Step APIs
      description: 'Allowed user roles:


        sdzAdmin


        sdzReadOnly


        sdzUser


        Get RuleSetStep by id'
      operationId: getRuleSetStepId
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/RuleSetStep'
      summary: Get rule set step id
      x-summary-source: derived
    put:
      tags:
      - Data Pipeline RuleSet Step APIs
      description: 'Allowed user roles:


        sdzAdmin


        Update a RuleSetStep'
      operationId: putRuleSetStep
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RuleSetStep'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/RuleSetStep'
      summary: Put rule set step
      x-summary-source: derived
    delete:
      tags:
      - Data Pipeline RuleSet Step APIs
      description: 'Allowed user roles:


        sdzAdmin


        Delete RuleSetStep by id'
      operationId: deleteRuleSetStepById
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
      summary: Delete rule set step by id
      x-summary-source: derived
  /api/metadata/datapipeline/steps/ruleset:
    get:
      tags:
      - Data Pipeline RuleSet Step APIs
      description: 'Allowed user roles:


        sdzAdmin


        sdzReadOnly


        sdzUser


        Get RuleSetStep by query'
      operationId: getQueryRuleSetSteps
      parameters:
      - name: description
        in: query
        required: false
        schema:
          type: string
      - name: name
        in: query
        required: false
        schema:
          type: string
      - name: orderBy
        in: query
        required: false
        schema:
          type: array
          items:
            type: string
      - name: limit
        in: query
        required: false
        schema:
          type: integer
          format: int32
      - name: skip
        in: query
        required: false
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RuleSetStep'
      summary: Get query rule set steps
      x-summary-source: derived
    post:
      tags:
      - Data Pipeline RuleSet Step APIs
      description: 'Allowed user roles:


        sdzAdmin


        Create a new RuleSetStep'
      operationId: postStep
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RuleSetStep'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/RuleSetStep'
      summary: Post step
      x-summary-source: derived
  /api/metadata/datapipeline/steps/ruleset/{id}/trial-run:
    post:
      tags:
      - Data Pipeline RuleSet Step APIs
      description: 'Allowed user roles:


        sdzAdmin


        sdzReadOnly


        sdzUser


        using step id, looks up the step and executes a single step against a single data record and returns what the result would be'
      operationId: postRuleSetStepTrialRun
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DataPipelineInput'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/DataPipelineInput'
      summary: Post rule set step trial run
      x-summary-source: derived
  /api/metadata/datapipeline/steps/ruleset/{id}/history:
    get:
      tags:
      - Data Pipeline RuleSet Step APIs
      description: 'Allowed user roles:


        sdzAdmin


        sdzReadOnly


        sdzUser


        gets the history of a ruleSetStep'
      operationId: getHistory_9
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RuleSetStep'
      summary: Get history 9
      x-summary-source: derived
components:
  schemas:
    DataPipelineInput:
      type: object
      properties:
        data:
          type: object
        metadata:
          type: object
      required:
      - data
    RuleSetStep:
      type: object
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
          minLength: 1
        description:
          type: string
        ruleIds:
          type: array
          items:
            type: string
            format: uuid
          minItems: 1
          uniqueItems: true
      required:
      - name
      - ruleIds