Public
Documentation Settings

EpicEvents

EpicEvents is an event management and consulting company that meets the needs of start-ups wanting to organize “epic parties”. This API is designed to allow employees to better manage customers, contracts and events.

Login / Signup

POSTSignup [ADMIN]

http://127.0.0.1:8000/api/signup/

Signup a new user and gives him access and refresh tokens.

Permissions:

  • Management team only

Accepted body data values:

first_name: string
last_name: string
email: valid email address
password: string


Bodyformdata
first_name
last_name
email
password
Example Request
curl
curl --location 'http://127.0.0.1:8000/api/signup/' \
--form 'first_name=""' \
--form 'last_name=""' \
--form 'email=""' \
--form 'password=""'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

POSTLogin

http://127.0.0.1:8000/api/login/

Login a user with it's email and password, returns access and refresh token.

PERMISSONS:

  • Everyone (management, sales, support)

Accepted body data values:

email: valid email address
password: string


Bodyformdata
email
password
Example Request
curl
curl --location 'http://127.0.0.1:8000/api/login/' \
--form 'email=""' \
--form 'password=""'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers