Files
developer.sailpoint.com/static/api-specs/idn/beta/paths/mfa-config-test.yaml
2022-11-17 18:52:19 +00:00

41 lines
1.2 KiB
YAML

get:
operationId: testMFAConfig
tags:
- MFA Configuration
summary: Test configuration of a MFA method
description: >-
This API validates that the configuration is valid and will properly
authenticate with the MFA provider identified by the method path parameter.
A token with ORG_ADMIN authority is required to call this API.
security:
- oauth2: [idn:mfa-config:read]
parameters:
- in: path
name: method
schema:
type: string
example: okta-verify
required: true
description: >-
The name of the MFA method.
The currently supported method name is okta-verify.
responses:
"200":
description: The result of configuration test for the MFA provider.
content:
application/json:
schema:
$ref: "../schemas/MfaConfigTestResponse.yaml"
example: { "state": "SUCCESS", "error": null }
"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"