Automated commit 'DEVREL-1270 (#1473)

* 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
This commit is contained in:
GitHub Action Bot
2023-10-31 14:33:08 +00:00
parent 1f7b4db343
commit 1013fe10a3
108 changed files with 805 additions and 524 deletions

View File

@@ -29,7 +29,8 @@ get:
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 Entitlement fields and operators:
Filtering is supported for the following fields and operators:
**id**: *eq, in*
@@ -43,7 +44,10 @@ get:
**value**: *eq, sw*
**created, modified**: *gt, lt, ge, le*
**created**: *gt, lt, ge, le*
**modified**: *gt, lt, ge, le*
**owner.id**: *eq, in*

View File

@@ -44,7 +44,10 @@ get:
**name**: *eq, sw*
**created, modified**: *gt, lt, ge, le*
**created**: *gt, lt, ge, le*
**modified**: *gt, lt, ge, le*
**owner.id**: *eq, in*
@@ -54,9 +57,6 @@ get:
**source.id**: *eq, in*
Composite operators supported: *and, or*
example: name eq "SailPoint Support"
required: false
- in: query

View File

@@ -61,7 +61,7 @@ get:
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **id**, **name**, **created**, **modified**
Sorting is supported for the following fields: **id, name, created, modified**
responses:
'200':
description: List of account objects

View File

@@ -47,7 +47,7 @@ get:
schema:
type: string
description: >-
Filter recommendations using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)
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:
@@ -60,6 +60,7 @@ get:
**identityId**: *eq, in*
example: identityId eq "2c9180846b0a0583016b299f210c1314"
- in: query
name: sorters
schema:
@@ -70,6 +71,7 @@ get:
Sorting is supported for the following fields: **access.id, access.type, identityId, timestamp**
example: access.id
responses:
'200':
description: Returns list of ignored access request recommendations.

View File

@@ -47,7 +47,7 @@ get:
schema:
type: string
description: >-
Filter recommendations using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)
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:
@@ -60,6 +60,7 @@ get:
**identityId**: *eq, in*
example: access.id eq "2c9180846b0a0583016b299f210c1314"
- in: query
name: sorters
schema:

View File

@@ -47,7 +47,7 @@ get:
schema:
type: string
description: >-
Filter recommendations using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)
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:
@@ -60,6 +60,7 @@ get:
**identityId**: *eq, in*
example: access.id eq "2c9180846b0a0583016b299f210c1314"
- in: query
name: sorters
schema:

View File

@@ -41,7 +41,7 @@ get:
schema:
type: string
description: >-
Filter recommendations using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)
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:
@@ -54,6 +54,7 @@ get:
**access.description**: *co*
example: access.name co "admin"
- in: query
name: sorters
schema:

View File

@@ -36,7 +36,13 @@ get:
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: **name, id**
Filtering is supported for the following fields and operators:
**name**: *eq*
**id**: *eq*
example: name eq "manager template"
responses:
'200':

View File

@@ -53,7 +53,7 @@ get:
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **name**, **created**
Sorting is supported for the following fields: **name, created**
example: name
responses:
'200':

View File

@@ -17,7 +17,7 @@ get:
Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)
Supported fields and primitive operators:
Filtering is supported for the following fields and operators:
**target**: *eq, sw*
@@ -26,29 +26,16 @@ get:
**rights**: *ca*
Supported composite operators:
*and, or*
All field values (second filter operands) are case-insensitive for this API.
Only a single *and* or *or* composite filter operator may be used. It must also be used between
a target filter and a rights filter, not between 2 filters for the same field.
For example,
Only a single *and* or *or* composite filter operator may be used. It must also be used between a target filter and a rights filter, not between 2 filters for the same field.
The following is valid:
*?filters=rights+ca+(%22CREATE%22)+and+target+eq+%22SYS.OBJAUTH2%22*
For example, the following is valid: `?filters=rights+ca+(%22CREATE%22)+and+target+eq+%22SYS.OBJAUTH2%22`
The following is invalid:
*?filters=rights+ca+(%22CREATE%22)+and+rights+ca+(%SELECT%22)*
The following is invalid: `?filters=rights+ca+(%22CREATE%22)+and+rights+ca+(%SELECT%22)`
- in: path
name: id
schema:

View File

@@ -31,7 +31,7 @@ get:
**id**: *eq, in*
**completed***: *eq, ne*
**completed**: *eq, ne*
**targetSummary.id**: *eq, in*
@@ -53,6 +53,7 @@ get:
**reviewData.accessProfile.sourceName**: *eq, sw*
example: id eq "2c9180846b0a0583016b299f210c1314"
- in: query
name: sorters
schema:
@@ -63,6 +64,7 @@ get:
Sorting is supported for the following fields: **targetSummary.name, reviewData.entity.type, reviewData.entity.name, reviewData.entitlement.sourceName, reviewData.accessProfile.sourceName**
example: targetSummary.name
- in: query
name: activity-data
schema:

View File

