mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-09 04:19:16 +00:00
* ISCCOMPLI-834: move 'alerts' from FullCampaign to SlimCampaign * ISCCOMPLI-834: move 'alerts' from FullCampaign to SlimCampaign * ISCCOMPLI-834: add totalCertifications and completedCertifications * ISCCOMPLI-834: add integer format * ISCCOMPLI-834: move created field from Campaign to SlimCampaign' by github action: 7023526642
43 lines
1.0 KiB
YAML
43 lines
1.0 KiB
YAML
post:
|
|
operationId: sendTokenAuthRequest
|
|
tags:
|
|
- MFA Controller
|
|
summary: Authenticate Token provided MFA method
|
|
description: >-
|
|
This API Authenticate user in Token MFA method.
|
|
security:
|
|
- UserContextAuth: [idn:mfa:verify]
|
|
requestBody:
|
|
required: true
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: "../schemas/TokenAuthRequest.yaml"
|
|
example:
|
|
{
|
|
"token": "12345",
|
|
"userAlias": "will.albin",
|
|
"deliveryType": "EMAIL_WORK"
|
|
}
|
|
|
|
responses:
|
|
"200":
|
|
description: Token authenticated status.
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: "../schemas/TokenAuthResponse.yaml"
|
|
example:
|
|
{
|
|
"status": "PENDING"
|
|
}
|
|
"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" |