Files
api-specs/idn/beta/paths/iai-raw-object-history.yaml
2022-09-29 20:27:20 +00:00

44 lines
1.0 KiB
YAML

get:
operationId: searchObjects
tags:
- IAI Raw Objects
summary: List Objects
description: This API returns a changeset for an object
parameters:
- in: path
name: type
schema:
type: string
description: Indicates of which type objects to get
example: potential-role
required: true
- in: path
name: id
schema:
type: string
description: Object Id
example: 28da7f68-e1ed-460e-986d-520d594f174c
required: true
responses:
'200':
description: Changeset for an object
content:
application/json:
schema:
type: array
items:
$ref: '../../beta/schemas/ChangesetDetails.yaml'
'400':
$ref: '../../v3/responses/400.yaml'
'401':
$ref: '../../v3/responses/401.yaml'
'403':
$ref: '../../v3/responses/403.yaml'
'429':
$ref: '../../v3/responses/429.yaml'
'500':
$ref: '../../v3/responses/500.yaml'
security:
- bearerAuth:
- 'iai:objects:read'