@@ -28,7 +28,7 @@ get:
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 (Filtering is done by reviewer's fields):
Filtering is supported for the following fields and operators:
**id**: *eq, in*
@@ -39,7 +39,6 @@ get:
**email**: *eq, sw*
example: name eq "Bob"
- in: query
name: sorters
schema:

View File

@@ -13,18 +13,29 @@ get:
- in: query
name: filters
description: >-
Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://community.sailpoint.com/t5/IdentityNow-Wiki/V3-API-Standard-Collection-Parameters/ta-p/156407)
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:
**status**: *eq* "CONFIRMED" or "DENIED"
**reviewedByUser** *eq* true or false
**access.id**: *eq* "id"
**access.type**: *eq* "ROLE" or "ACCESS_PROFILE"
**access.name**: *sw* "Administrator"
**access.description**: *sw* "admin"
**status**: *eq*
**reviewedByUser** *eq*
**access.id**: *eq*
**access.type**: *eq*
**access.name**: *sw*
**access.description**: *sw*
example: access.type eq "ROLE"
required: false
style: form
explode: true
@@ -36,13 +47,14 @@ get:
type: string
format: comma-separated
description: >-
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://community.sailpoint.com/t5/IdentityNow-Wiki/V3-API-Standard-Collection-Parameters/ta-p/156407)
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **access.name,status**
Sorting is supported for the following fields: **access.name, status**
By default the common access items are sorted by name, ascending.
example: access.name
responses:
'200':
description: Succeeded. Returns a list of common access for a customer.

View File

@@ -15,6 +15,7 @@ get:
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:

View File

@@ -26,6 +26,7 @@ get:
description: >-
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **id, name, created, modified, type, attribute, value, source.id**
example: name,-modified
required: false
@@ -38,6 +39,7 @@ get:
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:
@@ -61,7 +63,9 @@ get:
**requestable**: *eq*
**created**: *gt, lt, ge, le*
**modified**: *gt, lt, ge, le*
example: attribute eq "memberOf"

View File

@@ -26,6 +26,7 @@ get:
description: >-
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **id, name, created, modified, type, attribute, value, source.id**
example: name,-modified
required: false
@@ -38,6 +39,7 @@ get:
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:
@@ -61,8 +63,10 @@ get:
**requestable**: *eq*
**created**: *gt, lt, ge, le*
**modified**: *gt, lt, ge, le*
example: attribute eq "memberOf"
required: false

View File

@@ -74,6 +74,7 @@ get:
description: >-
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **id, name, created, modified, type, attribute, value, source.id**
example: name,-modified
required: false
@@ -86,6 +87,7 @@ get:
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:
@@ -109,8 +111,10 @@ get:
**requestable**: *eq*
**created**: *gt, lt, ge, le*
**modified**: *gt, lt, ge, le*
example: attribute eq "memberOf"
required: false

View File

@@ -32,14 +32,20 @@ post:
x-go-name: Limit
- name: filters
in: query
description: |-
Filters
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:
<b>value</b>: <i>eq, gt, sw, in</i>
<b>label</b>: <i>eq, gt, sw, in</i>
<b>subLabel</b>: <i>eq, gt, sw, in</i>
**value**: *eq, gt, sw, in*
**label**: *eq, gt, sw, in*
**subLabel**: *eq, gt, sw, in*
schema:
type: string
x-go-name: Filters

View File

@@ -39,15 +39,23 @@ get:
x-go-name: Limit
- name: filters
in: query
description: |-
Filters
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:
<b>name</b>: <i>eq, gt, sw, in</i>
<b>description</b>: <i>eq, gt, sw, in</i>
<b>created</b>: <i>eq, gt, sw, in</i>
<b>modified</b>: <i>eq, gt, sw, in</i>
**name**: *eq, gt, sw, in*
**description**: *eq, gt, sw, in*
**created**: *eq, gt, sw, in*
**modified**: *eq, gt, sw, in*
schema:
type: string
x-go-name: Filters
@@ -56,15 +64,11 @@ get:
x-go-name: Filters
- name: sorters
in: query
description: |-
Sorters
description: >-
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Item will be sorted in the returned array if the sorters expression evaluates to true for that item. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters/#sorting-results).
Sorting is supported for the following fields:
<b>name</b>
<b>description</b>
<b>created</b>
<b>modified</b>
Sorting is supported for the following fields: **name, description, created, modified**
schema:
type: string
default: name

View File

@@ -39,15 +39,23 @@ get:
x-go-name: Limit
- name: filters
in: query
description: |-
Filters
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:
<b>name</b>: <i>eq, gt, sw, in</i>
<b>description</b>: <i>eq, gt, sw, in</i>
<b>created</b>: <i>eq, gt, sw, in</i>
<b>modified</b>: <i>eq, gt, sw, in</i>
**name**: *eq, gt, sw, in*
**description**: *eq, gt, sw, in*
**created**: *eq, gt, sw, in*
**modified**: *eq, gt, sw, in*
schema:
type: string
x-go-name: Filters
@@ -56,15 +64,11 @@ get:
x-go-name: Filters
- name: sorters
in: query
description: |-
Sorters
description: >-
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Item will be sorted in the returned array if the sorters expression evaluates to true for that item. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters/#sorting-results).
Sorting is supported for the following fields:
<b>name</b>
<b>description</b>
<b>created</b>
<b>modified</b>
Sorting is supported for the following fields: **name, description, created, modified**
schema:
type: string
default: name

View File

@@ -44,14 +44,20 @@ get:
x-go-name: Limit
- name: filters
in: query
description: |-
Filters
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:
<b>value</b>: <i>eq, ne, in</i>
<b>label</b>: <i>eq, ne, in</i>
<b>subLabel</b>: <i>eq, ne, in</i>
**value**: *eq, ne, in*
**label**: *eq, ne, in*
**subLabel**: *eq, ne, in*
schema:
type: string
x-go-name: Filters

View File

@@ -12,7 +12,7 @@ get:
schema:
type: string
description: >-
Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://app.getguru.com/card/crkL5RGi/WIP-V3-Standard-Collection-Parameters)
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:

View File

@@ -35,17 +35,30 @@ get:
- $ref: '../../v3/parameters/count.yaml'
- in: query
name: sorters
description: sort by name
description: >-
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **name**
required: false
style: form
explode: true
example: name
schema:
type: string
- in: query
name: filters
description: filter param by "starts with" for name
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:
**name**: *sw*
required: false
style: form
example: name sw "Admin"
explode: true
schema:
type: string

View File

@@ -18,7 +18,12 @@ get:
- $ref: '../../v3/parameters/count.yaml'
- in: query
name: sorters
description: sort by name
description: >-
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **name**
example: name
required: false
style: form
explode: true
@@ -26,7 +31,15 @@ get:
type: string
- in: query
name: filters
description: filter param by "starts with" for name
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:
**name**: *sw*
example: name sw "Jan"
required: false
style: form
explode: true

View File

@@ -34,7 +34,11 @@ get:
type: integer
- in: query
name: sorters
description: sort by name
description: >-
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **name**
required: false
style: form
explode: true
@@ -42,7 +46,15 @@ get:
type: string
- in: query
name: filters
description: filter param by "starts with" for name
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:
**name**: *sw*
example: name sw "A"
required: false
style: form
explode: true

View File

@@ -18,7 +18,7 @@ get:
Filtering is supported for the following fields and operators:
**isAssignable**: *eq* "true" or "false"
**isAssignable**: *eq*
required: false
style: form
explode: true

View File

@@ -12,9 +12,9 @@ get:
type: string
required: false
description: >-
Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters)
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:
@@ -54,7 +54,7 @@ get:
format: comma-separated
required: false
description: >-
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters/#sorting-results)
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **name, alias, cloudStatus**

