コンテンツにスキップ

Resend step-up challenge

POST
/auth/step-up/actions/{actionId}/resend
Code sample: Shell / cURL
curl --request POST \
--url https://auth.example.com/auth/step-up/actions/example/resend \
--header 'Content-Type: application/json' \
--data '{}'

Resend the active challenge for a step-up action. Requires Idempotency-Key.

actionId
required
string

Resend step-up challenge delivery.

Media type application/json
object
key
additional properties
Example
{}

Step-up resend result.

Media type application/json
object
action_id
string
status
string
resend_after_seconds
integer format: int64
Example
{
"action_id": "step_123",
"status": "pending",
"resend_after_seconds": 60
}

Error response.

Media type application/json
object
error
string
message
string
error_description
string
key
additional properties
Example generated
{
"error": "example",
"message": "example",
"error_description": "example"
}