Matrix Accounts
https://github.com/spantaleev/matrix-docker-ansible-deploy/blob/master/docs/registering-users.md
Create Account
ansible-playbook -i inventory/hosts setup.yml --extra-vars='username=drok password=changemenowplease admin=yes' --tags=register-user
Access Token
curl -XPOST -d '{
"identifier": { "type": "m.id.user", "user": "USERNAME" },
"password": "PASSWORD",
"type": "m.login.password",
"device_id": "YOURDEVICEID"
}' 'https://matrix.YOURDOMAIN/_matrix/client/r0/login'