Authentication is via header based token. Token can be generated via following endpoint using the credentials provided over the email.
POST /content/user/token/
{
"username": "username provided to the organization",
"password": "password provided to the organization"
}
{
"token": "null / token"
}
curl -X POST 'https://api.brahmastra.tech/content/user/token/' -d 'username=demo&password=demo'