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.
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.
What made this section unhelpful for you?
Create account
The POST /accounts
API endpoint allows you to create a new account within the Banking Core Services. This API provides a straightforward way to add new accounts to the system.
By making a POST request to this endpoint, you can provide the necessary details for the account creation. The API will process the request and respond with the unique identifier of the newly created account.
This functionality is useful for scenarios where you need to programmatically create accounts within the Banking Core Services. Whether you are a developer building a custom application or a non-technical user integrating with our services, this API makes it easy to add new accounts to the system.
Additionally, there are no special considerations or limitations when using this API endpoint. Simply provide the required information and expect a successful response containing the account identifier.
Body Parameters
The type of account to be created. This can be either a personal or business account.
The unique identifier of the user associated with the account. This is used to link the account to a specific user in the system.
Response
Response Attributes
What made this section unhelpful for you?
Response
{
"responseCode": "200",
"message": " Account created successfully"
}
What made this section unhelpful for you?
Update account status
Update Account Status:
The PATCH /accounts
endpoint allows you to update the status of an account in the Banking Core Services project. This endpoint provides a way to modify the status of an account, such as activating or deactivating it.
Use this API endpoint when you need to change the status of a specific account in the system. By making a PATCH request to this endpoint, you can update the status of the account as needed.
Updating the account status can have various use-cases. For example, you may need to activate a previously deactivated account when a user requests to resume their banking services. Alternatively, you may want to deactivate an account temporarily if there are suspicious activities detected.
Please note that the PATCH /accounts
endpoint only updates the account status and does not allow for any other modifications to the account details. If you require additional changes, please refer to the relevant API endpoints for account management.
To update the account status, include the necessary parameters in the request body. Refer to the provided examples and parameters section for more details on the required fields and their corresponding values.
Keep in mind that updating the account status may trigger additional actions or processes within the Banking Core Services project. It's important to consider any dependencies or implications of changing the account status before making the request.
We strive to make the API integration process as straightforward as possible. If you have any questions or encounter any issues while using the PATCH /accounts
endpoint, please refer to the troubleshooting section or reach out to our support team for assistance.
Query Parameters
The account number associated with the account to be updated. This parameter is a query parameter, and it is used to uniquely identify the account in the system.
Body Parameters
The new status to be set for the account. This parameter is a body parameter, and it allows for the update of the account status.
Response
Response Attributes
What made this section unhelpful for you?
Response
{
"responseCode": "200",
"message": "Account updated successfully"
}
What made this section unhelpful for you?
Read account by account number
Read account by account number - This API endpoint allows you to retrieve detailed information about a specific account using its account number. By providing the account number as a parameter, you can access various details such as the account holder's name, balance, transaction history, and associated account information. This functionality is particularly useful for banking applications that need to fetch specific account data for both internal and customer-facing purposes. The API ensures that only authenticated users with the necessary permissions can access this endpoint, guaranteeing the security and privacy of sensitive account information.
Query Parameters
The accountNumber query parameter is used to specify the account number of the account that needs to be retrieved. This parameter is required to successfully execute the GET /accounts endpoint and retrieve the account details.
Response
Response Attributes
What made this section unhelpful for you?
Response
{
"accountId": 6,
"accountNumber": "0600140000004",
"accountType": "SAVINGS_ACCOUNT",
"accountStatus": "ACTIVE",
"availableBalance": 1300,
"userId": 4
}
What made this section unhelpful for you?
Get transactions from account id
This API endpoint allows you to retrieve transactions from a specific account by providing its unique identifier. By making a GET request to this endpoint, you can access transaction information associated with the provided account ID. This functionality is useful for applications that need to fetch transaction data for a particular account, such as banking or financial management systems. It provides a straightforward way to integrate transaction retrieval into your software or application, enabling you to easily access and process relevant transaction details.
Response
Response Attributes
What made this section unhelpful for you?
Response
[
{
"referenceId": "72e64acb-b051-4fbb-a4de-c56f79cb6919",
"accountId": "0600140000004",
"transactionType": "DEPOSIT",
"amount": 1300,
"localDateTime": "2023-09-25T16:45:57.588297",
"transactionStatus": "COMPLETED",
"comments": "1300 has successfully credited to account"
}
]
What made this section unhelpful for you?
Closing account
The PUT /accounts/closure
API endpoint allows you to close a banking account. This functionality is useful when you need to deactivate an account that is no longer in use or has been flagged for closure. By invoking this API, you can initiate the closure process for the specified account.
Closing an account involves several steps, including verifying the account information, updating the account status, and performing any necessary account balance adjustments. Once the closure process is initiated, it cannot be reversed, so please exercise caution when using this API.
Please note that the closure process may take some time to complete, depending on various factors such as account balance, pending transactions, and account history. You may periodically check the account status using the GET /accounts/<account_id> API endpoint to monitor the progress of the closure process.
It is important to ensure that you have the necessary permissions and authentication credentials to perform this action. Additionally, please make sure to adhere to any regulatory requirements or compliance guidelines applicable to the closure of banking accounts.
If you encounter any issues or have questions related to the account closure process, please refer to the support documentation or reach out to our technical support team for assistance.
Query Parameters
The account number of the account to be closed. This parameter is required to identify the account for closure.
Response
Response Attributes
What made this section unhelpful for you?
Response
{
"responseCode": "200",
"message": "Account closed successfully"
}
What made this section unhelpful for you?
Read account details from user id
This API endpoint allows you to retrieve the account details for a specific user ID. By making a GET request to this endpoint with the appropriate user ID parameter, you can access information such as the user's account balance, transaction history, and linked payment methods.
This API section is particularly useful for applications that require access to user-specific account information, such as banking or financial management services. It provides a straightforward way to fetch account details for a specific user and incorporate that information into your application.
When using this API endpoint, please ensure that you provide the correct user ID as the parameter in the request URL. The response will include the relevant account details in a structured format, allowing you to easily parse and utilize the information in your application.
Keep in mind that this API section is read-only and does not support any modifications to the account details. If you need to perform updates or changes to the account information, please refer to the appropriate API sections provided for those specific operations.
In addition to the core account details, the response may also include additional metadata or contextual information related to the user account. This can help provide a more comprehensive understanding of the account and its associated attributes.
By leveraging this API section, you can seamlessly integrate account details retrieval into your application, enabling your users to access and manage their banking information with ease.
Response
Response Attributes
What made this section unhelpful for you?
Response
{
"accountId": 6,
"accountNumber": "0600140000004",
"accountType": "SAVINGS_ACCOUNT",
"accountStatus": "ACTIVE",
"availableBalance": 1300,
"userId": 4
}
What made this section unhelpful for you?
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.