Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75872,7 +75872,9 @@ paths:
- Case Management
/api/v2/cases/{case_id}/attributes:
post:
description: Update case attributes
description: Update case attributes. This replaces all attributes with the provided
payload. To update a single attribute (e.g., team), include all existing attributes
in the request to avoid overwriting them.
operationId: UpdateAttributes
parameters:
- $ref: '#/components/parameters/CaseIDPathParameter'
Expand Down
2 changes: 1 addition & 1 deletion services/case_management/src/v2/CaseManagementApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4925,7 +4925,7 @@ export class CaseManagementApi {
}

/**
* Update case attributes
* Update case attributes. This replaces all attributes with the provided payload. To update a single attribute (e.g., team), include all existing attributes in the request to avoid overwriting them.
* @param param The request object
*/
public updateAttributes(
Expand Down
Loading