Authenticates company by email/password and rotates API key. Previous key becomes invalid after successful login.
- Mock serverhttps://b2b-app.lumowallet.io/_mock/apis/auth/company/login
- Productionhttps://b2b.lumowallet.io/auth/company/login
- Staginghttps://b2b-staging.lumowallet.io/auth/company/login
curl -i -X POST \
https://b2b-app.lumowallet.io/_mock/apis/auth/company/login \
-H 'Content-Type: application/json' \
-d '{
"email": "[email protected]",
"password": "string"
}'Response
{ "company": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "name": "string", "email": "[email protected]" }, "apiKey": "lb2b_5f7f1f7b7f034dbf81b0b8b8d7c0b9f1" }