View Integrated Project Actual Line Items

To view integrated project actual line items:

  1. Send a request to the API using the following information:
    • Endpoint: https://localhost:7001/api/restapi/project/projectActualsLineItem/externallySourced
    • Operation: GET
  2. The API should return a response similar to the following:
    • Response Code: 200
    • Example Response Body:
    [ 
              { 
                  "projectActualsCode": "ACT001", 
                  "sourceId": "1", 
                  "lineItemType": "LUMP_SUM", 
                  "projectActualsLineItemCost": { 
                      "total": 500, 
                      "totalProject": 500, 
                      "lineItemId": 1, 
                      "totalProjectActuals": 500, 
                      "updateDate": "2018-01-25T18:52:12" 
                  }, 
                  "lineItemId": 1, 
                  "projectActualsId": 2001, 
                  "itemCode": "Example Line Item", 
                  "name": "Example Line Item", 
                  "hours": 0, 
                  "updateDate": "2018-01-25T18:52:12" 
              }, 
          ...more project actual line item objects 
          ]