Create Time And Material Timecard
create_time_and_material_timecardCreate a new Time and Material Timecard entry in Procore, specifying project and optional hours, person, and classification. Returns the created record with its new ID.
Instructions
Create a new Time And Material Timecard Entry. 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. Creates the time and material timecard and returns it with its new id (HTTP 201); calling it again creates another record. 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: project_id. Procore API: Project Management > Field Productivity. Endpoint: POST /rest/v1.0/projects/{project_id}/time_and_material_timecards
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| 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. |