Create Registration URL
post
/oaa/runtime/totp/registrationurl/v1/
Use this API to generate a TOTP registration URL.
Request
There are no request parameters for this operation.
Supported Media Types
- application/xml
- application/json
Root Schema : schema
Type:
object
Details for creating a TOTP registration URL.
Show Source
-
deviceName: string
Name of the device. This should be recognizable by the user.
-
groupName(required): string
User's group name.
-
uniqueUserId: string
Immutable ID of the user in the external systems. If this is present, then it takes precedence over userId + groupId combination.
-
userName(required): string
User's username.
Root Schema : schema
Type:
object
Details for creating a TOTP registration URL.
Show Source
-
deviceName: string
Name of the device. This should be recognizable by the user.
-
groupName(required): string
User's group name.
-
uniqueUserId: string
Immutable ID of the user in the external systems. If this is present, then it takes precedence over userId + groupId combination.
-
userName(required): string
User's username.
Response
Supported Media Types
- application/xml
- application/json
- text/plain
201 Response
Registration URL has been created.
Root Schema : CreateTotpConfigResponse
Type:
object
Details for creating a totp config for a user.
Show Source
-
configUrl(required): string
The TOTP config URL
-
deviceName: string
Name of the user's device
-
expiryTimeInMs: integer
(int64)
The expiration time of the config URL and pin
-
pin(required): string
The TOTP config pin number
400 Response
Bad Request
401 Response
Unauthorized
403 Response
Could not create TOTP config
422 Response
Requested user information not found
500 Response
Internal server error
503 Response
Service Unavailable
Examples
The following example shows a sample request and response for generating a Time-based One Time Password (TOTP) registration URL.
cURL Command to Generate a TOTP Registration URL in JSON Format
curl --location --request POST '<OAAService>/oaa/runtime/totp/registrationurl/v1' \ --header 'Content-Type: application/json' \ --header 'Authorization: Basic <Base64Encoded(<username>:<password>)>' \ --data '{ "userName": "user1", "groupName": "financeapp", "uniqueUserId": "22a29071-16f2-4b69-a94c-73be672e34eb", "deviceName": "JoeSmithDevice3" }'
Sample Response in JSON Format
{ "configUrl": "oraclemobileauthenticator://settings?ServiceName::=JoeSmithDevice3&ServiceType::=SharedSecret&SharedSecretAuthServerType::=HTTPBasicAuthentication&LoginURL::=https://oke-c4wgzrymu2d-nqfrtzofgqa-so4pjz7ycha-2.subnet2.idmociclou1iad.oraclevcn.com:31993/oaa/rui/totpPreferences/v1?contextInfo=dXNlcjE6ZmluYW5jZWFwcDoyMmEyOTA3MS0xNmYyLTRiNjktYTk0Yy03M2JlNjcyZTM0ZWI6YTlkMzY1OTUtMGUwNC00NWY0LTgyZDItNWJhMWVlMDIwYzkxOkpvZVNtaXRoRGV2aWNlMw==", "deviceName": "JoeSmithDevice3", "pin": "Mjg2ODkz", "expiryTimeInMs": 1741387998948 }
cURL Command to Generate a TOTP Registration URL in XML Format
curl --location --request POST '<OAAService>/oaa/runtime/totp/registrationurl/v1' \ --header 'Content-Type: application/xml' \ --header 'Accept: application/xml' \ --header 'Authorization: Basic <Base64Encoded(<username>:<password>)>' \ --data '<?xml version="1.0" encoding="UTF-8" ?> <CreateTotpConfigRequest> <userName>user1</userName> <groupName>financeapp</groupName> <uniqueUserId>22a29071-16f2-4b69-a94c-73be672e34eb</uniqueUserId> <deviceName>JoeSmithDevice3</deviceName> </CreateTotpConfigRequest>'
Sample Response in XML Format
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <CreateTotpConfigResponse> <configUrl>oraclemobileauthenticator://settings?ServiceName::=JoeSmithDevice3&ServiceType::=SharedSecret&SharedSecretAuthServerType::=HTTPBasicAuthentication&LoginURL::=https://oke-c4wgzrymu2d-nqfrtzofgqa-so4pjz7ycha-2.subnet2.idmociclou1iad.oraclevcn.com:31993/oaa/rui/totpPreferences/v1?contextInfo=dXNlcjE6ZmluYW5jZWFwcDoyMmEyOTA3MS0xNmYyLTRiNjktYTk0Yy03M2JlNjcyZTM0ZWI6NGViNTNlYjktYzFjZS00ZTBhLWI3MjktNWRjYzMwYmM1MTNhOkpvZVNtaXRoRGV2aWNlMw==</configUrl> <deviceName>JoeSmithDevice3</deviceName> <pin>MjY3Njcy</pin> <expiryTimeInMs>1741388137764</expiryTimeInMs> </CreateTotpConfigResponse>