TuxoPay Docs
APIAuthentication

Get available teams

Get list of teams a user can create tokens for

POST
/auth/teams

Request Body

application/jsonRequired
email
Required
string
Format: "email"
password
Required
string
curl -X POST "https://orchestrator.tuxopay.com/api/auth/teams" \
  -H "Content-Type: application/json" \
  -d '{
    "email": "[email protected]",
    "password": "password"
  }'

Teams retrieved successfully

{
  "teams": [
    {
      "id": 1,
      "name": "My Company"
    }
  ]
}