mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-09 12:27:48 +00:00
32 lines
813 B
YAML
32 lines
813 B
YAML
get:
|
|
operationId: getQualifier
|
|
tags:
|
|
- IAI Data Pipeline Events
|
|
summary: Get data for a given qualifier
|
|
description: >-
|
|
This presents events and metadata for a given qualifier
|
|
|
|
Requires security scope of 'iai:data-pipeline:read'
|
|
parameters:
|
|
- in: path
|
|
name: qualifier
|
|
schema:
|
|
type: string
|
|
required: true
|
|
description: >-
|
|
Filter results based on the specified qualifier.
|
|
example: "20210205164448"
|
|
responses:
|
|
'200':
|
|
description: Data pipeline event metadata
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '../schemas/DataPipelineSummary.yaml'
|
|
'401':
|
|
$ref: '../../v3/responses/401.yaml'
|
|
'403':
|
|
$ref: '../../v3/responses/403.yaml'
|
|
'404':
|
|
$ref: '../../v3/responses/404.yaml'
|