PUT api/timesheet/CreateIngestedActualCostData
Creates or updates an actual cost data record for a specific user, project, and date.
Request Information
URI Parameters
None.
Body Parameters
An object containing user ID, project ID, entry date, and cost amount.
ActualCostData| Name | Description | Type | Additional information |
|---|---|---|---|
| p_node | integer |
None. |
|
| amount | decimal number |
None. |
|
| userId | integer |
None. |
|
| entryDate | date |
None. |
|
| count | integer |
None. |
Request Formats
application/json, text/json, application/scim+json
Sample:
{
"p_node": 1,
"amount": 2.0,
"userId": 3,
"entryDate": "2025-11-21T03:21:18.0416893+00:00",
"count": 5
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
On success: HTTP 200 OK with a boolean value indicating success. On failure: HTTP 400 Bad Request with a descriptive error message.
booleanResponse Formats
application/json, text/json, application/scim+json
Sample:
true