mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-09 12:27:48 +00:00
* Fixed sorter/filter descriptions for several endpoints. Moved beta collection tags into alphabetic order. * Fixed the remaining sorter/filter linter errors * Removed default value from sorter params as they are not valid.' by github action: 6708027043
48 lines
1.4 KiB
YAML
48 lines
1.4 KiB
YAML
get:
|
|
operationId: getApplications
|
|
summary: Applications by Identity Group
|
|
tags:
|
|
- IAI Identity Groups
|
|
description: >-
|
|
The Applications by Identity Group API returns an aggregation of all applications/sources for identity accounts originating with in the identity group.
|
|
parameters:
|
|
- in: path
|
|
name: identityGroupId
|
|
schema:
|
|
type: string
|
|
required: true
|
|
description: The identity group id
|
|
example: 'ff8081814d2a8036014d701f3fbf53fa'
|
|
- $ref: '../../v3/parameters/limit.yaml'
|
|
- $ref: '../../v3/parameters/offset.yaml'
|
|
- $ref: '../../v3/parameters/count.yaml'
|
|
- in: query
|
|
name: filters
|
|
schema:
|
|
type: string
|
|
description: >-
|
|
Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)
|
|
|
|
|
|
Filtering is supported for the following fields and operators:
|
|
|
|
|
|
**attributes**: *eq, sw*
|
|
example: attributes sw "r"
|
|
responses:
|
|
'200':
|
|
description: The applications for an identity group
|
|
content:
|
|
application/json:
|
|
schema:
|
|
type: array
|
|
items:
|
|
$ref: '../schemas/BaseReferenceDto.yaml'
|
|
'401':
|
|
$ref: '../../v3/responses/401.yaml'
|
|
'403':
|
|
$ref: '../../v3/responses/403.yaml'
|
|
'500':
|
|
$ref: '../../v3/responses/500.yaml'
|
|
security:
|
|
- bearerAuth : [] |