Generate challenge via GET
GET/tan/generate
Generates a TAN challenge and delivers it to the recipient via the configured channel,
accepting delivery parameters as URL query parameters.
The generated passcode is stored in the user's session (identified by the SecToken present in the request)
and returned in the JSON response under the challenge field.
Required parameters not pre-configured on the service — such as sender, recipient, or message —
must be supplied as query parameters; any additional unrecognized parameters are forwarded to the
underlying channel for custom configuration.
Request
Query Parameters
sender string
recipient string
message string
lang string
Responses
- 200
- 400
- 500
Successful operation
- application/json
- application/xml
- Schema
- Example (from schema)
Schema
status string
challenge string
{
"status": "string",
"challenge": "string"
}
- Schema
- Example (from schema)
Schema
status string
challenge string
<root>
<status>string</status>
<challenge>string</challenge>
</root>
Required delivery parameter absent (sender, recipient, or message)
Channel delivery failed
Loading...