getmancar.py 460 B

1234567891011121314151617
  1. from db0mb3r.services.service import Service
  2. class Getmancar(Service):
  3. phone_codes = [380]
  4. async def run(self):
  5. await self.post(
  6. "https://crm.getmancar.com.ua/api/veryfyaccount",
  7. json={
  8. "phone": "+" + self.formatted_phone,
  9. "grant_type": "password",
  10. "client_id": "gcarAppMob",
  11. "client_secret": "SomeRandomCharsAndNumbersMobile",
  12. },
  13. )