POST /auth /registration /code

By using POST /auth /registration /code API, you can send the user a new registration code. The previous registration code will be marked invalid. If the user has already completed their registration no action will be taken.

Authentication
No authentication required.
Required Permissions
No permissions required.
Parameters

username: Minimum length: 1

orgId: Minimum length: 1

Request body
{
curl --request PUT \
  --url https://api.digitalassets.ibm.com/auth/registration/code \
  --header 'Content-Type: application/json' \
  --data '{
  "username": "<string>",
  "orgId": "<string>"
}'
Response
200: Success
{
  "message": "<string>"
}