Cognito API Endpoint
The purpose of this endpoint is to provide user info to the Dashboard’s admin portal, along with user management.
AWS Console Info:
- Link: https://bcit-iot-coc.signin.aws.amazon.com/console
- Username: dashboard_admin
- Password: YVR_admin_1!
Once logged into AWS, change the region to Oregon, go to Cognito, then “yvr” user pool
Note: Authorization (JWT token) is required for all endpoints
GET ALL USER
- Endpoint: https://c5hn9pagt5.execute-api.us-west-2.amazonaws.com/prod/user
- Request:
- Header should include (Authorization: JWT token)
- GET Request
- No body required
- Response:
ADD A NEW USER
- Endpoint: https://c5hn9pagt5.execute-api.us-west-2.amazonaws.com/prod/user
- Request:
- Header should include (Authorization: JWT token)
- POST Request
- Body Required, include the following:
- Operation is “add”
- Password must be 8 characters minimum length
- At least 1 number
- At least 1 lowercase letter
- At least 1 uppercase letter
- At least 1 special character
- Role could either be “admin” or “user”
- Example Request:
- Example Response:
UPDATE A USER
- Endpoint: https://c5hn9pagt5.execute-api.us-west-2.amazonaws.com/prod/user
- Request:
- Header should include (Authorization: JWT token)
- POST Request
- Body Required, include the following:
- Operation is “update”
- Old email
- New email
- Password must be 8 characters minimum length
- At least 1 number
- At least 1 lowercase letter
- At least 1 uppercase letter
- At least 1 special character
- Role could either be “admin” or “user”
- Example Request:
- Example Response:
DELETE USER
- Endpoint: https://c5hn9pagt5.execute-api.us-west-2.amazonaws.com/prod/user
- Request:
- Header should include (Authorization: JWT token)
- POST Request
- Body Required, include the following:
- Operation is “delete”
- Example Request:
- Example Response:
CHECK USER’S ROLE
*Note this endpoint is different from previous ones, have /role in the url path
- Endpoint: https://c5hn9pagt5.execute-api.us-west-2.amazonaws.com/prod/user/role
- Request:
- Header should include (Authorization: JWT token)
- POST Request
- Body Required, include the following:
- Example Request:
- Example Response:
Cognito Lambda Functions
All Cognito related lambda functions are located in the Oregon region.
- yvr-stage-cognito-get-users-info function is used to pull all cognito users information
- yvr-stage-cognito-get-role function is used to grab the user’s role given the email address
- yvr-stage-cognito-add-update-delete-user function is used to add, modify, and delete a cognito user