EZCart Docs
ApiV1StoreAuthLogin

Login with email and password

Login with email and password.

POST
/v1/store/auth/login

Request Body

application/json

email*string
Formatemail
password*string
Length1 <= length

Response Body

application/json

curl -X POST "https://api-pub.ezcart.io/v1/store/auth/login" \  -H "Content-Type: application/json" \  -d '{    "email": "[email protected]",    "password": "string"  }'
{
  "customerId": "string",
  "tokens": {
    "accessToken": "string",
    "refreshToken": "string",
    "expiresIn": 0
  }
}