BurstIQ SDZ Specific Term APIs API

Terms are managed for the developer's use to find, present terms to users and records acceptance

Operations 7

GET /api/metadata/terms/{id} Get term by id #
PUT /api/metadata/terms/{id} Put terms #
PUT /api/metadata/terms/{id}/{activeFlag} Put terms active flag #
GET /api/metadata/terms Get terms #
POST /api/metadata/terms Post terms #
GET /api/metadata/terms/{id}/history Get history 2 #
GET /api/metadata/terms/search Get search 2 #

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-sdz-specific-term-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-sdz-specific-term-apis-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: LifeGraph SDZ Specific Term 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: SDZ Specific Term APIs
  description: Terms are managed for the developer's use to find, present terms to users and records acceptance
paths:
  /api/metadata/terms/{id}:
    get:
      tags:
      - SDZ Specific Term APIs
      description: 'Allowed user roles:


        sdzAdmin


        sdzReadOnly


        sdzUser


        Get a SDZ specific term (by Id)'
      operationId: getTermById
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/Terms'
      summary: Get term by id
      x-summary-source: derived
    put:
      tags:
      - SDZ Specific Term APIs
      description: 'Allowed user roles:


        sdzAdmin


        Update a terms record for a specific SDZ'
      operationId: putTerms
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Terms'
        required: true
      responses:
        '200':
          description: OK
      summary: Put terms
      x-summary-source: derived
  /api/metadata/terms/{id}/{activeFlag}:
    put:
      tags:
      - SDZ Specific Term APIs
      description: 'Allowed user roles:


        sdzAdmin


        set a terms record to active (true) or inactive (false)'
      operationId: putTermsActiveFlag
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: activeFlag
        in: path
        required: true
        schema:
          type: boolean
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/Terms'
      summary: Put terms active flag
      x-summary-source: derived
  /api/metadata/terms:
    get:
      tags:
      - SDZ Specific Term APIs
      description: 'Allowed user roles:


        sdzAdmin


        sdzReadOnly


        sdzUser


        query terms from a SDZ'
      operationId: getTerms
      parameters:
      - name: type
        in: query
        required: false
        schema:
          type: string
      - name: active
        in: query
        required: false
        schema:
          type: boolean
      - name: version
        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/Terms'
      summary: Get terms
      x-summary-source: derived
    post:
      tags:
      - SDZ Specific Term APIs
      description: 'Allowed user roles:


        sdzAdmin


        Create a sdz specific terms record'
      operationId: postTerms
      parameters:
      - name: name
        in: query
        required: true
        schema:
          type: string
      - name: active
        in: query
        required: true
        schema:
          type: boolean
      - name: version
        in: query
        required: true
        schema:
          type: string
      - name: type
        in: query
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                file:
                  type: string
                  format: binary
              required:
              - file
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/Terms'
      summary: Post terms
      x-summary-source: derived
  /api/metadata/terms/{id}/history:
    get:
      tags:
      - SDZ Specific Term APIs
      description: 'Allowed user roles:


        sdzAdmin


        sdzReadOnly


        sdzUser


        gets the history of a terms'
      operationId: getHistory_2
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Terms'
      summary: Get history 2
      x-summary-source: derived
  /api/metadata/terms/search:
    get:
      tags:
      - SDZ Specific Term APIs
      description: 'Allowed user roles:


        sdzAdmin


        sdzReadOnly


        sdzUser


        Search for terms record within a specific SDZ'
      operationId: getSearch_2
      parameters:
      - name: terms
        in: query
        required: true
        schema:
          type: array
          items:
            type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Terms'
                uniqueItems: true
      summary: Get search 2
      x-summary-source: derived
components:
  schemas:
    Terms:
      type: object
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
          minLength: 1
        documentBase64:
          type: string
          minLength: 1
        version:
          type: string
        type:
          type: string
        active:
          type: boolean
      required:
      - active
      - documentBase64
      - id
      - name