twprojects-create_link
Create a new link in a specified Teamwork project by providing the project ID and URL, with optional title, description, tags, and notifications.
Instructions
Create link.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | The URL of the link. This is the actual web address that the link points to. | |
| title | No | The title of the link, which provides a brief summary of the purpose of the link. | |
| notify | No | Who to notify of the new link. Omit it unless the user named who to notify: the default notifies all project members, and a value here replaces that set rather than adding to it, so a narrower one silently drops everyone else who would have been told. Accepts the string "all" to notify all project members, the boolean true as an alias for "all", the boolean false to notify nobody, a plain array of user IDs (e.g. [123, 456]), or an object selecting user_ids, company_ids, team_ids and/or job_role_ids (e.g. {"user_ids": [123, 456]}). | all |
| tag_ids | No | A list of tag IDs to associate with the link. | |
| project_id | Yes | The ID of the project to create the link in. | |
| description | No | The description of the link. Longer text that provides detailed information about the link. | |
| notify_current_user | No | Whether the current user should be notified about the new link. |