Public
Documentation Settings

Food Store

AUTHORIZATIONAPI Key
Key

X-API-Key

Value

{{token}}

Auth

AUTHORIZATIONAPI Key
This folder is using API Key from collectionFood Store

GETMe

http://localhost:3000/auth/me
AUTHORIZATIONBearer Token
Token

<token>

Example Request
curl
curl --location 'http://localhost:3000/auth/me'
200 OK
Example Response
json
{
  "_id": "66614a6fe7bf427d6ac92930",
  "full_name": "Jerico Katong",
  "email": "jerico@gmail.com",
  "role": "user",
  "customer_id": 2,
  "iat": 1717652256
}
X-Powered-By

Express

Content-Type

application/json; charset=utf-8

Content-Length

136

ETag

W/"88-ETed4sLBXceW11Byw7jC/phiAlc"

Date

Thu, 06 Jun 2024 05:38:58 GMT

Connection

keep-alive

Keep-Alive

timeout=5

POSTRegister

http://localhost:3000/auth/register
AUTHORIZATIONAPI Key
This request is using API Key from collectionFood Store
Bodyformdata
full_name

Jerico Katong

email

jericoadmin@gmail.com

password

12345

role

user

Example Request
curl
curl --location 'http://localhost:3000/auth/register' \
--form 'full_name="admin"' \
--form 'email="admin@gmail.com"' \
--form 'password="12345"' \
--form 'role="admin"'
200 OK
Example Response
json
{
  "full_name": "admin",
  "email": "admin@gmail.com",
  "password": "$2b$10$ck3aL3bUyml60VpUj5gG5eh0FxRJpAmqknjKMxg.atSTj12RqHS5.",
  "role": "admin",
  "token": [],
  "_id": "66614a24e7bf427d6ac9292c",
  "createdAt": "2024-06-06T05:33:24.739Z",
  "updatedAt": "2024-06-06T05:33:24.739Z",
  "customer_id": 1,
  "__v": 0
}
X-Powered-By

Express

Content-Type

application/json; charset=utf-8

Content-Length

282

ETag

W/"11a-FEAs3c8gg8bfccBAD7cpfjWYm+s"

Date

Thu, 06 Jun 2024 05:33:24 GMT

Connection

keep-alive

Keep-Alive

timeout=5

POSTLogin

http://localhost:3000/auth/login
AUTHORIZATIONAPI Key
This request is using API Key from collectionFood Store
Bodyformdata
email

jericokatong@gmail.com

password

12345

Example Request
curl
curl --location 'http://localhost:3000/auth/login' \
--form 'email="jerico@gmail.com"' \
--form 'password="12345"'
200 OK
Example Response
json
{
  "message": "logged in successfully",
  "user": {
    "_id": "66614a6fe7bf427d6ac92930",
    "full_name": "Jerico Katong",
    "email": "jerico@gmail.com",
    "role": "user",
    "customer_id": 2
  },
  "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJfaWQiOiI2NjYxNGE2ZmU3YmY0MjdkNmFjOTI5MzAiLCJmdWxsX25hbWUiOiJKZXJpY28gS2F0b25nIiwiZW1haWwiOiJqZXJpY29AZ21haWwuY29tIiwicm9sZSI6InVzZXIiLCJjdXN0b21lcl9pZCI6MiwiaWF0IjoxNzE3NjUyMjU2fQ.-LLjLq3tD6KT_p4w_zGoyHcP3dzD6TzS8WAHpUW8wy4"
}
X-Powered-By

Express

Content-Type

application/json; charset=utf-8

Content-Length

437

ETag

W/"1b5-MeCpFy6OXe/JXzoAxQjjjQAmIMQ"

Date

Thu, 06 Jun 2024 05:37:36 GMT

Connection

keep-alive

Keep-Alive

timeout=5