Create Instructions
create_instructionsCreate a new instruction for a project's daily log in Procore, requiring project ID, title, status, and instruction type.
Instructions
Create a new Instruction associated with the specified Project. Use this to create a new Daily Log records in Procore. Creates a new Daily Log records and returns the created object on success (HTTP 201). Required parameters: project_id, title, status, instruction_type_id. Procore API: Project Management > Daily Log. Endpoint: POST /rest/v1.0/projects/{project_id}/instructions
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| number | No | JSON request body field — the Number of the Instruction | |
| title | Yes | JSON request body field — the Title of the Instruction | |
| status | Yes | JSON request body field — the Status of the Instruction | |
| instruction_type_id | Yes | JSON request body field — iD of the Instruction Type | |
| instruction_from_id | No | JSON request body field — iD of the User who the Instruction is from | |
| 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 | |
| cost_impact | No | JSON request body field — the Cost Impact of the Instruction | |
| private | No | JSON request body field — the Private status of the Instruction | |
| description | No | JSON request body field — the Description of the Instruction | |
| attention_ids | No | JSON request body field — an array of IDs of the Attentions of the Instruction | |
| distribution_member_ids | No | JSON request body field — an array of IDs of the Distributions of the Instruction | |
| trade_ids | No | JSON request body field — an array of IDs of the Trades of the Instruction | |
| 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... | |
| upload_ids | No | JSON request body field — the specified array of upload ids is saved as Site Instruction Attachments. |