Create (POST) Historical Overhead Transaction
Use this API to create a historical overhead transaction record.
To create a historical overhead transaction record:
Execute a POST command on the endpoint
{{url}}/historicalOverhead/, specifying the data in the request body. For details about each field, check GET
{{url}}/metadata/historicalOverhead.
For example, here is a request submitted using cURL:
curl --request POST \
--url 'https://{{url}}/historicalOverhead' \
--header 'authorization: Bearer {{oauth_token}}' \
--header 'content-type: application/json'
--data '{
"WBS1": "2000012.00",
"WBS2": "02A",
"WBS3": " ",
"Period": 200704,
"RegOHProjectCurrency": 0
}'
A successful POST returns the JSON representation of the newly created historical overhead record.
