Update Image Category
update_image_categoryUpdate an existing image category in a Procore project. Provide only the fields you want to change; other settings remain unchanged.
Instructions
Update a Photo Album (Image Category) in a specified Project. 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 "image_category" in the request payload for you. id must identify an existing parent record — resolve it with the matching list tool first. Returns the modified image category 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: id, project_id, name. Procore API: Project Management > Photos. Endpoint: PATCH /rest/v1.0/image_categories/{id}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | URL path parameter — iD of the image category | |
| name | Yes | JSON request body field — the Name of the Image Category | |
| private | No | JSON request body field — the Private status of the Image Category | |
| project_id | Yes | Query string parameter — unique identifier for the project. | |
| album_cover_id | No | JSON request body field — iD of an Image that is the cover Image of the Image Category. |