View File

@@ -19,7 +19,7 @@ get:
Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)
Supported fields and primitive operators:
Filtering is supported for the following fields and operators:
**target**: *eq, sw*
@@ -28,29 +28,16 @@ get:
**rights**: *ca*
Supported composite operators:
*and, or*
All field values (second filter operands) are case-insensitive for this API.
Only a single *and* or *or* composite filter operator may be used. It must also be used between
a target filter and a rights filter, not between 2 filters for the same field.
For example,
Only a single *and* or *or* composite filter operator may be used. It must also be used between a target filter and a rights filter, not between 2 filters for the same field.
The following is valid:
*?filters=rights+ca+(%22CREATE%22)+and+target+eq+%22SYS.OBJAUTH2%22*
For example, the following is valid: `?filters=rights+ca+(%22CREATE%22)+and+target+eq+%22SYS.OBJAUTH2%22`
The following is invalid:
*?filters=rights+ca+(%22CREATE%22)+and+rights+ca+(%SELECT%22)*
The following is invalid: `?filters=rights+ca+(%22CREATE%22)+and+rights+ca+(%SELECT%22)`
example: target eq "SYS.OBJAUTH2"
- in: path
name: certificationId

View File

@@ -21,9 +21,14 @@ get:
schema:
type: string
description: >-
Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://app.getguru.com/card/crkL5RGi/WIP-V3-Standard-Collection-Parameters)
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

View File

@@ -21,9 +21,14 @@ get:
schema:
type: string
description: >-
Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://app.getguru.com/card/crkL5RGi/WIP-V3-Standard-Collection-Parameters)
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 eq "attribute1"
responses:
'200':
description: A summary of identity group

View File

@@ -21,9 +21,14 @@ get:
schema:
type: string
description: >-
Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://app.getguru.com/card/crkL5RGi/WIP-V3-Standard-Collection-Parameters)
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 eq "attribute1"
responses:
'200':
description: The popular entitlements in an identity group

View File

@@ -21,9 +21,14 @@ get:
schema:
type: string
description: >-
Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://app.getguru.com/card/crkL5RGi/WIP-V3-Standard-Collection-Parameters)
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 identities for an identity group

View File

@@ -14,9 +14,14 @@ get:
schema:
type: string
description: >-
Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://app.getguru.com/card/crkL5RGi/WIP-V3-Standard-Collection-Parameters)
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 eq "attribute1"
responses:
'200':
description: A list of identity groups for the customer.

View File

@@ -37,7 +37,7 @@ get:
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **id**, **name**, **priority**
Sorting is supported for the following fields: **id, name, priority**
example: name,-priority
responses:
'200':

View File

@@ -39,7 +39,7 @@ get:
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **id**, **name**, **priority**
Sorting is supported for the following fields: **id, name, priority**
example: name,-priority
responses:
'200':

View File

@@ -14,11 +14,21 @@ get:
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:
**id**: *eq*
**name**: *eq*
**clientId**: *eq*
**clusterId**: *eq*
example: name eq "client name"
responses:

View File

@@ -13,11 +13,14 @@ get:
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:
**operational**: *eq*
example: operational eq operation
example: operational eq "operation"
responses:
"200":
description: Responds with a list of ManagedCluster.

View File

@@ -13,6 +13,9 @@ get:
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:

View File

