| 
									
										
										
										
											2022-01-10 17:09:20 +01:00
										 |  |  | POST {{triliumHost}}/etapi/auth/login | 
					
						
							|  |  |  | Content-Type: application/json | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   "password": "1234" | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | > {% | 
					
						
							| 
									
										
										
										
											2022-01-12 21:14:12 +01:00
										 |  |  |     client.assert(response.status === 201); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-10 17:09:20 +01:00
										 |  |  |     client.global.set("testAuthToken", response.body.authToken); | 
					
						
							|  |  |  | %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ### | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | GET {{triliumHost}}/etapi/notes/root | 
					
						
							|  |  |  | Authorization: {{testAuthToken}} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | > {% client.assert(response.status === 200); %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ### | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | POST {{triliumHost}}/etapi/auth/logout | 
					
						
							|  |  |  | Authorization: {{testAuthToken}} | 
					
						
							|  |  |  | Content-Type: application/json | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | > {% client.assert(response.status === 204); %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ### | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | GET {{triliumHost}}/etapi/notes/root | 
					
						
							|  |  |  | Authorization: {{testAuthToken}} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-12 21:14:12 +01:00
										 |  |  | > {% client.assert(response.status === 401); %} |