BurstIQ Data Pipeline Field Mapping Step APIs API

Field Mapping Step is a step used in Data Pipelines and is used to map fields

Operations 7

GET /api/metadata/datapipeline/steps/fieldmapping/{id} Get field mapping step by id #
PUT /api/metadata/datapipeline/steps/fieldmapping/{id} Put field mapping step #
DELETE /api/metadata/datapipeline/steps/fieldmapping/{id} Delete field mapping step by id #
GET /api/metadata/datapipeline/steps/fieldmapping Query field mapping steps #
POST /api/metadata/datapipeline/steps/fieldmapping Post field mapping step #
POST /api/metadata/datapipeline/steps/fieldmapping/{id}/trial-run Post field mapping step trial run #
GET /api/metadata/datapipeline/steps/fieldmapping/{id}/history Get history 10 #

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-field-mapping-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-field-mapping-step-apis-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: LifeGraph Data Pipeline Field Mapping 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 Field Mapping Step APIs
  description: Field Mapping Step is a step used in Data Pipelines and is used to map fields
paths:
  /api/metadata/datapipeline/steps/fieldmapping/{id}:
    get:
      tags:
      - Data Pipeline Field Mapping Step APIs
      description: 'Allowed user roles:


        sdzAdmin


        sdzReadOnly


        sdzUser


        Get FieldMappingSteps by id'
      operationId: getFieldMappingStepById
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/FieldMappingStep'
      summary: Get field mapping step by id
      x-summary-source: derived
    put:
      tags:
      - Data Pipeline Field Mapping Step APIs
      description: 'Allowed user roles:


        sdzAdmin


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


        sdzAdmin


        Delete FieldMappingSteps by id'
      operationId: deleteFieldMappingStepById
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
      summary: Delete field mapping step by id
      x-summary-source: derived
  /api/metadata/datapipeline/steps/fieldmapping:
    get:
      tags:
      - Data Pipeline Field Mapping Step APIs
      description: 'Allowed user roles:


        sdzAdmin


        sdzReadOnly


        sdzUser


        Get FieldMappingSteps by query'
      operationId: queryFieldMappingSteps
      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/FieldMappingStep'
      summary: Query field mapping steps
      x-summary-source: derived
    post:
      tags:
      - Data Pipeline Field Mapping Step APIs
      description: 'Allowed user roles:


        sdzAdmin


        Create a new FieldMappingStep'
      operationId: postFieldMappingStep
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FieldMappingStep'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/FieldMappingStep'
      summary: Post field mapping step
      x-summary-source: derived
  /api/metadata/datapipeline/steps/fieldmapping/{id}/trial-run:
    post:
      tags:
      - Data Pipeline Field Mapping 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: postFieldMappingStepTrialRun
      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 field mapping step trial run
      x-summary-source: derived
  /api/metadata/datapipeline/steps/fieldmapping/{id}/history:
    get:
      tags:
      - Data Pipeline Field Mapping Step APIs
      description: 'Allowed user roles:


        sdzAdmin


        sdzReadOnly


        sdzUser


        gets the history of a fieldMappingStep'
      operationId: getHistory_10
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FieldMappingStep'
      summary: Get history 10
      x-summary-source: derived
components:
  schemas:
    FieldMappingStep:
      type: object
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
          minLength: 1
        description:
          type: string
        map:
          type: object
          additionalProperties:
            type: string
          minProperties: 1
      required:
      - map
      - name
    DataPipelineInput:
      type: object
      properties:
        data:
          type: object
        metadata:
          type: object
      required:
      - data