I'm trying to do something simple:
post http://localhost:3001/api/v1/auth HTTP/1.1
Content-Type: application/json
{
"username": "name",
"password" : "password"
}
This sends me an authorisation token which I want to use in future calls.
I understand how to update .vscode/settings.json to store environment variables but I want to store the auth token I've just received.