View Integrated Change Order Line Items

To view integrated change order line items:

  1. Send a request to the API using the following information:
    • Endpoint: https://localhost:7001/primeapi/restapi/project/changeOrderLineItem/externallySourced
    • Operation: GET
  2. The API should return a response similar to the following:
    • Response Code: 200
    • Example Response Body :
    [ 
              { 
                  "currencyCode": "USD", 
                  "changeOrderCode": "CO001", 
                  "changeOrderSourceId": "1", 
                  "workspaceCode": "Example Workspace", 
                  "projectCode": "Example Project", 
                  "sourceId": "1", 
                  "description": "Example Description", 
                  "changeOrderId": 14001, 
                  "lineItemType": "LUMP_SUM", 
                  "changeOrderLineItemCost": { 
                      "totalAssociatedAgreement": 0, 
                      "total": 0, 
                      "totalCommitment": 0, 
                      "totalLineItem": 0, 
                      "totalProject": 0, 
                      "lineItemId": 8001 
                  }, 
                  "lineItemId": 8001, 
                  "currencyId": 0, 
                  "itemCode": "1", 
                  "itemSuffix": 1, 
                  "name": "Example Line Item", 
                  "updateDate": "2018-01-25T21:19:01" 
              }, 
          ...more change order line item objects 
          ]