AUTHENTICATION

Authentication api

POST /https://api.callify.io/auth/login

This api is used to login to application using email and password

Headers

Name
Value

Content-Type

application/json

Authorization*

Bearer <token>

Request Body

Name
Type
Description

Email*

string

User should enter the email to this field.

Password*

varchar

User should enter the password to this field

Company uuid*

string

user should enter the company uuid of the account

Role uuid*

string

User should enter the role uuid fo each role they login.

Example curl

curl -X 'POST' \
  'https://testapi.callify.io/auth/login' \
  -H 'accept: */*' \
  -H 'Content-Type: application/json' \
  -d '{
  "email": "[email protected]",
  "password": "Vasanth@1",
  "companyUuid": "cc7171e3-6174-4233-9fc5-2fb4b120efd6",
  "roleUuid": "e9733617-91c7-4e98-9052-e48afd7305fd"
}'

Response

Last updated