API Gateway
The GET section of the Banking Core Services API allows you to retrieve information from the API Gateway. This section provides functionality for fetching data from the API endpoint. Whether you're a developer or a non-technical user, this section will guide you in integrating the API and retrieving the specific information you need. The GET method is commonly used for retrieving data, and it ensures that your requests are efficient and secure. By following the instructions in this section, you'll be able to access the necessary data and incorporate it into your own applications or systems. Additionally, the GET section provides details on any special features or considerations that may be relevant for retrieving data from the API Gateway. By understanding these considerations, you can make the most out of the API integration and ensure a smooth data retrieval process.
What made this section unhelpful for you?
Base URL
Production:
http://localhost:8080
What made this section unhelpful for you?
User service
The User service APIs allows you to retrieve user information from the Banking Core Services. This API endpoint enables you to fetch details such as user profiles and more. It is designed to provide a straightforward and efficient way to access user data for various use-cases.
It is important to note that this API is not limited to developers only. Non-technical roles, such as product managers or analysts, can also benefit from the information provided by this API. They can leverage the data retrieved from the User service to gain insights into user behavior, identify trends, and make informed business decisions.
Additionally, the User service API offers special features and considerations to enhance integration capabilities. For example, it supports pagination, allowing you to retrieve large sets of user data in manageable chunks. This can be particularly useful when dealing with a large number of users or when implementing features like infinite scrolling in your application.
Overall, the User service APIs provides a powerful and user-friendly way to access user information from the Banking Core Services. Its straightforward functionality, extensive data retrieval capabilities, and special features make it an essential tool for seamlessly integrating user data into your applications and workflows.
What made this section unhelpful for you?
Create a user
Create a user in the Banking Core Services API by making a POST request to the /api/users/register endpoint. This API allows you to register a new user and returns relevant information about the created user.
To create a user, you need to include the required parameters in the request body. Once the request is successful, the API will create a new user and provide a response with details such as the user's unique identifier, username, and account creation timestamp.
This API endpoint is useful for applications that require user registration functionality, such as online banking platforms, fintech applications, or any system that needs to manage user accounts securely.
When integrating this API, make sure to handle any potential errors or validation issues. For example, if the provided username is already taken, the API will return an appropriate error response. Additionally, you may want to consider implementing measures to ensure the security of user registration, such as enforcing password complexity requirements or enabling captcha verification.
By utilizing the POST /api/users/register endpoint, you can easily integrate user registration functionality into your application, providing a seamless experience for your users.
Body Parameters
The first name of the user to be registered. It should be the user's first name or given name.
The last name of the user to be registered. It should be the user's last name or surname.
The email ID of the user to be registered. It should be a valid email address that follows the specified email format.
The contact number of the user to be registered. It should be a valid phone number in the specified format.
The password for the user to be registered. It should be a strong and secure password that meets the specified password requirements.
Response
Response Attributes
What made this section unhelpful for you?
Response
{
"responseCode": "200",
"responseMessage": "User created successfully"
}
What made this section unhelpful for you?
Read all users
This API endpoint allows you to retrieve information about all users in the system. By making a GET request to this endpoint GET /api/users
, you can access a list of all users' details. This functionality is useful for various use-cases such as generating reports, monitoring user activity, or populating user directories. The response will contain comprehensive information about each user, including their name, contact information, and any additional data associated with their account. Keep in mind that this endpoint does not require any specific parameters to be included in the request. Overall, the GET /api/users
endpoint provides a straightforward way to retrieve all user data in the system for integration purposes.
Response
Response Attributes
Show child attributes
What made this section unhelpful for you?
Response
[
{
"userId": 1,
"emailId": "kartikkulkarni1234@gmail.com",
"password": null,
"identificationNumber": "5ce7bb5d-9434-4cc2-a218-45ba2364ce5c",
"authId": "2feb69ed-d829-460e-bd09-446de6f92764",
"status": "APPROVED",
"userProfileDto": {
"firstName": "Karthik",
"lastName": "Kulkarni",
"gender": "Male",
"address": "Behind Prasad Lodge",
"occupation": "Student",
"martialStatus": "Single",
"nationality": "Indian"
}
}
]
What made this section unhelpful for you?
Update user status
Update User Status
This API endpoint, PATCH /api/users/2, allows you to update the status of a user. By making a PATCH request to this endpoint, you can modify the status of the user with the ID 2 in the Banking Core Services project.
The use-cases for this API include updating a user's status to activate or deactivate their account, modify their access level, or change their account privileges. This endpoint provides a flexible way to manage user statuses based on your project requirements.
When using this API, ensure that you include the necessary parameters and authentication details in your request. Additionally, be aware that the response will provide confirmation of the status update, along with any relevant information or error messages.
It is important to note that the functionality of this API endpoint is specific to the Banking Core Services project. If you are integrating this API into your project, make sure to adapt the endpoint and modify the user ID accordingly.
Please refer to the documentation sections related to parameters, request examples, and authentication for detailed information on how to effectively use this API endpoint in your integration process.
Body Parameters
The status parameter is used to update the status of a user. The valid values for this parameter are "active", "inactive", or "suspended".
Response
Response Attributes
What made this section unhelpful for you?
Response
{
"responseCode": "200",
"responseMessage": "User updated successfully"
}
What made this section unhelpful for you?
Read user by id
Read User by ID
The GET /api/users/1
endpoint allows you to retrieve information about a specific user by their ID. This API functionality is crucial for retrieving user data when building applications that require user-related information.
By making a request to this endpoint with the user ID as a parameter, you can retrieve detailed information about the user, including their name, email, address, and any other relevant details. This data can be valuable for various use cases, such as displaying user profiles, populating user information forms, or customizing user-specific experiences.
Please note that the user ID should be provided as a parameter in the request URL. It is essential to ensure that the correct user ID is passed to retrieve accurate information.
Remember, this endpoint is designed to provide straightforward integration and seamless retrieval of user-specific data. Whether you are a developer or a non-technical role, this API section offers a clear and structured approach to fetch user details efficiently.
Response
Response Attributes
Show child attributes
What made this section unhelpful for you?
Response
{
"userId": 1,
"emailId": "kartikkulkarni1234@gmail.com",
"password": null,
"identificationNumber": "5ce7bb5d-9434-4cc2-a218-45ba2364ce5c",
"authId": "2feb69ed-d829-460e-bd09-446de6f92764",
"status": "APPROVED",
"userProfileDto": {
"firstName": "Karthik",
"lastName": "Kulkarni",
"gender": "Male",
"address": "Behind Prasad Lodge",
"occupation": "Student",
"martialStatus": "Single",
"nationality": "Indian"
}
}
What made this section unhelpful for you?
Update user
This API endpoint allows you to update the information of a specific user in the Banking Core Services project. By making a PUT request to the /api/users/2 endpoint, you can modify the user's details and ensure that the user's information is up to date. This functionality is essential for situations where user information needs to be updated regularly, such as when a user changes their contact information or preferences. With this API, you can seamlessly integrate user information updates into your application or system, providing a smooth user experience and ensuring accurate and current data.
Body Parameters
The first name of the user. This parameter should be provided as a string.
The last name of the user. This parameter should be provided as a string.
The contact number of the user. This parameter should be provided as a string.
The address of the user. This parameter should be provided as a string.
The gender of the user. This parameter should be provided as a string.
The occupation of the user. This parameter should be provided as a string.
The martial status of the user. This parameter should be provided as a string.
The nationality of the user. This parameter should be provided as a string.
Response
Response Attributes
What made this section unhelpful for you?
Response
{
"responseCode": "200",
"responseMessage": "user updated successfully"
}
What made this section unhelpful for you?
Read user by account id
This API endpoint allows you to retrieve information about a user based on their account ID. By making a GET request to this endpoint, you can access details such as the user's name, contact information, and account balance. This functionality is particularly useful when you need to retrieve specific user data for further processing or analysis. It is important to note that the account ID must be provided in the API request URL to ensure accurate retrieval. This API section provides a straightforward way to integrate user data into your application or system, making it easier to manage and analyze user information.
Response
Response Attributes
Show child attributes
What made this section unhelpful for you?
Response
{
"userId": 1,
"emailId": "kartikkulkarni1234@gmail.com",
"password": null,
"identificationNumber": "5ce7bb5d-9434-4cc2-a218-45ba2364ce5c",
"authId": "2feb69ed-d829-460e-bd09-446de6f92764",
"status": "APPROVED",
"userProfileDto": {
"firstName": "Karthik",
"lastName": "Kulkarni",
"gender": "Male",
"address": "Behind Prasad Lodge",
"occupation": "Student",
"martialStatus": "Single",
"nationality": "Indian"
}
}
What made this section unhelpful for you?
Fund transfer service
Fund transfer service: The Fund transfer service API allows you to initiate transfers of funds between different bank accounts. With this API, you can securely transfer money from one account to another, whether it's within the same bank or to a different bank altogether. This functionality is essential for various use-cases, such as paying bills, sending money to friends and family, or making business transactions.
To use this API, you'll need to provide the necessary authentication and authorization credentials, ensuring that only authorized users can initiate transfers. The API also supports additional features, such as setting transfer limits, scheduling recurring transfers, and specifying transfer details like purpose or reference.
Whether you're a developer building a banking application or a non-technical user looking to understand the capabilities of our Fund transfer service, this API documentation will guide you through the integration process step-by-step, making it simple to implement fund transfers seamlessly within your application or business workflow.
Account service
The Account service endpoint in the Banking Core Services API allows you to retrieve information about user accounts. With this endpoint, you can access details such as account balances, transaction history, and account holders' personal information. This provides you with a comprehensive view of the users' banking activities and enables you to build features like balance inquiries, transaction summaries, and account statements in your application. The Account service endpoint supports various filters and parameters that allow you to customize the data returned, such as specifying a date range for transaction history or filtering accounts based on specific criteria. Additionally, this endpoint ensures the security and privacy of user data by requiring appropriate authentication and authorization tokens for access. By integrating this API endpoint into your application, you can seamlessly incorporate banking functionality and provide a seamless user experience to your customers.
Sequence generator
The GET endpoint for the Sequence generator API allows you to retrieve the next available sequence number in a given sequence. This functionality is particularly useful for scenarios where you need to generate unique, sequential identifiers, such as order numbers or invoice numbers.
To use this endpoint, simply make a GET request to the specified URL, and the API will return the next available sequence number in the response body.
It's important to note that the sequence numbers are generated based on the specified sequence configuration. This configuration includes parameters such as the initial value, the increment value, and the maximum value. You can customize these parameters to fit your specific requirements.
Additionally, the API supports the ability to reset the sequence back to its initial value. This can be useful in certain situations, such as when you want to start generating sequence numbers from the beginning again after a certain point.
Overall, the Sequence generator API provides a straightforward and convenient way to generate unique sequence numbers for various use-cases.
Transaction service
The Transaction service API section provides functionality related to retrieving transaction information. This API endpoint allows you to retrieve details about specific transactions within the banking system. This can be useful for various use cases, including tracking transaction history, generating reports, and analyzing financial data. The API provides a straightforward way to access transaction information, making integration with the banking core services seamless. Additionally, the Transaction service API supports various special features and considerations, which will be covered in detail in other sections of the documentation.