@@ -21,28 +21,29 @@ get:
- $ref: "../../v3/parameters/offset.yaml"
- $ref: "../../v3/parameters/count.yaml"
- in: query
example: "filters=approvalStatus eq 'PENDING'"
example: approvalStatus eq "PENDING"
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)
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:
**approvalStatus**: *eq* *Example:* approvalStatus eq "PENDING"
**approvalStatus**: *eq*
- in: query
example: "sorters=-created"
example: created
name: sorters
schema:
type: string
format: comma-separated
description: >-
Sort results using the standard syntax described in [V3 API Standard
Collection
Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **created, modified**
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **created, modified**
responses:
"200":
description: List of approval items.

View File

@@ -57,12 +57,10 @@ get:
format: comma-separated
example: accountName,sourceId
description: >-
Sort results using the standard syntax described in [V3 API Standard
Collection
Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **id, accountName,
sourceId, manager, firstName, lastName, email, phone, startDate,
endDate, created, modified**
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **id, accountName, sourceId, manager, firstName, lastName, email, phone, startDate, endDate, created, modified**
- in: query
name: filters
required: false
@@ -70,12 +68,13 @@ get:
type: string
example: sourceId eq "2c91808568c529c60168cca6f90c1313"
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)
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:
**sourceId**: *eq* *Example:* sourceId eq
"2c91808568c529c60168cca6f90c1313"
**sourceId**: *eq*
responses:
"200":
description: Non-Employee record objects

View File

@@ -86,12 +86,10 @@ get:
format: comma-separated
example: approvalStatus,firstName
description: >-
Sort results using the standard syntax described in [V3 API Standard
Collection
Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **created,
approvalStatus, firstName, lastName, email, phone, accountName,
startDate, endDate**
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **created, approvalStatus, firstName, lastName, email, phone, accountName, startDate, endDate**
- in: query
name: filters
required: false
@@ -99,12 +97,13 @@ get:
type: string
example: sourceId eq "2c91808568c529c60168cca6f90c1313"
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)
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:
**sourceId**: *eq* *Example:* sourceId eq
"2c91808568c529c60168cca6f90c1313"
**sourceId**: *eq*
responses:
"200":
description: List of non-employee request objects.

View File

@@ -74,9 +74,9 @@ get:
format: comma-separated
example: name,created
description: >-
Sort results using the standard syntax described in [V3 API Standard
Collection
Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **name, created**
responses:
"200":

View File

@@ -26,9 +26,12 @@ get:
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 field and operators:
Filtering is supported for the following fields and operators:
**snapshotDate**: *ge, le*
example: snapshotDate ge "2022-02-07T20:13:29.356648026Z"
- in: query
name: sorters
schema:
@@ -37,7 +40,8 @@ get:
description: >-
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following field: **snapshotDate**
Sorting is supported for the following fields: **snapshotDate**
example: snapshotDate
required: false
responses:

View File

@@ -50,6 +50,7 @@ get:
description: >-
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **displayName**
responses:
'200':

View File

@@ -32,10 +32,11 @@ get:
schema:
type: string
format: comma-separated
example: importance
example: importance
description: >-
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **importance**
responses:
'200':

View File

@@ -25,13 +25,13 @@ get:
name: filters
required: false
schema:
type: string
example: attributes.displayName sw "John" and certStatus eq "false"
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 Entitlement fields and operators:
Filtering is supported for the following fields and operators:
**attributes**: *eq, sw, co, in*
@@ -46,17 +46,19 @@ get:
**score**: *ge, le*
example: attributes.displayName sw "John" and certStatus eq "false"
- in: query
name: sorters
required: false
schema:
type: string
format: comma-separated
example: attributes.displayName,firstDetectionDate,-score
format: comma-separated
description: >-
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **firstDetectionDate, attributes, score**
example: attributes.displayName,firstDetectionDate,-score
responses:
'200':
description: Succeeded. Returns list of objects. Each object contains information about outliers

View File

@@ -29,7 +29,8 @@ get:
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 Access Profile fields and operators:
Filtering is supported for the following fields and operators:
**id**: *eq, in*
@@ -37,7 +38,10 @@ get:
**name**: *eq, sw*
**created, modified**: *gt, lt, ge, le*
**created**: *gt, lt, ge, le*
**modified**: *gt, lt, ge, le*
**owner.id**: *eq, in*

View File

@@ -46,7 +46,7 @@ get:
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **id**, **name**, **aliasName**, **email**
Sorting is supported for the following fields: **id, name, aliasName, email**
example: aliasName,name
responses:
'200':

View File

@@ -15,7 +15,18 @@ get:
example: 8c190e67-87aa-4ed9-a90b-d9d5344523fb
- in: query
name: filters
description: Filter parameter(s) by "starts with" for the name and description.
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:
**name**: *sw*
**description**: *sw*
example: name sw "r"
required: false
style: form
explode: true

View File

@@ -15,15 +15,34 @@ get:
example: 8c190e67-87aa-4ed9-a90b-d9d5344523fb
- in: query
name: sorters
description: sort by identitiesWithAccess, default order descending
description: >-
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **identitiesWithAccess**
The default sort is **identitiesWithAccess** in descending order.
required: false
example: identitiesWithAccess
style: form
explode: true
schema:
type: string
- in: query
name: filters
description: Filter parameter(s) by "starts with" for the name and description.
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:
**name**: *sw*
**description**: *sw*
example: name sw "r"
required: false
style: form
explode: true

View File

@@ -36,7 +36,12 @@ get:
- $ref: '../../v3/parameters/count.yaml'
- in: query
name: sorters
description: sort by name
description: >-
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **name**
example: name
required: false
style: form
explode: true
@@ -44,7 +49,15 @@ get:
type: string
- in: query
name: filters
description: Filter parameter by "starts with" for the name.
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:
**name**: *sw*
example: name sw "Jan"
required: false
style: form
explode: true

View File

@@ -15,7 +15,11 @@ get:
example: 8c190e67-87aa-4ed9-a90b-d9d5344523fb
- in: query
name: sorters
description: sort by identitiesWithAccess or name
description: >-
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **identitiesWithAccess, name**
required: false
style: form
explode: true
@@ -23,9 +27,20 @@ get:
type: string
- in: query
name: filters
description: Filter parameter(s) by "starts with" for the name and description.
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:
**name**: *sw*
**description**: *sw*
required: false
style: form
example: name sw "Admin"
explode: true
schema:
type: string

View File

@@ -11,7 +11,12 @@ get:
- $ref: '../../v3/parameters/count.yaml'
- name: sorters
in: query
description: sort by numberOfUpdates, identitiesWithAccess, totalNumberOfIdentities (default- ascending)
description: >-
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **numberOfUpdates, identitiesWithAccess, totalNumberOfIdentities**
example: numberOfUpdates
required: false
style: form
explode: true
@@ -19,10 +24,24 @@ get:
type: string
- name: filters
in: query
description: Filter parameter(s) by "starts with" for the name, ownerName and description.
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:
**name**: *sw*
**ownerName**: *sw*
**description**: *sw*
required: false
style: form
explode: true
example: name sw "John"
schema:
type: string
responses:

View File

@@ -30,7 +30,15 @@ get:
type: boolean
- in: query
name: sorters
description: sort by popularity, default order descending
description: >-
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **popularity**
The default sort is **popularity** in descending order.
example: popularity
required: false
style: form
explode: true
@@ -38,7 +46,18 @@ get:
type: string
- in: query
name: filters
description: Filter parameter by "starts with" for the applicationName and entitlementRef.name.
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:
**applicationName**: *sw*
**entitlementRef.name**: *sw*
example: applicationName sw "AD"
required: false
style: form
explode: true

View File

@@ -22,7 +22,12 @@ get:
example: 8c190e67-87aa-4ed9-a90b-d9d5344523fb
- in: query
name: sorters
description: sort by popularity, default order descending
description: >-
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **popularity**
example: populariity
required: false
style: form
explode: true
@@ -30,7 +35,18 @@ get:
type: string
- in: query
name: filters
description: Filter parameter by "starts with" for the applicationName and entitlementRef.name.
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:
**applicationName**: *sw*
**entitlementRef.name**: *sw*
example: applicationName sw "AD"
required: false
style: form
explode: true

View File

@@ -22,15 +22,27 @@ get:
example: 8c190e67-87aa-4ed9-a90b-d9d5344523fb
- in: query
name: sorters
description: sort by name, default order ascending
description: >-
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **name**
required: false
style: form
explode: true
example: name
schema:
type: string
- in: query
name: filters
description: Filter parameter by "starts with" for the name.
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:
**name**: *sw*
required: false
style: form
explode: true

View File

@@ -17,41 +17,57 @@ get:
type: string
format: comma-separated
description: >-
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters/)
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **createdDate**
example: 'createdDate'
example: createdDate
- in: query
name: filters
description: >-
Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters/)
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:
**createdById**: *eq, sw, co*
**createdByName**: *eq, sw, co*
**description**: *sw, co*
**endDate**: *le, lt*
**freshness**: *eq, ge, gt, le, lt*
**name**: *eq, sw, co*
**quality**: *eq, ge, gt, le, lt*
**startDate**: *ge, gt*
**saved**: *eq*
**type**: *eq*
**scopingMethod**: *eq*
**sessionState**: *eq*
**identityAttribute**: *co*
example: '(createdByName co "int") and (createdById sw "2c9180907") and (type eq "COMMON") and ((name co "entt") or (saved eq true))'
required: false
style: form

