Read (GET) Historical Expense

Use this API to read historical expense information for a project.

To get historical expense transaction data:

Execute a GET command on the endpoint https://{{url}}/historicalExpense/<PKey>, where <PKey> is the record you want to read.

For example, here is a request submitted using cURL, which assumes the value of PKey is 8955:

curl --request GET \
--url 'https://{{url}}/historicalExpense/<PKey>' \
--header 'authorization: Bearer {{oauth_token}}' \
--header 'content-type: application/json'
[
    {
        "Period": 199903,
        "PostSeq": 0,
        "PKey": "8955",
        "WBS1": "1998001.00",
        "WBS2": " ",
        "WBS3": " ",
        "Account": "513.00",
        "Vendor": "",
        "Unit": "",
        "TransType": "CP",
        "TransDate": "2005-01-09T00:00:00.000",
        "BillExt": 0,
        "AmountProjectCurrency": -435,
        "ProjectCost": "N"
    }
]