Hello
I´m using the AD create User operation. In the input fields I miss the description for the AD User.
I can add this input field but there is no update in the AD.
regards Alex.
Cybersecurity
DevOps Cloud (ADM)
IT Operations Cloud
If an answer to your question is correct, click on "Verify Answer" under the "More" button. The answer will now appear with a checkmark. Please be sure to always mark answers that resolve your issue as verified. Your fellow Community members will appreciate it!  Learn more
Hello
I´m using the AD create User operation. In the input fields I miss the description for the AD User.
I can add this input field but there is no update in the AD.
regards Alex.
You can only use inputs the are supported by the operation, commonly documented in the operations Description tab. If the capability you need is not there you can always use other methods such as using other operations supporting the target service or by creating a new operation.
For AD user with description or any other field in AD user form you can fallback to PowerShell Script operation in the Base content pack. Use New-ADUser command to create the user with descriptions and other options. Make your user name and other options as a flow variable and there you have your reusable subflow for the future.
New-ADUser -name "${newUser}" -description "${description}"
Although I am an OpenText employee, I am speaking for myself and not for OpenText.
If you found this post useful, give it a “Like” or click on "Verify Answer" under the "More" button