View File

@@ -22,35 +22,48 @@ get:
type: string
format: comma-separated
description: >-
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters/)
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **createdDate**
example: 'createdDate'
example: createdDate
- in: query
name: filters
description: >-
Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters/)
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:
**createdById**: *eq, sw, co*
**createdByName**: *eq, sw, co*
**description**: *sw, co*
**endDate**: *le, lt*
**freshness**: *eq, ge, gt, le, lt*
**name**: *eq, sw, co*
**quality**: *eq, ge, gt, le, lt*
**startDate**: *ge, gt*
**saved**: *eq*
**type**: *eq*
**type**: *eq*
example: '(createdByName co "int")and (createdById sw "2c9180907")and (type eq "COMMON")and ((name co "entt")or (saved eq true))'
required: false
style: form

View File

@@ -44,10 +44,16 @@ get:
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:
**saved**: *eq* "true" or "false"
**saved**: *eq*
**name**: *eq, sw*
example: 'saved eq "true" and name sw "RM Session"'
example: saved eq "true" and name sw "RM Session"
- in: query
name: sorters
schema:
@@ -55,8 +61,10 @@ get:
format: comma-separated
description: >-
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **createdBy, createdDate**
example: 'createdBy,createdDate'
example: createdBy,createdDate
- $ref: '../../v3/parameters/offset.yaml'
- $ref: '../../v3/parameters/limit.yaml'
- $ref: '../../v3/parameters/count.yaml'

View File

@@ -42,16 +42,16 @@ get:
**name**: *eq, sw*
**created, modified**: *gt, lt, ge, le*
**created**: *gt, lt, ge, le*
**modified**: *gt, lt, ge, le*
**owner.id**: *eq, in*
**requestable**: *eq*
Composite operators supported: *and, or*
example: requestable eq false
required: false
- in: query
@@ -61,8 +61,9 @@ get:
format: comma-separated
description: >-
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **name, created, modified**
example: name,-modified
required: false
- in: query

View File

@@ -13,7 +13,7 @@ get:
schema:
type: string
description: >-
Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://community.sailpoint.com/t5/IdentityNow-Wiki/V3-API-Standard-Collection-Parameters/ta-p/156407)
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:
@@ -29,6 +29,7 @@ get:
**integrationState**: *eq, in*
example: id eq ""
- $ref: '../../v3/parameters/limit.yaml'
- $ref: '../../v3/parameters/offset.yaml'
- $ref: '../../v3/parameters/count.yaml'

View File

@@ -3,8 +3,6 @@ post:
tags:
- SOD Exception
summary: Create SOD exception
# security:
# - oauth2: [API]
description: >-
This API creates a SOD exception.
@@ -37,8 +35,6 @@ get:
tags:
- SOD Exception
summary: List SOD exceptions
# security:
# - oauth2: [API]
description: >-
This API returns a list of all SOD exceptions.
@@ -53,15 +49,19 @@ get:
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)
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:
**id**: *eq, in* **sodPolicy.id**: *eq, in* **identity.id**: *eq, in*
**id**: *eq, in*
**sodPolicy.id**: *eq, in*
**identity.id**: *eq, in*
example: identity.id eq "bc693f07e7b645539626c25954c58554"
required: false
- in: query
@@ -70,15 +70,10 @@ get:
type: string
format: comma-separated
description: >-
Sort results using the standard syntax described in [V3 API Standard
Collection
Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields:
**sodPolicy.id, identity.id, start, end**
Sorting is supported for the following fields: **sodPolicy.id, identity.id, start, end**
example: identity.id,-start
required: false
responses:

View File

@@ -3,8 +3,6 @@ post:
tags:
- SOD Policy
summary: Create SOD policy
# security:
# - oauth2: [ORG_ADMIN]
description: >-
This creates both General and Conflicting Access Based policy, with a limit
of 50 entitlements for each (left & right) criteria for Conflicting Access
@@ -234,8 +232,6 @@ get:
tags:
- SOD Policy
summary: List SOD policies
# security:
# - oauth2: [ORG_ADMIN]
description: >-
This gets list of all SOD policies.
@@ -249,15 +245,19 @@ get:
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)
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:
**id**: *eq* **name**: *eq* **state**: *eq*
**id**: *eq*
**name**: *eq*
**state**: *eq*
example: id eq "bc693f07e7b645539626c25954c58554"
required: false
responses:

View File

@@ -8,6 +8,7 @@ get:
description: >-
This end-point lists all the sources in IdentityNow.
A token with ORG_ADMIN, SOURCE_ADMIN, SOURCE_SUBADMIN, or ROLE_SUBADMIN authority is required to call this API.
parameters:
- $ref: '../../v3/parameters/limit.yaml'
@@ -17,25 +18,54 @@ get:
name: filters
schema:
type: string
example: name eq "#Employees"
example: name eq "Employees"
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:
**id**: *eq, in*
**name**: *co, eq, in, sw*
**type**: *eq, in*
**owner.id**: *eq, in*
**features**: *ca, co*
**created**: *eq*
**modified**: *eq*
**managementWorkgroup.id**: *eq*
**description**: *eq*
**authoritative**: *eq*
**healthy**: *eq*
**status**: *eq, in*
**connectionType**: *eq*
**connectorName**: *eq*
**id**: *eq, in*
**name**: *co, eq, in, sw*
**type**: *eq, in*
**owner.id**: *eq, in*
**features**: *ca, co*
**created**: *eq*
**modified**: *eq*
**managementWorkgroup.id**: *eq*
**description**: *eq*
**authoritative**: *eq*
**healthy**: *eq*
**status**: *eq, in*
**connectionType**: *eq*
**connectorName**: *eq*
- in: query
name: sorters
schema:
@@ -45,6 +75,7 @@ get:
description: >-
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **type, created, modified, name, owner.name, healthy, status**
- in: query
name: for-subadmin

