Read (GET) Historical Overhead

Use this API to read a project historical overhead transaction.

To get historical overhead transaction data for a specific project and time period:

Execute a GET command on the endpoint https://{{url}}/historicalOverhead/<WBS1>|<WBS2>|<WBS3>/<period>, where <wbskey> is the work breakdown structure project identifier with all three levels specified, and <period> is the period you want to read.

In the following example, the value of WBS1 is 2000001.00, the value of WBS2 is 01A, and there is no value for WBS3. When there isn't a lower level, you must specify the value as %20, which is the URL-encoded value for the space character. WBS levels cannot be blank. The value of period is 200704.

curl --request GET \
--url 'https://{{url}}/historicalOverhead/2000001.00|01A|%20|200504/200704' \
--header 'authorization: Bearer {{oauth_token}}' \
--header 'content-type: application/json'
[
    {
        "WBS1": "2000001.00",
        "WBS2": "01A",
        "WBS3": " ",
        "Period": 200704,
        "RegOHProjectCurrency": 8572.8
    }
]​