API Functional Testing Results - Postman
The main purpose of this testing was to check if specific API functions work correctly by sending manual requests and validating the system's responses.
1. Test Setup
Configuration Details:
-
Base API URL:
https://athena-stagin-sentry.lankapanel.net -
Testing Tool Used: Postman (v11)
Functions Tested:
-
User Login - Checks if users can log into the system using correct credentials.
-
Create User - Tests the ability to add a new user into the system.
2. Test Summary
| API Function | Status Code | Result Summary |
|---|---|---|
POST /auth/login | 201 Created | Successfully logged in and saved token |
POST /user | 201 Created | User was created successfully |
3. Test Screenshots
1. Login API Test (/auth/login)
This test verifies that users can log in using valid credentials.
The returned token was stored in an environment variable for use in other API calls.

2. Create User API Test (/user)
This test confirms that a new user can be created by sending their details (email, password, roles, etc.).
The API returned a success message confirming user creation.

Conclusion
Both API functions were tested successfully using Postman:
-
Login function confirmed that authentication works as expected.
-
Create User function proved that new users can be added through the API as expected.