So I had a project where I needed to login with username and password instead of a Token and I could not find any documentation. I spent around an hour looking thru the perl API (I do not code in perl so the  syntax was totally alien to me) so I thought I would share it for other.
Firstly we will need at Ticket to access any other resources, to get a ticket we will send a POST request to
	
		
. 
You will need to set the query parameters with your username, password, realm and otp if configured like so
	
		
After which you will get back a JSON containing a ticket and CSRFPreventionToken, we will set these 2 parameters as a header.
The CSRFPreventionToken uses the Header name CSRFPreventionToken and the ticket uses the header name cookie, however the ticket needs to be pre-pended with PVEAuthCookie= before being sent.
Congrats You now can use logins with your username and password.
				
			Firstly we will need at Ticket to access any other resources, to get a ticket we will send a POST request to
		Code:
	
	http://{yourserver}:8006/api2/json/access/ticketYou will need to set the query parameters with your username, password, realm and otp if configured like so
		Code:
	
	https://{server}:8006/api2/json/access/ticket?username={username}&password={password}&realm={pam}After which you will get back a JSON containing a ticket and CSRFPreventionToken, we will set these 2 parameters as a header.
The CSRFPreventionToken uses the Header name CSRFPreventionToken and the ticket uses the header name cookie, however the ticket needs to be pre-pended with PVEAuthCookie= before being sent.
Congrats You now can use logins with your username and password.
 
	 
	 
 
		