Skip to content
Open
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
77 changes: 52 additions & 25 deletions descriptions/0/api.intercom.io.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14828,6 +14828,22 @@ paths:
type: tag
id: '105'
name: test
users: []
companies: []
Company not found - tag created, entity skipped:
value:
type: tag
id: '105'
name: test
users: []
companies: []
User not found - tag created, entity skipped:
value:
type: tag
id: '105'
name: test
users: []
companies: []
schema:
"$ref": "#/components/schemas/tag_basic"
'400':
Expand All @@ -14844,27 +14860,6 @@ paths:
message: invalid tag parameters
schema:
"$ref": "#/components/schemas/error"
'404':
description: User not found
content:
application/json:
examples:
Company not found:
value:
type: error.list
request_id: 23c998cc-32b8-435d-9653-932c15809460
errors:
- code: company_not_found
message: Company Not Found
User not found:
value:
type: error.list
request_id: 7358f78d-f122-45dd-a2e1-c2261300c38a
errors:
- code: not_found
message: User Not Found
schema:
"$ref": "#/components/schemas/error"
'401':
description: Unauthorized
content:
Expand Down Expand Up @@ -14897,14 +14892,14 @@ paths:
summary: Invalid parameters
value:
test: invalid
company_not_found:
summary: Company not found
company_not_found_entity_skipped:
summary: Company not found - tag created, entity skipped
value:
name: test
companies:
- company_id: '123'
user_not_found:
summary: User not found
user_not_found_entity_skipped:
summary: User not found - tag created, entity skipped
value:
name: test
users:
Expand Down Expand Up @@ -27333,6 +27328,38 @@ components:
type: string
description: The name of the tag
example: Test tag
users:
type: array
nullable: true
description: The users that were tagged or untagged.
items:
type: object
properties:
id:
type: string
description: The Intercom ID of the user.
example: '6329e838deab40166d1a53f7'
untagged:
type: boolean
description: Whether the user was untagged (true) or tagged (false).
example: false
example: []
companies:
type: array
nullable: true
description: The companies that were tagged or untagged.
items:
type: object
properties:
id:
type: string
description: The Intercom ID of the company.
example: '6329e838deab40166d1a5400'
untagged:
type: boolean
description: Whether the company was untagged (true) or tagged (false).
example: false
example: []
tag_company_request:
description: You can tag a single company or a list of companies.
type: object
Expand Down
Loading