User Guide
Technical Guide
Test Results
Support and Information
  1. Documentation
  2. Athena
  3. Test Results
  4. Api Functional Testing Postman
Back toΒ Test Results

API Functional Testing - Postman

Test Results
Updated: 6/18/2025

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:

  1. User Login - Checks if users can log into the system using correct credentials.

  2. Create User - Tests the ability to add a new user into the system.


2. Test Summary

API FunctionStatus CodeResult Summary
POST /auth/login201 CreatedSuccessfully logged in and saved token
POST /user201 CreatedUser 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.

login-postman.png


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.

create-user-postman.png


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.


Was this page helpful?

Back toΒ Test Results