Create Email Communication
create_email_communicationCreates an email communication for a project, linking it to a specified topic and returning the new record with its ID. Use to log email correspondence within Procore.
Instructions
Creates a email communication on a given project. project_id defaults to the value set by procore_set_config when omitted. Creates the email communication 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, topic_type, topic_id, communication, email. Procore API: Project Management > Emails. Endpoint: POST /rest/v1.0/project/{project_id}/email_communications
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| Yes | JSON request body field — the email for this Emails operation | ||
| topic_id | Yes | Query string parameter — unique identifier of the topic | |
| project_id | Yes | URL path parameter — unique identifier for the project. | |
| topic_type | Yes | Query string parameter — the type of the topic to be associated with the communication | |
| communication | Yes | JSON request body field — the communication for this Emails operation |