PUT api/timesheet/actuals
Ingest Actuals to be used for the budget calculations for projects.
Request Information
URI Parameters
None.
Body Parameters
The ingest data
Collection of ActualRecordName | Description | Type | Additional information |
---|---|---|---|
project |
Project id, the hours will be added to this project |
integer |
None. |
username |
The unique user name |
string |
None. |
date |
The Date that the fee was incurred |
date |
None. |
amount |
The Amount of the charg for these hours |
decimal number |
None. |
Request Formats
application/json, text/json
Sample:
[ { "project": 1, "username": "sample string 2", "date": "2024-09-08T03:08:35.0961409+00:00", "amount": 4.0 }, { "project": 1, "username": "sample string 2", "date": "2024-09-08T03:08:35.0961409+00:00", "amount": 4.0 } ]
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.