Use the POST method to insert financial records, such as budget or forecast data for a particular accounting period or entity, into a client schema table.
Unlike the GET method, the data intended for insertion into the client schema table should be included within the request body, as in the example below.
Method and endpoint
/odata/{clienttablename}
Parameters
Parameter | Type | Description | Required |
{clienttablename} | String | The name of the client schema table in your Anaplan Financial Consolidation tenant. | Yes |
Curl example
curl -x POST https://fluenceapi-prod.fluence.app/api/v2305.1/odata/Consolidation
-H 'TENANT: CustomerTenant' \
-H 'Content-Type: application/json'
-d '{
"Account_Name": "6001",
"Audit_Name": "Reclassification",
"CostCenter_Name": "000",
"Currency_Name": "USD",
"DataView_Name": "Value",
"Date_Name": "2023 Dec",
"Entity_Name": "120",
"Intercompany_Name": "No Intercompany",
"Movement_Name": "Closing",
"Product_Name": "No product",
"Scenario_Name": "Budget",
"Amount": 25000.00,
"Text": null,
"Periodic_Amount": null
}'