activity_types_update
Update an existing activity type's name, icon, color, or display order to customize activity categories in Pipedrive.
Instructions
Update an existing activity type.
Updates activity type properties such as name, icon, color, or display order.
Workflow tips:
Use activity_types/list to find the activity type ID first
Only include fields you want to update
Cannot update system-defined activity types, only custom ones
Changes affect all activities using this type
Common use cases:
Change name: { "id": 12, "name": "Video Conference" }
Update color: { "id": 12, "color": "00FF00" }
Change icon: { "id": 12, "icon_key": "camera" }
Update order: { "id": 12, "order_nr": 5 }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ID of the activity type to update | |
| name | No | Activity type name | |
| icon_key | No | Icon identifier (e.g., task, call, meeting, deadline, email, lunch, camera) | |
| color | No | Color as 6-character hex code without # (e.g., "FF5733") | |
| order_nr | No | Order number for display sorting |