BurstIQ SDZ Specific Term APIs API
Terms are managed for the developer's use to find, present terms to users and records acceptance
Terms are managed for the developer's use to find, present terms to users and records acceptance
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/burstiq-sdz-specific-term-apis-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 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