Update Time And Material Timecard
update_time_and_material_timecardUpdate a Time And Material Timecard by modifying only the fields you send; omitted fields retain their current values. Requires an existing timecard ID and project ID, returns the updated timecard.
Instructions
Update a specified Time And Material Timecard. Send only the fields you intend to change; omitted fields keep their current values. Pass the record's fields as top-level arguments — they are nested under "time_and_material_timecard" in the request payload for you. project_id defaults to the value set by procore_set_config when omitted, and id must identify an existing parent record — resolve it with the matching list tool first. Returns the modified time and material timecard on success. Failures come back as an error payload carrying the HTTP status — commonly 401 when the token has expired, 403 without tool permission, and 404 when an id does not resolve. Required parameters: id, project_id. Procore API: Project Management > Field Productivity. Endpoint: PATCH /rest/v1.0/projects/{project_id}/time_and_material_timecards/{id}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | URL path parameter — iD of the project to get the time and material timecards for | |
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| hours_worked | No | JSON request body field — total hours worked | |
| login_information_id | No | JSON request body field — iD of the person the timecard is being created for | |
| timecard_time_type_id | No | JSON request body field — type id for the type of timecard being created | |
| work_classification_id | No | JSON request body field — iD of the worker's work classification | |
| time_and_material_entry_id | No | JSON request body field — time & Material Entry Id the timecard is associated with | |
| run_configurable_validations | No | Query string parameter — if true, validations are run for the corresponding Configurable Field Set. |