Create Waste Log
create_waste_logRecord waste entries in a Procore project by creating a waste log with project ID and waste data; API returns the new log ID.
Instructions
Creates single Waste Log. #### See - Daily Log guide - for additional info on * Attachments Project Vendor List. project_id defaults to the value set by procore_set_config when omitted. Creates the waste log 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, waste_log. Procore API: Project Management > Daily Log. Endpoint: POST /rest/v1.0/projects/{project_id}/waste_logs
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| waste_log | Yes | JSON request body field — the waste log for this Daily Log operation | |
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| attachments | No | JSON request body field — waste Log Attachments are not viewable or used on web. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data togethe... |