Why are the template schemes not working?

Jira does not allow to create the shared projects when customers use personal access tokens.

This behaviour is not related to the port used or LDAPS.

As a result, you can only create shared projects with createProject when you log in with your username and password:

--user {username} --password {password}, as shown in the example.

 

DON’T DO

jira -s INSTANCE_URL --user USER_NAME --token "******" --action createProject --project "TEST" --lead USER_NAME --template "TEST" --name "Test"

 

DO

jira -s INSTANCE_URL --user USER_NAME --password "******" --action createProject --project "TEST" --lead USER_NAME --template "TEST" --name "Test"