generated from mintlify/starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenapi.yml
1307 lines (1307 loc) Β· 44.3 KB
/
openapi.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.1.0
info:
title: FirstQuadrant API
description: The FirstQuadrant API is used to interact with FirstQuadrant programmatically.
termsOfService: https://firstquadrant.ai/terms
contact:
email: [email protected]
version: 0.0.0
externalDocs:
description: FirstQuadrant API documentation
url: https://docs.firstquadrant.ai
servers:
- url: https://firstquadrant.ai
tags:
- name: teams
description: Operations about your team
- name: conversations
description: Inform FirstQuadrant about events using incoming webhooks
paths:
/api/teams/me:
get:
tags:
- teams
description: Get the team associated with the API key.
responses:
"200":
description: Team object
content:
application/json:
schema:
$ref: "#/components/schemas/Team"
security:
- api_key:
- read:team
/api/teams/{teamId}:
get:
tags:
- teams
description: Get a team by ID.
parameters:
- in: path
name: teamId
schema:
type: string
required: true
description: Team ID, starting with `tea_`
example: tea_2MSb8jd6VDptcAcVJuPcJhte3Yc
responses:
"200":
description: Team object
content:
application/json:
schema:
$ref: "#/components/schemas/Team"
security:
- api_key:
- read:team
patch:
tags:
- teams
description: Update a team by ID.
parameters:
- in: path
name: teamId
schema:
type: string
required: true
description: Team ID, starting with `tea_`
example: tea_2MSb8jd6VDptcAcVJuPcJhte3Yc
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/UpdateTeamBody"
required: true
responses:
"200":
description: Team object
content:
application/json:
schema:
$ref: "#/components/schemas/Team"
security:
- api_key:
- write:team
delete:
tags:
- teams
description: Delete a team by ID.
parameters:
- in: path
name: teamId
schema:
type: string
required: true
description: Team ID, starting with `tea_`
example: tea_2MSb8jd6VDptcAcVJuPcJhte3Yc
responses:
"200":
description: Team object
content:
application/json:
schema:
$ref: "#/components/schemas/Team"
security:
- sudo:
- write:*
/api/teams/{teamId}/outbound:
get:
tags:
- teams
description: Get the outbound settings for a team by ID.
responses:
"200":
description: Outbound settings object
content:
application/json:
schema:
$ref: "#/components/schemas/TeamOutboundSettings"
security:
- api_key:
- read:team
patch:
tags:
- teams
description: Update the outbound settings for a team by ID.
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/UpdateTeamOutboundSettingsBody"
required: true
responses:
"200":
description: Outbound settings object
content:
application/json:
schema:
$ref: "#/components/schemas/TeamOutboundSettings"
security:
- api_key:
- read:team
/api/teams/{teamId}/contacts:
get:
tags:
- teams
description: Get all contacts for a team.
parameters:
- in: path
name: teamId
schema:
type: string
required: true
description: Team ID, starting with `tea_`
example: tea_2MSb8jd6VDptcAcVJuPcJhte3Yc
- $ref: "#/components/parameters/take"
- $ref: "#/components/parameters/startingAfter"
- $ref: "#/components/parameters/q"
- $ref: "#/components/parameters/orderBy"
- $ref: "#/components/parameters/sort"
responses:
"200":
description: Array of contacts
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Contact"
security:
- api_key:
- read:team
/api/teams/{teamId}/campaigns:
get:
tags:
- teams
description: Get all campaigns for a team.
parameters:
- in: path
name: teamId
schema:
type: string
required: true
description: Team ID, starting with `tea_`
example: tea_2MSb8jd6VDptcAcVJuPcJhte3Yc
- $ref: "#/components/parameters/take"
- $ref: "#/components/parameters/startingAfter"
- $ref: "#/components/parameters/q"
- $ref: "#/components/parameters/orderBy"
- $ref: "#/components/parameters/sort"
responses:
"200":
description: Array of campaigns
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Campaign"
security:
- api_key:
- read:team
/api/teams/{teamId}/campaigns/goal:
post:
tags:
- teams
description: Mark campaign contacts as won.
parameters:
- in: path
name: teamId
schema:
type: string
required: true
description: Team ID, starting with `tea_`
example: tea_2MSb8jd6VDptcAcVJuPcJhte3Yc
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/CampaignContactGoalBody"
required: true
responses:
"200":
description: Campaign contact
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/CampaignContact"
security:
- api_key:
- read:team
/api/teams/{teamId}/contacts/{contactId}:
get:
tags:
- teams
description: Get a contact by ID.
parameters:
- in: path
name: teamId
schema:
type: string
required: true
description: Team ID, starting with `tea_`
example: tea_2MSb8jd6VDptcAcVJuPcJhte3Yc
- in: path
name: contactId
schema:
type: string
required: true
description: Contact ID, starting with `con_`
example: con_2MSb8jd6VDptcAcVJuPcJhte3Yc
responses:
"200":
description: Contact object
content:
application/json:
schema:
$ref: "#/components/schemas/Contact"
security:
- api_key:
- read:team
patch:
tags:
- teams
description: Update a contact by ID.
parameters:
- in: path
name: teamId
schema:
type: string
required: true
description: Team ID, starting with `tea_`
example: tea_2MSb8jd6VDptcAcVJuPcJhte3Yc
- in: path
name: contactId
schema:
type: string
required: true
description: Contact ID, starting with `con_`
example: con_2MSb8jd6VDptcAcVJuPcJhte3Yc
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/UpdateContactBody"
required: true
responses:
"200":
description: Contact object
content:
application/json:
schema:
$ref: "#/components/schemas/Contact"
security:
- api_key:
- read:team
delete:
tags:
- teams
description: Delete a contact by ID.
parameters:
- in: path
name: teamId
schema:
type: string
required: true
description: Team ID, starting with `tea_`
example: tea_2MSb8jd6VDptcAcVJuPcJhte3Yc
- in: path
name: contactId
schema:
type: string
required: true
description: Contact ID, starting with `con_`
example: con_2MSb8jd6VDptcAcVJuPcJhte3Yc
responses:
"200":
description: Contact object
content:
application/json:
schema:
$ref: "#/components/schemas/Contact"
security:
- api_key:
- read:team
/api/teams/{teamId}/contacts/{contactId}/block:
post:
tags:
- teams
description: Unsubscribe a contact by ID.
parameters:
- in: path
name: teamId
schema:
type: string
required: true
description: Team ID, starting with `tea_`
example: tea_2MSb8jd6VDptcAcVJuPcJhte3Yc
- in: path
name: contactId
schema:
type: string
required: true
description: Contact ID, starting with `con_`
example: con_2MSb8jd6VDptcAcVJuPcJhte3Yc
responses:
"200":
description: Contact object
content:
application/json:
schema:
$ref: "#/components/schemas/Contact"
security:
- api_key:
- read:team
/api/teams/{teamId}/contacts/{contactId}/unblock:
post:
tags:
- teams
description: Resubscribe an unsubscribed a contact by ID.
parameters:
- in: path
name: teamId
schema:
type: string
required: true
description: Team ID, starting with `tea_`
example: tea_2MSb8jd6VDptcAcVJuPcJhte3Yc
- in: path
name: contactId
schema:
type: string
required: true
description: Contact ID, starting with `con_`
example: con_2MSb8jd6VDptcAcVJuPcJhte3Yc
responses:
"200":
description: Contact object
content:
application/json:
schema:
$ref: "#/components/schemas/Contact"
security:
- api_key:
- read:team
/api/teams/{teamId}/contacts/{contactId}/campaign-contacts:
get:
tags:
- teams
description: Get all campaign contacts for a contacts.
parameters:
- in: path
name: teamId
schema:
type: string
required: true
description: Team ID, starting with `tea_`
example: tea_2MSb8jd6VDptcAcVJuPcJhte3Yc
- in: path
name: contactId
schema:
type: string
required: true
description: Contact ID, starting with `con_`
example: con_2MSb8jd6VDptcAcVJuPcJhte3Yc
- $ref: "#/components/parameters/take"
- $ref: "#/components/parameters/startingAfter"
- $ref: "#/components/parameters/q"
- $ref: "#/components/parameters/orderBy"
- $ref: "#/components/parameters/sort"
responses:
"200":
description: Array of campaign contacts
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/CampaignContact"
security:
- api_key:
- read:team
components:
parameters:
take:
name: take
in: query
schema:
type: integer
default: 25
maximum: 100
description: The number of items to return per page.
startingAfter:
name: startingAfter
in: query
schema:
type: string
description: ID of the item to start the pagination after (not inclusive).
q:
name: q
in: query
schema:
type: string
description: Search query to filter items by.
orderBy:
name: orderBy
in: query
schema:
type: string
description: The field to order items by (e.g., `createdAt`).
sort:
name: sort
in: query
schema:
type: string
enum:
- asc
- desc
description: The direction to sort items by.
schemas:
Success:
required:
- success
type: object
properties:
success:
type: boolean
example: true
Team:
required:
- id
- createdAt
- updatedAt
- name
- slug
type: object
properties:
id:
type: string
example: tea_qxwVhUwAj3ijxWXstmCNvIII
description: The unique ID of the team, starting with `tea_`.
createdAt:
type: string
format: date-time
example: 2022-29-12T00:00:00.000Z
description: The date and time the team was created.
updatedAt:
type: string
format: date-time
example: 2022-29-12T00:00:00.000Z
description: The date and time the team was last updated.
name:
type: string
example: My Team
description: The name of the team.
slug:
type: string
example: my-team
description: The unique slug of the team used is URLs in the FirstQuadrant app, e.g., `https://firstquadrant.ai/my-team`.
Contact:
type: object
properties:
id:
type: string
example: con_qxwVhUwAj3ijxWXstmCNvIII
description: The unique ID of the contact, starting with `con_`.
createdAt:
type: string
format: date-time
example: 2022-29-12T00:00:00.000Z
description: The date and time the contact was created.
updatedAt:
type: string
format: date-time
example: 2022-29-12T00:00:00.000Z
description: The date and time the contact was last updated.
blockedAt:
type: string
format: date-time
example: 2022-29-12T00:00:00.000Z
description: The date and time the contact was unsubscribed.
name:
type: string
example: Anand Chowdhary
description: The full name of the contact.
nickname:
type: string
example: Anand
description: The nickname of the contact, e.g., the first name.
bio:
type: string
example: Founder, CTO, CPO of FirstQuadrant. GitHub Star, Forbes 30 Under 30, Y Combinator.
description: The bio of the contact.
avatar:
type: string
example: https://firstquadrant.ai/avatar.jpg
description: The URL of the avatar of the contact.
website:
type: string
example: https://firstquadrant.ai
description: The URL of the personal website of the contact.
location:
type: string
example: San Francisco, CA, USA
description: The residential location of the contact.
timeZone:
type: string
example: America/Los_Angeles
description: The time zone of the contact in the IANA time zone database format.
city:
type: string
example: San Francisco
description: The city of the contact's residential location.
state:
type: string
example: California
description: The state of the contact's residential location.
countryCode:
type: string
example: US
description: The country code of the contact's residential location in the ISO 3166-1 alpha-2 format.
latitude:
type: number
example: 37.7749
description: The latitude of the contact's residential location.
longitude:
type: number
example: -122.4194
description: The longitude of the contact's residential location.
employmentTitle:
type: string
example: Chief Technology Officer
description: The current job title of the contact.
employmentSeniority:
type: string
example: c_suite
description: The seniority level of the contact in their current job.
enum:
- c_suite
- director
- entry
- founder
- head
- intern
- manager
- owner
- partner
- senior
- vp
companyId:
type: string
example: com_qxwVhUwAj3ijxWXstmCNvIII
description: The unique ID of the company the contact works at, starting with `com_`.
rootContactId:
type: string
example: rcn_qxwVhUwAj3ijxWXstmCNvIII
description: The globally unique ID of the root contact, starting with `rcn_`.
CampaignContact:
type: object
properties:
id:
type: string
example: cpc_qxwVhUwAj3ijxWXstmCNvIII
description: The unique ID of this contact in a campaign, starting with `cpc_`.
createdAt:
type: string
format: date-time
example: 2022-29-12T00:00:00.000Z
description: The date and time the contact was added to this campaign.
updatedAt:
type: string
format: date-time
example: 2022-29-12T00:00:00.000Z
description: The date and time the contact was last updated in this campaign.
status:
type: string
enum:
- OPEN
- WON
- LOST
example: OPEN
description: The status of the campaign contact.
data:
type: object
description: The data associated with the campaign contact added when using an integration.
campaignId:
type: string
example: cpg_qxwVhUwAj3ijxWXstmCNvIII
description: The unique ID of the campaign the campaign contact is associated with, starting with `cpg_`.
contactId:
type: string
example: con_qxwVhUwAj3ijxWXstmCNvIII
description: The unique ID of the contact the campaign contact is associated with, starting with `con_`.
campaign:
$ref: "#/components/schemas/Campaign"
Campaign:
type: object
properties:
id:
type: string
example: con_qxwVhUwAj3ijxWXstmCNvIII
description: The unique ID of the contact, starting with `con_`.
createdAt:
type: string
format: date-time
example: 2022-29-12T00:00:00.000Z
description: The date and time the contact was created.
updatedAt:
type: string
format: date-time
example: 2022-29-12T00:00:00.000Z
description: The date and time the contact was last updated.
status:
type: string
enum:
- DRAFT
- RUNNING
- PAUSED
- ARCHIVED
- EXHAUSTING
- EXHAUSTED
example: RUNNING
description: The status of the campaign.
name:
type: string
example: My Campaign
description: The name of the campaign.
goal:
type: string
enum:
- SCHEDULE_MEETING
- CUSTOM_API_GOAL
- CLICK_LINK
- REPLY
example: SCHEDULE_MEETING
description: The goal of the campaign.
goalUrl:
type: string
example: https://firstquadrant.ai/schedule-meeting
description: The URL associated with the goal of the campaign.
offeringName:
type: string
example: FirstQuadrant
description: The name of the offering associated with the campaign.
offeringDescription:
type: string
example: The best way to send emails.
description: The description of the offering associated with the campaign.
TeamOutboundSettings:
required:
- id
- createdAt
- updatedAt
- name
- slug
type: object
properties:
id:
type: string
example: tea_qxwVhUwAj3ijxWXstmCNvIII
description: The unique ID of the team, starting with `tea_`.
createdAt:
type: string
format: date-time
example: 2022-29-12T00:00:00.000Z
description: The date and time the team was created.
updatedAt:
type: string
format: date-time
example: 2022-29-12T00:00:00.000Z
description: The date and time the team was last updated.
followUpStrategy:
type: string
enum:
- EXPONENTIAL
- FIBONACCI
- LINEAR
example: EXPONENTIAL
description: The strategy used to calculate the follow-up interval.
followUpIntervalDays:
type: integer
example: 3
description: The minimum number of days between follow-up emails.
followUpMaxCount:
type: integer
example: 5
description: The maximum number of follow-up emails that can be sent.
domainRedirectUrl:
type: string
example: https://firstquadrant.ai
description: The website of the team where outbound domains should redirect to.
markAsLostDelayDays:
type: integer
example: 7
description: The number of days after the last email to mark a conversation as lost.
openTrackingEnabled:
type: boolean
example: true
description: Whether open tracking is enabled for all campaigns by default.
clickTrackingEnabled:
type: boolean
example: true
description: Whether click tracking is enabled for all campaigns by default.
autopilotCampaignStepsEnabled:
type: boolean
example: true
description: Whether Autopilot for Sequences is enabled for all campaigns by default.
autopilotReplyErrorEnabled:
type: boolean
example: true
description: Whether Autopilot is enabled for Error classifications for all campaigns by default.
autopilotReplyPositiveEnabled:
type: boolean
example: true
description: Whether Autopilot is enabled for Positive classifications for all campaigns by default.
autopilotReplyNegativeEnabled:
type: boolean
example: true
description: Whether Autopilot is enabled for Negative classifications for all campaigns by default.
autopilotReplyNeutralEnabled:
type: boolean
example: true
description: Whether Autopilot is enabled for Neutral classifications for all campaigns by default.
autopilotReplyForwardedEnabled:
type: boolean
example: true
description: Whether Autopilot is enabled for Forwarded classifications for all campaigns by default.
autopilotReplyMaybeLaterEnabled:
type: boolean
example: true
description: Whether Autopilot is enabled for Maybe later classifications for all campaigns by default.
autopilotReplyOutOfOfficeEnabled:
type: boolean
example: true
description: Whether Autopilot is enabled for Out-of-office classifications for all campaigns by default.
autopilotReplyAutomatedEnabled:
type: boolean
example: true
description: Whether Autopilot is enabled for Automated classifications for all campaigns by default.
autopilotReplyInformationRequestedEnabled:
type: boolean
example: true
description: Whether Autopilot is enabled for Information requested classifications for all campaigns by default.
dailySendTimes:
type: object
properties:
monday:
type: object
description: The daily send window for Monday.
properties:
start:
type: string
example: 09:00
description: The starting time of the daily send window.
end:
type: string
example: 17:00
description: The ending time of the daily send window.
tuesday:
type: object
description: The daily send window for Tuesday.
properties:
start:
type: string
example: 09:00
description: The starting time of the daily send window.
end:
type: string
example: 17:00
description: The ending time of the daily send window.
wednesday:
type: object
description: The daily send window for Wednesday.
properties:
start:
type: string
example: 09:00
description: The starting time of the daily send window.
end:
type: string
example: 17:00
description: The ending time of the daily send window.
thursday:
type: object
description: The daily send window for Thursday.
properties:
start:
type: string
example: 09:00
description: The starting time of the daily send window.
end:
type: string
example: 17:00
description: The ending time of the daily send window.
friday:
type: object
description: The daily send window for Friday.
properties:
start:
type: string
example: 09:00
description: The starting time of the daily send window.
end:
type: string
example: 17:00
description: The ending time of the daily send window.
saturday:
type: object
description: The daily send window for Saturday.
properties:
start:
type: string
example: 09:00
description: The starting time of the daily send window.
end:
type: string
example: 17:00
description: The ending time of the daily send window.
sunday:
type: object
description: The daily send window for Sunday.
properties:
start:
type: string
example: 09:00
description: The starting time of the daily send window.
end:
type: string
example: 17:00
description: The ending time of the daily send window.
description: The daily send window for each day of the week.
unsubscribeEnabled:
type: boolean
example: true
description: Whether the unsubscribe link is enabled for all campaigns by default.
unsubscribeText:
type: string
example: "If you don't want to hear from me, [let me know](#unsubscribe-link)."
description: The text of the unsubscribe link.
forwardEmailsInbound:
type: array
items:
type: string
example: ["[email protected]"]
description: The email addresses to forward inbound emails to.
forwardEmailsOutbound:
type: array
items:
type: string
example: ["[email protected]"]
description: The email addresses to add as BCC recipients to outbound emails.
forwardReplyErrorEnabled:
type: boolean
example: true
description: Whether to forward replies classified as Error to the team member associated with the conversation.
forwardReplyPositiveEnabled:
type: boolean
example: true
description: Whether to forward replies classified as Positive to the team member associated with the conversation.
forwardReplyNegativeEnabled:
type: boolean
example: true
description: Whether to forward replies classified as Negative to the team member associated with the conversation.
forwardReplyNeutralEnabled:
type: boolean
example: true
description: Whether to forward replies classified as Neutral to the team member associated with the conversation.
forwardReplyForwardedEnabled:
type: boolean
example: true
description: Whether to forward replies classified as Forwarded to the team member associated with the conversation.
forwardReplyMaybeLaterEnabled:
type: boolean
example: true
description: Whether to forward replies classified as Maybe later to the team member associated with the conversation.
forwardReplyOutOfOfficeEnabled:
type: boolean
example: true
description: Whether to forward replies classified as Out-of-office to the team member associated with the conversation.
forwardReplyAutomatedEnabled:
type: boolean
example: true
description: Whether to forward replies classified as Automated to the team member associated with the conversation.
forwardReplyInformationRequestedEnabled:
type: boolean
example: true
description: Whether to forward replies classified as Information requested to the team member associated with the conversation.
aggressiveness:
type: integer
example: 3
description: How aggressive the team is in sending follow-up emails.
minimum: 1
maximum: 5
UpdateContactBody:
type: object
properties:
name:
type: string
example: Anand Chowdhary
description: The full name of the contact.
nickname:
type: string
example: Anand
description: The nickname of the contact, e.g., the first name.
bio:
type: string
example: Founder, CTO, CPO of FirstQuadrant. GitHub Star, Forbes 30 Under 30, Y Combinator.
description: The bio of the contact.
avatar:
type: string
example: https://firstquadrant.ai/avatar.jpg
description: The URL of the avatar of the contact.
website:
type: string
example: https://firstquadrant.ai
description: The URL of the personal website of the contact.
location:
type: string
example: San Francisco, CA, USA
description: The residential location of the contact.
timeZone:
type: string
example: America/Los_Angeles
description: The time zone of the contact in the IANA time zone database format.
city:
type: string
example: San Francisco
description: The city of the contact's residential location.
state:
type: string
example: California
description: The state of the contact's residential location.
countryCode:
type: string
example: US
description: The country code of the contact's residential location in the ISO 3166-1 alpha-2 format.
latitude:
type: number
example: 37.7749
description: The latitude of the contact's residential location.
longitude:
type: number
example: -122.4194
description: The longitude of the contact's residential location.
employmentTitle:
type: string
example: Chief Technology Officer
description: The current job title of the contact.
employmentSeniority:
type: string
example: c_suite
description: The seniority level of the contact in their current job.
enum:
- c_suite
- director
- entry
- founder
- head