Skip to main content
POST
/
user
/
login-password
Login with email and password
curl --request POST \
  --url https://api.boosterberg.com-beta.com/v1/user/login-password \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "user@example.com",
  "password": "password123"
}
'
{
  "fbid": 123,
  "email": "<string>",
  "first_name": "<string>",
  "last_name": "<string>",
  "phone_number": "<string>",
  "agency_id": 123,
  "agency_name": "<string>",
  "credit_balance": "500.00"
}

Body

application/json
email
string
required

User email address

Example:

"user@example.com"

password
string
required

User password

Example:

"password123"

Response

200 - application/json

Returns User object

fbid
integer
email
string
first_name
string
last_name
string
phone_number
string
agency_id
integer
agency_name
string
credit_balance
number<float>
Example:

"500.00"