@@ -12757,6 +12757,17 @@ components:
12757
12757
description: An object containing companies meta data about the companies that
12758
12758
a contact has. Up to 10 will be displayed here. Use the url to get more.
12759
12759
properties:
12760
+ type:
12761
+ type: string
12762
+ description: The type of object
12763
+ enum:
12764
+ - list
12765
+ example: list
12766
+ data:
12767
+ type: array
12768
+ description: An array containing Company Objects
12769
+ items:
12770
+ "$ref": "#/components/schemas/contact_company"
12760
12771
url:
12761
12772
type: string
12762
12773
format: uri
@@ -12776,6 +12787,30 @@ components:
12776
12787
- url
12777
12788
- total_count
12778
12789
- has_more
12790
+ contact_company:
12791
+ title: Contact company
12792
+ type: object
12793
+ description: A reference to a company associated with a contact
12794
+ properties:
12795
+ id:
12796
+ type: string
12797
+ description: The unique identifier for the company
12798
+ example: "66e0800ad24ad5513b91014d"
12799
+ type:
12800
+ type: string
12801
+ description: The type of the object
12802
+ enum:
12803
+ - company
12804
+ example: company
12805
+ url:
12806
+ type: string
12807
+ format: uri
12808
+ description: URL to get the full company resource
12809
+ example: "/companies/66e0800ad24ad5513b91014d"
12810
+ required:
12811
+ - id
12812
+ - type
12813
+ - url
12779
12814
contact_deleted:
12780
12815
title: Contact Deleted
12781
12816
type: object
@@ -13627,6 +13662,17 @@ components:
13627
13662
type: string
13628
13663
description: This includes conversation, email, facebook, instagram, phone_call,
13629
13664
phone_switch, push, sms, twitter and whatsapp.
13665
+ enum:
13666
+ - conversation
13667
+ - email
13668
+ - facebook
13669
+ - instagram
13670
+ - phone_call
13671
+ - phone_switch
13672
+ - push
13673
+ - sms
13674
+ - twitter
13675
+ - whatsapp
13630
13676
example: conversation
13631
13677
id:
13632
13678
type: string
@@ -14245,21 +14291,24 @@ components:
14245
14291
properties:
14246
14292
type:
14247
14293
type: string
14248
- description: Always `admin`.
14294
+ description: One of `lead`, `user`, `contact`, or `admin`.
14249
14295
enum:
14296
+ - lead
14297
+ - user
14298
+ - contact
14250
14299
- admin
14251
14300
example: admin
14252
14301
id:
14253
14302
type: integer
14254
- description: The identifier for the admin which is given by Intercom.
14303
+ description: The identifier for the sender which is given by Intercom.
14255
14304
example: 394051
14256
14305
required:
14257
14306
- type
14258
14307
- id
14259
14308
to:
14260
14309
type: object
14261
- description: The sender of the message. If not provided, the default sender
14262
- will be used.
14310
+ description: The recipient of the message. If not provided, the default
14311
+ recipient will be used.
14263
14312
properties:
14264
14313
type:
14265
14314
type: string
@@ -16288,9 +16337,18 @@ components:
16288
16337
search for the value.
16289
16338
example: ">"
16290
16339
value:
16291
- type: string
16340
+ oneOf:
16341
+ - type: string
16342
+ - type: integer
16343
+ - type: array
16344
+ items:
16345
+ type: string
16346
+ - type: array
16347
+ items:
16348
+ type: integer
16292
16349
description: The value that you want to search on.
16293
16350
example: '73732934'
16351
+ nullable: true
16294
16352
sla_applied:
16295
16353
title: Applied SLA
16296
16354
type: object
0 commit comments