Skip to content

Commit 34d92ca

Browse files
levindixonclaude
andcommitted
Add skip_notifications parameter to Update Ticket endpoint docs
The skip_notifications boolean parameter works on the Update Ticket (PUT /tickets/{id}) endpoint but was missing from the OpenAPI specs. This adds it to 2.13, 2.14, 2.15, and Unstable (0) using the same allOf wrapper pattern used by Create Ticket. Closes intercom/intercom#474395 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 54916f1 commit 34d92ca

File tree

4 files changed

+28
-4
lines changed

4 files changed

+28
-4
lines changed

descriptions/0/api.intercom.io.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14248,7 +14248,13 @@ paths:
1424814248
content:
1424914249
application/json:
1425014250
schema:
14251-
"$ref": "#/components/schemas/update_ticket_request"
14251+
allOf:
14252+
- "$ref": "#/components/schemas/update_ticket_request"
14253+
properties:
14254+
skip_notifications:
14255+
type: boolean
14256+
description: Option to disable notifications when a Ticket is updated.
14257+
example: true
1425214258
examples:
1425314259
successful_response:
1425414260
summary: Successful response

descriptions/2.13/api.intercom.io.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12140,7 +12140,13 @@ paths:
1214012140
content:
1214112141
application/json:
1214212142
schema:
12143-
"$ref": "#/components/schemas/update_ticket_request"
12143+
allOf:
12144+
- "$ref": "#/components/schemas/update_ticket_request"
12145+
properties:
12146+
skip_notifications:
12147+
type: boolean
12148+
description: Option to disable notifications when a Ticket is updated.
12149+
example: true
1214412150
examples:
1214512151
successful_response:
1214612152
summary: Successful response

descriptions/2.14/api.intercom.io.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13312,7 +13312,13 @@ paths:
1331213312
content:
1331313313
application/json:
1331413314
schema:
13315-
"$ref": "#/components/schemas/update_ticket_request"
13315+
allOf:
13316+
- "$ref": "#/components/schemas/update_ticket_request"
13317+
properties:
13318+
skip_notifications:
13319+
type: boolean
13320+
description: Option to disable notifications when a Ticket is updated.
13321+
example: true
1331613322
examples:
1331713323
successful_response:
1331813324
summary: Successful response

descriptions/2.15/api.intercom.io.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13383,7 +13383,13 @@ paths:
1338313383
content:
1338413384
application/json:
1338513385
schema:
13386-
"$ref": "#/components/schemas/update_ticket_request"
13386+
allOf:
13387+
- "$ref": "#/components/schemas/update_ticket_request"
13388+
properties:
13389+
skip_notifications:
13390+
type: boolean
13391+
description: Option to disable notifications when a Ticket is updated.
13392+
example: true
1338713393
examples:
1338813394
successful_response:
1338913395
summary: Successful response

0 commit comments

Comments
 (0)