| Account | Description | Beginning Balance | Debits | Credits | Ending Balance | ||||
| (INR) | (INR) | (INR) | (INR) | ||||||
| 111101 | Computer | 51,829,036.33 | 3,000.00 | 0.00 | 51,832,036.33 | ||||
| 111102 | Furniture and Fixtures | 15,339,298.51 | 0.00 | 0.00 | 15,339,298.51 | ||||
| 111103 | Office Equipments | 11,675,790.54 | 0.00 | 0.00 | 11,675,790.54 | ||||
| 111104 | Motor Car | 18,094,546.00 | 11,000.00 | 0.00 | 18,105,546.00 | ||||
| 111106 | Server & Network Device | 5,826,974.20 | 0.00 | 0.00 | 5,826,974.20 | ||||
| 111108 | Building | 19,992,200.00 | 0.00 | 0.00 | 19,992,200.00 | ||||
| 111109 | Furniture and Fixtures - Lease Hold Improvement | 6,000,000.00 | 0.00 | 0.00 | 6,000,000.00 | ||||
| 112101 | Software | 13,282,592.00 | 0.00 | 0.00 | 13,282,592.00 | ||||
Loading
Brahma Prakash ShuklaPosted Oct 23, 2023, 9:24 AM
To insert data into Oracle Fusion Cloud using the REST API for trial balance, you will typically need to follow these steps:
Authentication: Ensure that you have the necessary authentication credentials to access the Oracle Fusion Cloud REST API. You may need an OAuth token or other authentication methods.
Construct the API Request: Build a properly formatted HTTP request to the Oracle Fusion Cloud API. This request should include the necessary headers and body.
JSON Payload: You need to construct a JSON payload that matches the structure expected by the API. In your case, it should include data for the trial balance, including accounts, descriptions, beginning balances, debits, credits, and ending balances.
Here's an example of how the JSON payload might look for a single entry:
You should repeat this structure for each entry in your data.
Make the API Request: Use a library or tool in your preferred programming language to send the HTTP request to the Oracle Fusion REST API. You may use libraries like
HttpClientin C# or tools like Postman.An example using C# and
HttpClient:Handling Errors: Be sure to handle errors and exceptions in your code to account for any issues that may arise during the API call.
Testing and Validation: After sending the data, you should validate that it has been inserted correctly by retrieving the trial balance records using the API.
Please note that the actual endpoint URL, authentication methods, and API structure may vary depending on your specific Oracle Fusion Cloud configuration. Consult Oracle's documentation for the exact details of your REST API and data insertion requirements.