Theme switcher

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.

Was this section helpful?

What made this section unhelpful for you?

Base URL

Production:

http://localhost:8080

Language Box

Was this section helpful?

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.

Was this section helpful?

What made this section unhelpful for you?

Fund transfer

The Fund Transfer API allows you to initiate a transfer of funds between two bank accounts. This API enables you to seamlessly transfer funds from one account to another within our banking core system.

By making a POST request to this API endpoint, you can specify the necessary details for the fund transfer, such as the source account, destination account, and the amount to be transferred.

This API is designed to simplify the process of transferring funds and ensure a smooth integration with our banking core services. It provides a convenient way for developers to initiate fund transfers programmatically, without the need for manual intervention.

Whether you need to transfer funds between different user accounts or facilitate payments between external bank accounts, the Fund Transfer API is a versatile tool that can cater to various use-cases.

Please note that when using this API, you should ensure that the source and destination accounts are valid and have sufficient funds for the transfer. Additionally, it's important to handle any errors or exceptions that may occur during the fund transfer process.

Integrating the Fund Transfer API into your application will streamline the fund transfer process, making it easier and more efficient for your users.

Body Parameters

fromAccountstring

The account from which the funds will be transferred. This parameter should contain the account details, such as account number and bank code, of the sender.

toAccountstring

The account to which the funds will be transferred. This parameter should contain the account details, such as account number and bank code, of the recipient.

amountstring

The amount of funds to be transferred. This parameter should specify the exact amount to be transferred, in the currency specified in the request.

Response

200
Object

Response Attributes

transactionIdstring
messagestring
Was this section helpful?

What made this section unhelpful for you?

POST

/fund-transfers

Select
1 2 3 4 5 6 curl --location 'http://localhost:8080/fund-transfers' \ --data '{ "fromAccount": "0600140000001", "toAccount": "0600140000002", "amount": "500" }'

Response

{
  "transactionId": "06a77608-127a-4489-8727-eabc336dee96",
  "message": "Fund transfer was successful"
}
Was this section helpful?

What made this section unhelpful for you?

Get details of transfer from reference id

This API endpoint allows you to retrieve the details of a specific fund transfer based on its reference ID. By making a GET /fund-transfers/{referenceid} request to this endpoint, you can obtain information about the transfer, including the amount, currency, beneficiary, and status. This functionality is useful for tracking the progress of a transfer or retrieving information for auditing purposes. It's important to note that the reference ID must be provided in the URL to retrieve the correct transfer details.

Response

200
Object

Response Attributes

transactionReferencestring
fromAccountstring
toAccountstring
amountnumber
statusstring
transferTypestring
transferredOnstring
Was this section helpful?

What made this section unhelpful for you?

GET

/fund-transfers/950e07f5-09ce-4fee-be66-3377233458ad

Select
1 curl --location 'http://localhost:8080/fund-transfers/950e07f5-09ce-4fee-be66-3377233458ad' \

Response

{
  "transactionReference": "950e07f5-09ce-4fee-be66-3377233458ad",
  "fromAccount": "0600140000001",
  "toAccount": "0600140000002",
  "amount": 500,
  "status": "SUCCESS",
  "transferType": "INTERNAL",
  "transferredOn": "2023-09-13T20:41:21.863838"
}
Was this section helpful?

What made this section unhelpful for you?

Get fund transfer details that are made from an account

This API endpoint allows you to retrieve the details of fund transfers made from an account. By making a GET request to this endpoint, you can access information about the specific fund transfers, including the transaction amount, date, and any additional details associated with the transfer. This functionality is crucial for tracking and reconciling funds across accounts and can be used for various purposes, such as auditing, generating reports, or monitoring transaction history. It provides a straightforward way to retrieve the necessary information about fund transfers without the need for complex manual processes or analysis.

Query Parameters

accountIdstring

The ID of the account from which the fund transfers were made.

Response

200
Object

Response Attributes

transactionReferencestring
fromAccountstring
toAccountstring
amountnumber
statusstring
transferTypestring
transferredOnstring
Was this section helpful?

What made this section unhelpful for you?

GET

/fund-transfers?accountId=0600140000002

Select
1 curl --location 'http://localhost:8080/fund-transfers?accountId=0600140000002' \

Response

[
  {
    "transactionReference": "06a77608-127a-4489-8727-eabc336dee96",
    "fromAccount": "0600140000002",
    "toAccount": "0600140000001",
    "amount": 200,
    "status": "SUCCESS",
    "transferType": "INTERNAL",
    "transferredOn": "2023-09-25T16:33:29.23256"
  }
]
Was this section helpful?

What made this section unhelpful for you?

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.