Create a user
Creates a single user. Supply EmailAddress, DisplayName, Name, and Password. Use WITH (OUTPUT=1) to return the created user. Availability depends on Jira/Atlassian configuration.
INSERT INTO Users(EmailAddress, DisplayName, Name, Password)
VALUES ('my@user.com', 'John Doe', 'John', 'xhedkspstdadaothoua')
WITH (OUTPUT=1)