Automated commit by github action: 3370103030

This commit is contained in:
GitHub Action Bot
2022-11-01 14:16:34 +00:00
parent 1bf60df306
commit 57f2ebc36e
3 changed files with 27 additions and 3 deletions

View File

@@ -5,7 +5,15 @@ post:
summary: Query Password Info summary: Query Password Info
# security: # security:
# - oauth2: [API] # - oauth2: [API]
description: This API is used to query password related information. A token with API authority is required to call this API. description: |
This API is used to query password related information.
A token with [API authority](https://developer.sailpoint.com/idn/api/authentication#client-credentials-grant-flow)
is required to call this API. "API authority" refers to a token that only has the "client_credentials"
grant type, and therefore no user context. A [personal access token](https://developer.sailpoint.com/idn/api/authentication#personal-access-tokens)
or a token generated with the [authorization_code](https://developer.sailpoint.com/idn/api/authentication#authorization-code-grant-flow)
grant type will **NOT** work on this endpoint, and a `403 Forbidden` response
will be returned.
requestBody: requestBody:
required: true required: true
content: content:
@@ -44,7 +52,11 @@ post:
} }
'400': '400':
$ref: '../../v3/responses/400.yaml' $ref: '../../v3/responses/400.yaml'
'401':
$ref: '../../v3/responses/401.yaml'
'403': '403':
$ref: '../../v3/responses/403.yaml' $ref: '../../v3/responses/403.yaml'
'429':
$ref: '../../v3/responses/429.yaml'
'500': '500':
$ref: '../../v3/responses/500.yaml' $ref: '../../v3/responses/500.yaml'

View File

@@ -3,7 +3,12 @@ post:
tags: tags:
- Password Management - Password Management
summary: Set Identity's Password summary: Set Identity's Password
description: This API is used to set a password for an identity. The password can only be set by the actual identity owner or by a trusted API client application. description: |
This API is used to set a password for an identity.
An identity can change their own password if they use a token generated by their IDN user, such as a [personal access token](https://developer.sailpoint.com/idn/api/authentication#personal-access-tokens) or ["authorization_code" derived OAuth token](https://developer.sailpoint.com/idn/api/authentication#authorization-code-grant-flow).
A token with [API authority](https://developer.sailpoint.com/idn/api/authentication#client-credentials-grant-flow) can be used to change **any** identity's password. "API authority" refers to a token that only has the "client_credentials" grant type.
requestBody: requestBody:
required: true required: true
content: content:
@@ -37,5 +42,7 @@ post:
$ref: '../../v3/responses/401.yaml' $ref: '../../v3/responses/401.yaml'
'403': '403':
$ref: '../../v3/responses/403.yaml' $ref: '../../v3/responses/403.yaml'
'429':
$ref: '../../v3/responses/429.yaml'
'500': '500':
$ref: '../../v3/responses/500.yaml' $ref: '../../v3/responses/500.yaml'

View File

@@ -3,7 +3,12 @@ post:
tags: tags:
- Password Management - Password Management
summary: Set Identity's Password summary: Set Identity's Password
description: This API is used to set a password for an identity. The password can only be set by the actual identity owner or by a trusted API client application. description: |
This API is used to set a password for an identity.
An identity can change their own password if they use a token generated by their IDN user, such as a [personal access token](https://developer.sailpoint.com/idn/api/authentication#personal-access-tokens) or ["authorization_code" derived OAuth token](https://developer.sailpoint.com/idn/api/authentication#authorization-code-grant-flow).
A token with [API authority](https://developer.sailpoint.com/idn/api/authentication#client-credentials-grant-flow) can be used to change **any** identity's password. "API authority" refers to a token that only has the "client_credentials" grant type.
requestBody: requestBody:
required: true required: true
content: content: