Update Instruction
update_instructionUpdate an existing Procore Daily Log instruction by sending only changed fields; specify project and instruction IDs. Returns the updated instruction or error details.
Instructions
Update the specified Instruction. 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 "instruction" 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 instruction 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: project_id, id. Procore API: Project Management > Daily Log. Endpoint: PATCH /rest/v1.0/projects/{project_id}/instructions/{id}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | URL path parameter — unique identifier of the Daily Log resource | |
| title | No | JSON request body field — the Title of the Instruction | |
| number | No | JSON request body field — the Number of the Instruction | |
| status | No | JSON request body field — the Status of the Instruction | |
| private | No | JSON request body field — the Private status of the Instruction | |
| trade_ids | No | JSON request body field — an array of IDs of the Trades of the Instruction | |
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| upload_ids | No | JSON request body field — the specified array of upload ids is saved as Site Instruction Attachments. | |
| attachments | No | JSON request body field — instruction's Attachments. To upload attachments you must upload the entire payload as `multipart/form-data` content-type and specify each parameter as form-data together with `attachments[]` as fi... | |
| cost_impact | No | JSON request body field — the Cost Impact of the Instruction | |
| description | No | JSON request body field — the Description of the Instruction | |
| send_emails | No | Query string parameter — designates whether or not emails will be sent (default false) | |
| attention_ids | No | JSON request body field — an array of IDs of the Attentions of the Instruction | |
| date_received | No | JSON request body field — the date received for this Daily Log operation | |
| schedule_impact | No | JSON request body field — the Schedule Impact of the Instruction | |
| instruction_from_id | No | JSON request body field — iD of the User who the Instruction is from | |
| instruction_type_id | No | JSON request body field — iD of the Instruction Type | |
| distribution_member_ids | No | JSON request body field — an array of IDs of the Distributions of the Instruction |