View File

@@ -18,23 +18,24 @@ get:
type: string
format: comma-separated
description: >-
Sort results using the standard syntax described in [V3 API Standard
Collection
Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **accessGranterTenant,
authUserName, role, expirationDate**
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **accessGranterTenant, authUserName, role, expirationDate**
example: accessGranterTenant
- 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:
**accessGranterTenant**: *eq, co, sw* *Example:* accessGranterTenant eq
"acme-solar", accessGranterTenant co "solar"
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:
**accessGranterTenant**: *eq, co, sw*
example: accessGranterTenant co "solar"
responses:
"200":
description: list of access granter support login responses.

View File

@@ -16,22 +16,24 @@ parameters:
type: string
format: comma-separated
description: >-
Sort results using the standard syntax described in [V3 API Standard
Collection
Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **authTenant, authUserName,
role, expirationDate**
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **authTenant, authUserName, role, expirationDate**
example: authTenant
- 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)
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:
**authTenant**: *eq, sw* *Example:* authTenant eq "sailpoint",
accessGranterTenant sw "sail"
**authTenant**: *eq, sw*
example: authTenant eq "sailpoint"
responses:
"200":
description: list of auth support login responses.

View File

@@ -17,20 +17,24 @@ get:
type: string
format: comma-separated
description: >-
Sort results using the standard syntax described in [V3 API Standard
Collection
Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **tenant**
example: tenant
- 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)
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:
**transferred**: *eq* *Example:* transferred eq false, transferred eq 0
**transferred**: *eq*
example: transferred eq false
responses:
"200":
description: list of auth support transfer status responses.

View File

@@ -16,21 +16,24 @@ parameters:
type: string
format: comma-separated
description: >-
Sort results using the standard syntax described in [V3 API Standard
Collection
Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **authTenant**
example: authTenant
- 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)
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:
**authTenant**: *eq, sw* *Example:* authTenant eq "sailpoint", authTenant
sw "sail"
**authTenant**: *eq, sw*
example: authTenant eq "sailpoint"
responses:
"200":
description: list of auth support tenant responses.

View File

@@ -11,22 +11,6 @@ get:
- $ref: '../../v3/parameters/offset.yaml'
- $ref: '../../v3/parameters/limit.yaml'
- $ref: '../../v3/parameters/count.yaml'
- name: sorters
in: query
description: sort criteria
required: false
style: form
explode: true
schema:
type: string
- name: filters
in: query
description: filter criteria
required: false
style: form
explode: true
schema:
type: string
responses:
"200":
description: Response is a list of TaskDefinitionSumary results matching the criteria.

View File

@@ -1,6 +1,3 @@
#
# Copyright (C) 2023 SailPoint Technologies, Inc. All rights reserved.
#
get:
tags:
- Task Management
@@ -20,11 +17,20 @@ get:
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:
**id**: *eq, in*
**sourceId**: *eq, in*
**completionStatus**: *eq, in*
**type**: *eq, in* "CLOUD_ACCOUNT_AGGREGATION", "CLOUD_GROUP_AGGREGATION", "CLOUD_PROCESS_UNCORRELATED_ACCOUNTS" or "CLOUD_REFRESH_ROLE"
**id**: *eq, in*
**sourceId**: *eq, in*
**completionStatus**: *eq, in*
**type**: *eq, in*
- in: query
name: sorters
schema:
@@ -35,6 +41,7 @@ get:
description: >-
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **created**
responses:
"200":

View File

@@ -1,6 +1,3 @@
#
# Copyright (C) 2019-2020 SailPoint Technologies, Inc. All rights reserved.
#
get:
tags:
- Task Management
@@ -11,22 +8,6 @@ get:
- $ref: '../../v3/parameters/offset.yaml'
- $ref: '../../v3/parameters/limit.yaml'
- $ref: '../../v3/parameters/count.yaml'
- name: sorters
in: query
description: sort criteria
required: false
style: form
explode: true
schema:
type: string
- name: filters
in: query
description: filter criteria
required: false
style: form
explode: true
schema:
type: string
responses:
"200":
description: Responds with a list of TaskStatus for pending tasks.
@@ -54,22 +35,6 @@ head:
- $ref: '../../v3/parameters/offset.yaml'
- $ref: '../../v3/parameters/limit.yaml'
- $ref: '../../v3/parameters/count.yaml'
- name: sorters
in: query
description: sort criteria
required: false
style: form
explode: true
schema:
type: string
- name: filters
in: query
description: filter criteria
required: false
style: form
explode: true
schema:
type: string
responses:
"200":
description: Responds with headers for List of TaskStatus for pending tasks.

View File

@@ -26,11 +26,14 @@ get:
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:
**internal**: *eq*
**name**: *eq*, *sw*
**name**: *eq, sw*
required: false
style: form
explode: true

View File

@@ -21,7 +21,7 @@ get:
**topic**: *eq*
example: 'topic eq "Channel"'
example: topic eq "Channel"
- in: query
name: sorters
required: false
@@ -32,11 +32,8 @@ get:
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields:
**topic**
example: 'topic'
Sorting is supported for the following fields: **topic**
example: topic
responses:
'200':
description: >-

View File

@@ -26,6 +26,8 @@ get:
**triggerId**: *eq*
**subscriptionId**: *eq*
example: 'triggerId eq "idn:access-request-dynamic-approver"'
- in: query
@@ -38,13 +40,7 @@ get:
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields:
**triggerId**
**subscriptionName**
**created**
**completed**
Sorting is supported for the following fields: **triggerId, subscriptionName, created, completed**
example: 'created'
responses:
'200':

View File

@@ -24,7 +24,7 @@ get:
**triggerId**: *eq*
example: 'triggerId eq "idn:access-request-dynamic-approver"'
example: triggerId eq "idn:access-request-dynamic-approver"
- in: query
name: sorters
required: false
@@ -35,11 +35,8 @@ get:
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields:
**triggerId**
example: 'triggerId'
Sorting is supported for the following fields: **triggerId**
example: triggerId
responses:
'200':
description: >-

View File

@@ -119,11 +119,7 @@ get:
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields:
**triggerId**
**triggerName**
Sorting is supported for the following fields: **triggerId, triggerName**
example: triggerName
responses:
'200':

View File

@@ -32,11 +32,7 @@ get:
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields:
**id**
**name**
Sorting is supported for the following fields: **id, name**
example: name
responses:
'200':

View File

@@ -21,6 +21,7 @@ get:
**email**: *eq*
example: email eq "john.doe@company.com"
- in: query
name: sorters
schema:
@@ -30,10 +31,8 @@ get:
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields:
**email**
Sorting is supported for the following fields: **email**
example: email
responses:
'200':
description: List of Email Status

View File

@@ -41,20 +41,17 @@ get:
type: string
example: status eq "Failed"
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)
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:
**start_time**: *eq, lt, lte, gt, gte*
**startTime**: *eq, lt, le, gt, ge*
**status**: *eq*
required: false
responses:
'200':
description: >-

