Update an Integrated Project Actual

To update an integrated project actual:

  1. Create or generate a JSON object containing the following fields, including any you want to update:
    • sourceId: The unique identifier of project actual data in an external source, such as an ERP system.
  2. Send a request to the API using the following information:
    • Endpoint: https://localhost:7001/api/restapi/project/projectActuals/syncBatch
    • Operation: POST
    • Example Request Body:
    { 
              "sourceId": 1, 
              "description":"Example Description" 
          }
    		
  3. The API should return a response similar to the following:
    • Response Code: 204
    • Example Response Body:
    { 
              "statusCode": 204, 
              "primaryKeyName": "projectActualId", 
              "primaryKeyValue": 2002, 
              "sourceId": "1" 
          }