Do not do it. Use Rest Api instead.
https://docs.atlassian.com/software/jira/docs/api/REST/1000.1609.0/#api/2/user-createUser
You should not use SQL to modify any data in Jira. Your Jira will become unreliable and prone to errors and unexpected behaviour
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
For SQL inserts:
But seriously, use REST.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Kindly read the documentation I provided.
You should execute POST /rest/api/2/user with payload
{ "name": "charlie", "password": "abracadabra", "emailAddress": "charlie@atlassian.com", "displayName": "Charlie of Atlassian", "applicationKeys": [ "jira-core" ] }
That is all you should do.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.