View File

@@ -22,8 +22,9 @@ get:
format: comma-separated
description: >-
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **name, created, modified**
Sorting is supported for the following fields: **name, created, modified**
example: name,-modified
required: false
responses:

View File

@@ -22,8 +22,9 @@ get:
format: comma-separated
description: >-
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **name, created, modified**
example: name,-modified
required: false
responses:

View File

@@ -16,7 +16,8 @@ get:
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 Governance Group fields and operators:
Filtering is supported for the following fields and operators:
**id**: *eq, in*
@@ -31,8 +32,9 @@ get:
format: comma-separated
description: >-
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **name, created, modified**
example: name,-modified
required: false
responses:

View File

@@ -143,6 +143,11 @@ tags:
In Account Aggregation, administrators can view the account aggregations' statuses and details in the Account Activity Log.
Refer to [Loading Account Data](https://documentation.sailpoint.com/saas/help/accounts/loading_data.html) for more information about account aggregations.
- name: Account Usages
description: |
Use this API to implement account usage insight functionality.
With this functionality in place, administrators can gather information and insights about how their tenants' source accounts are being used.
This allows organizations to get the information they need to start optimizing and securing source account usage.
- name: Accounts
description: |
Use this API to implement and customize account functionality.
@@ -756,6 +761,11 @@ tags:
This second option is a good way to prevent SOD violations from triggering at all.
Refer to [Handling Policy Violations](https://documentation.sailpoint.com/saas/help/sod/policy-violations.html) for more information about SOD policy violations.
- name: Source Usages
description: |
Use this API to implement source usage insight functionality.
With this functionality in place, administrators can gather information and insights about how their tenants' sources are being used.
This allows organizations to get the information they need to start optimizing and securing source usage.
- name: Sources
description: |
Use this API to implement and customize source functionality.
@@ -882,20 +892,21 @@ tags:
When they complete the work item, they can select 'Mark Complete' to add it to their list of completed work items.
Refer to [Task Manager](https://documentation.sailpoint.com/saas/user-help/task_manager.html) for more information about work items, including the different types of work items users may need to complete.
- name: Work Reassignment
description: |
Use this API to implement work reassignment functionality.
Work Reassignment allows access request reviews, certifications, and manual provisioning tasks assigned to a user to be reassigned to a different user. This is primarily used for:
- Temporarily redirecting work for users who are out of office, such as on vacation or sick leave
- Permanently redirecting work for users who should not be assigned these tasks at all, such as senior executives or service identities
Users can define reassignments for themselves, managers can add them for their team members, and administrators can configure them on any users behalf. Work assigned during the specified reassignment timeframes will be automatically reassigned to the designated user as it is created.
Refer to [Work Reassignment](https://documentation.sailpoint.com/saas/help/users/work_reassignment.html) for more information about this topic.
- name: Workflows
description: |
Workflows allow administrators to create custom automation scripts directly within IdentityNow. These automation scripts respond to [event triggers](https://developer.sailpoint.com/idn/docs/event-triggers#how-to-get-started-with-event-triggers) and perform a series of actions to perform tasks that are either too cumbersome or not available in the IdentityNow UI. Workflows can be configured via a graphical user interface within IdentityNow, or by creating and uploading a JSON formatted script to the Workflow service. The Workflows API collection provides the necessary functionality to create, manage, and test your workflows via REST.
- name: Source Usages
description: |
Use this API to implement source usage insight functionality.
With this functionality in place, administrators can gather information and insights about how their tenants' sources are being used.
This allows organizations to get the information they need to start optimizing and securing source usage.
- name: Account Usages
description: |
Use this API to implement account usage insight functionality.
With this functionality in place, administrators can gather information and insights about how their tenants' source accounts are being used.
This allows organizations to get the information they need to start optimizing and securing source account usage.
security:
- UserContextAuth: [ ]

View File

@@ -1,24 +0,0 @@
build
.idea
*.iml
.gradle
.DS_Store
/debug.log
velocity.log*
sptcbu-org-data
*~
#*#
.#*
api-client-common/out
node_modules
*.d.ts
/bin
.classpath
.project
.vscode/
.settings/
/.settings
api-client-common/bin/
design-docs/api-publisher

View File

@@ -29,7 +29,8 @@ get:
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 Entitlement fields and operators:
Filtering is supported for the following fields and operators:
**id**: *eq, in*
@@ -43,7 +44,10 @@ get:
**value**: *eq, sw*
**created, modified**: *gt, lt, ge, le*
**created**: *gt, lt, ge, le*
**modified**: *gt, lt, ge, le*
**owner.id**: *eq, in*

View File

@@ -44,7 +44,10 @@ get:
**name**: *eq, sw*
**created, modified**: *gt, lt, ge, le*
**created**: *gt, lt, ge, le*
**modified**: *gt, lt, ge, le*
**owner.id**: *eq, in*

View File

@@ -107,13 +107,10 @@ get:
type: string
format: comma-separated
description: >-
Sort results using the standard syntax described in [V3 API Standard
Collection
Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **created, modified,
accountActivityItemId**
Sorting is supported for the following fields: **created, modified, accountActivityItemId**
example: created
required: false
responses:

View File

@@ -43,15 +43,13 @@ get:
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).
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:
**type**: *eq, in* (See the `type` property in the response schema for possible values)
**type**: *eq, in*
**created**: *gt, lt, ge, le*

View File

@@ -43,15 +43,13 @@ get:
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).
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:
**type**: *eq, in* (See the `type` property in the response schema for possible values)
**type**: *eq, in*
**created**: *gt, lt, ge, le*
@@ -66,12 +64,10 @@ get:
type: string
format: comma-separated
description: >-
Sort results using the standard syntax described in [V3 API Standard
Collection
Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **type, created,
modified**
Sorting is supported for the following fields: **type, created, modified**
example: created
required: false
responses:

View File

@@ -55,7 +55,7 @@ get:
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **id**, **name**, **created**, **modified**
Sorting is supported for the following fields: **id, name, created, modified**
responses:
"200":
description: List of account objects

View File

@@ -85,7 +85,13 @@ get:
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: **name, id**
Filtering is supported for the following fields and operators:
**name**: *eq*
**id**: *eq*
example: name eq "manager template"
responses:
'200':

View File

@@ -52,7 +52,7 @@ get:
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **name**, **created**
Sorting is supported for the following fields: **name, created**
example: name
responses:
'200':

View File

@@ -27,7 +27,7 @@ get:
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 (Filtering is done by reviewer's fields):
Filtering is supported for the following fields and operators:
**id**: *eq, in*
@@ -38,7 +38,6 @@ get:
**email**: *eq, sw*
example: name eq "Bob"
- in: query
name: sorters
schema:

View File

@@ -33,7 +33,10 @@ get:
**id**: *eq, in*
**type / access.type**: *eq*
**type**: *eq*
**access.type**: *eq*
**completed**: *eq, ne*

View File

@@ -18,7 +18,7 @@ get:
Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)
Supported fields and primitive operators:
Filtering is supported for the following fields and operators:
**target**: *eq, sw*
@@ -27,29 +27,19 @@ get:
**rights**: *ca*
Supported composite operators:
*and, or*
Supported composite operators: *and, or*
All field values (second filter operands) are case-insensitive for this API.
Only a single *and* or *or* composite filter operator may be used. It must also be used between
a target filter and a rights filter, not between 2 filters for the same field.
For example,
Only a single *and* or *or* composite filter operator may be used. It must also be used between a target filter and a rights filter, not between 2 filters for the same field.
The following is valid:
*?filters=rights+ca+(%22CREATE%22)+and+target+eq+%22SYS.OBJAUTH2%22*
For example, the following is valid: `?filters=rights+ca+(%22CREATE%22)+and+target+eq+%22SYS.OBJAUTH2%22`
The following is invalid:
*?filters=rights+ca+(%22CREATE%22)+and+rights+ca+(%SELECT%22)*
The following is invalid: 1?filters=rights+ca+(%22CREATE%22)+and+rights+ca+(%SELECT%22)1
example: target eq "SYS.OBJAUTH2"
- in: path
name: certificationId

View File

@@ -28,14 +28,19 @@ get:
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:
**id**: *eq, in*
**campaign.id**: *eq, in*
**phase**: *eq*
**completed**: *eq, ne*
- in: query
name: sorters
@@ -47,6 +52,7 @@ get:
description: >-
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **name, due, signed**
responses:
'200':

View File

@@ -40,7 +40,7 @@ get:
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **id**, **name**, **priority**
Sorting is supported for the following fields: **id, name, priority**
responses:
'200':
description: List of export objects with identity profiles.

View File

@@ -42,7 +42,7 @@ get:
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **id**, **name**, **priority**
Sorting is supported for the following fields: **id, name, priority**
responses:
'200':
description: List of identityProfiles.

View File

@@ -30,11 +30,13 @@ get:
schema:
type: string
description: >-
Filter results using the standard syntax described in [V3 API Standard
Collection
Parameters](https://community.sailpoint.com/t5/IdentityNow-Wiki/V3-API-Standard-Collection-Parameters/ta-p/156407)
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:
**approvalStatus**: *eq* *Example:* approvalStatus eq "PENDING"
**approvalStatus**: *eq*
example: approvalStatus eq "Pending"
required: false
- in: query
@@ -43,9 +45,9 @@ get:
type: string
format: comma-separated
description: >-
Sort results using the standard syntax described in [V3 API Standard
Collection
Parameters](https://community.sailpoint.com/t5/IdentityNow-Wiki/V3-API-Standard-Collection-Parameters/ta-p/156407#toc-hId-2058949)
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **created, modified**
required: false
example: created

View File

@@ -57,12 +57,10 @@ get:
format: comma-separated
example: accountName,sourceId
description: >-
Sort results using the standard syntax described in [V3 API Standard
Collection
Parameters](https://community.sailpoint.com/t5/IdentityNow-Wiki/V3-API-Standard-Collection-Parameters/ta-p/156407#toc-hId-2058949)
Sorting is supported for the following fields: **id, accountName,
sourceId, manager, firstName, lastName, email, phone, startDate,
endDate, created, modified**
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields: **id, accountName, sourceId, manager, firstName, lastName, email, phone, startDate, endDate, created, modified**
- in: query
name: filters
required: false
@@ -70,12 +68,13 @@ get:
type: string
example: sourceId eq "2c91808568c529c60168cca6f90c1313"
description: >-
Filter results using the standard syntax described in [V3 API Standard
Collection
Parameters](https://community.sailpoint.com/t5/IdentityNow-Wiki/V3-API-Standard-Collection-Parameters/ta-p/156407)
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:
**sourceId**: *eq* *Example:* sourceId eq
"2c91808568c529c60168cca6f90c1313"
**sourceId**: *eq*
responses:
"200":
description: Non-Employee record objects

Some files were not shown because too many files have changed in this diff Show More