TuxoPay Docs
APIAuthentication

Get available teams

Get list of teams a user can create tokens for

POST
/auth/teams
emailstring
Formatemail
passwordstring

Response Body

curl -X POST "https://orchestrator.tuxopay.com/api/auth/teams" \  -H "Content-Type: application/json" \  -d '{    "email": "[email protected]",    "password": "password"  }'
{
  "teams": [
    {
      "id": 1,
      "name": "My Company"
    }
  ]
}
{
  "message": "string",
  "errors": {}
}