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
22 changes: 18 additions & 4 deletions descriptions/0/api.intercom.io.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3683,11 +3683,11 @@ paths:
message: Access Token Invalid
schema:
"$ref": "#/components/schemas/error"
"/companies/{id}/notes":
"/companies/{company_id}/notes":
get:
summary: List all company notes
parameters:
- name: id
- name: company_id
in: path
required: true
description: The unique identifier for the company which is given by Intercom
Expand Down Expand Up @@ -3793,7 +3793,7 @@ paths:
in: header
schema:
"$ref": "#/components/schemas/intercom_version"
- name: id
- name: company_id
in: path
required: true
description: The unique identifier for the company which is given by Intercom
Expand Down Expand Up @@ -25021,7 +25021,8 @@ components:
type: object
x-tags:
- Notes
description: Notes allow you to annotate and comment on your contacts.
description: Notes allow you to annotate and comment on your contacts and companies.
A note is attached to either a contact or a company, never both.
properties:
type:
type: string
Expand Down Expand Up @@ -25050,6 +25051,19 @@ components:
type: string
description: The id of the contact.
example: 214656d0c743eafcfde7f248
company:
type: object
description: Represents the company that the note was created about.
nullable: true
properties:
type:
type: string
description: String representing the object's type. Always has the value
`company`.
id:
type: string
description: The id of the company.
example: 5f4d3c1c-7b1b-4d7d-a97e-6095715c6632
author:
"$ref": "#/components/schemas/admin"
description: Optional. Represents the Admin that created the note.
Expand Down
Loading