Update an Integrated Project Actual Line Item
To update an integrated project actual line item:
- Create or generate a JSON object containing the following properties, including any additional properties you want to update:
- sourceId:The unique identifier of project actual line item data in an external source, such as an ERP system.
- Send a request to the API using the following information:
- Endpoint:
https://localhost:7001/primeapi/restapi/project/projectActualsLineItem/sync
- Operation:
POST
- Example Request Body:
{ "sourceId": 1, "projectActualsLineItemCost": { "total": 200, "totalProject": 200, "totalProjectActuals": 200 } }
- Endpoint:
- The API should return a response similar to the following:
- Response Code:
204
- Example Response Body:
{ "statusCode": 204, "primaryKeyName": "lineItemId", "primaryKeyValue": 2, "sourceId": "1" }
- Response Code: