generated from mintlify/starter
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathv5.yaml
5877 lines (5877 loc) · 166 KB
/
v5.yaml
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: Whop Apps API
description: The Whop Apps API
version: v5
servers:
- url: https://{defaultHost}
variables:
defaultHost:
default: api.whop.com/api
paths:
"/v5/app/activity_feed_items":
post:
summary: Create an Activity Feed Item
tags:
- app/activity_feed_items
security:
- AppToken: []
description: Create an activity feed object (aka a post)
operationId: post_api_v5_app_activity_feed_items
parameters: []
responses:
'201':
description: activity feed item created
content:
application/json:
schema:
type: object
properties:
activity_feed_item_id:
type: string
description: The ID of the activity feed item, which will look
like afi_*************
required:
- activity_feed_item_id
'400':
description: invalid request
requestBody:
content:
application/json:
schema:
type: object
properties:
experience_id:
type: string
description: The ID of the experience, which will look like exp_*************
user_id:
type: string
description: The ID of the user, which will look like user_*************
external_id:
type: string
description: The ID of the external object that this maps to, like
a feed post
link:
type: string
description: The link that this feed post should open when clicked
rest_path:
type: string
description: The relative path the user should be redirected to
in the app
blocks:
type: array
description: The blocks of the post
items:
type: object
properties:
block_type:
type: string
description: The type of the block
text_content:
type: string
description: The textual content of the block, if applicable
metadata:
type: object
description: Any additional metadata associated with the block
required:
- block_type
required:
- experience_id
- user_id
- external_id
- blocks
"/v5/app/activity_feed_items/{external_id}":
patch:
summary: Update an Activity Feed Item
tags:
- app/activity_feed_items
security:
- AppToken: []
description: Update an activity feed object
operationId: update_api_v5_app_activity_feed_item
parameters:
- name: external_id
in: path
required: true
description: The external ID of the activity feed item
schema:
type: string
responses:
'200':
description: activity feed item updated
content:
application/json:
schema:
type: object
properties:
activity_feed_item_id:
type: string
description: The ID of the activity feed item, which will look
like afi_*************
required:
- activity_feed_item_id
requestBody:
content:
application/json:
schema:
type: object
properties:
link:
type: string
format: uri
description: The link that this feed post should open when clicked
rest_path:
type: string
description: The relative path the user should be redirected to
in the app
blocks:
type: array
description: The blocks of the post
items:
type: object
properties:
block_type:
type: string
description: The type of the block
text_content:
type: string
description: The textual content of the block, if applicable
metadata:
type: object
description: Any additional metadata associated with the block
required:
- block_type
delete:
summary: Delete an Activity Feed Item
tags:
- app/activity_feed_items
security:
- AppToken: []
description: Deletes an Activity Feed Item
operationId: delete_api_v5_app_activity_feed_item
parameters:
- name: external_id
in: path
required: true
description: The external ID of the activity feed item
schema:
type: string
responses:
'204':
description: activity feed item deleted
'404':
description: activity feed item not found
"/v5/app/app_connections":
get:
summary: List App Connections
tags:
- app/app_connections
security:
- AppToken: []
description: Returns a collection of app connections
operationId: get_api_v5_app_app_connections
parameters:
- name: page
in: query
schema:
type: integer
default: 1
required: false
description: The page number to retrieve
- name: per
in: query
schema:
type: integer
default: 10
required: false
description: The number of resources to return per page. There is a limit
of 50 results per page.
- name: company_id
in: query
required: false
description: An ID of a company to filter by, which will look like biz_*************
schema:
type: string
- name: resource_id
in: query
required: false
description: An ID of an object to filter by, which will look like prod_*************
schema:
type: string
- name: resource_type
in: query
schema:
type: string
enum:
- product
required: false
description: The type of resource to filter by, ex 'product'.
responses:
'200':
description: app connections retrieved
content:
application/json:
schema:
type: object
properties:
pagination:
"$ref": "#/components/schemas/Pagination"
data:
type: array
items:
"$ref": "#/components/schemas/AppAppConnection"
required:
- pagination
- data
post:
summary: Create an App Connection
tags:
- app/app_connections
security:
- AppToken: []
description: Create an app connection for an object
operationId: post_api_v5_app_app_connections
parameters: []
responses:
'201':
description: app connection created
content:
application/json:
schema:
"$ref": "#/components/schemas/AppAppConnection"
requestBody:
content:
application/json:
schema:
type: object
properties:
resource_id:
type: string
description: The ID of the polymorphic resource for the connection.
Ex. a product ID like prod_*************.
resource_type:
type: string
description: The type of the polymorphic resource for the connection.
Ex. 'product'
enum:
- product
view_type:
type: string
description: The type of view for the connection.
enum:
- customer_before_checkout_view
required:
- resource_id
- resource_type
- view_type
"/v5/app/app_connections/{id}":
parameters:
- name: id
in: path
required: true
description: The ID of the app connection, which will look like apco_*************
schema:
type: string
get:
summary: Retrieve an app connection
tags:
- app/app_connections
security:
- AppToken: []
description: Returns an app connection
operationId: get_api_v5_app_app_connections_id
responses:
'200':
description: app connection found
content:
application/json:
schema:
"$ref": "#/components/schemas/AppAppConnection"
delete:
summary: Delete an App Connection
tags:
- app/app_connections
security:
- AppToken: []
description: Deletes an App Connection
operationId: delete_api_v5_app_app_connections_id
responses:
'204':
description: app connection deleted
"/v5/app":
get:
summary: Retrieve the current app
tags:
- app
security:
- AppToken: []
description: Returns an App
operationId: get_api_v5_app
parameters:
- name: x-whop-impersonate-app
in: header
required: false
schema:
type: string
description: The tag of the component app to impersonate
responses:
'200':
description: A successful response
content:
application/json:
schema:
"$ref": "#/components/schemas/AppApp"
'403':
description: Forbidden
"$ref": "#/components/responses/Forbidden"
"/v5/app/authorized_users":
get:
summary: List Authorized Users
tags:
- app/authorized_users
security:
- AppToken: []
description: Returns a collection of Authorized Users
operationId: get_api_v5_app_authorized_users
parameters:
- name: page
in: query
schema:
type: integer
default: 1
required: false
description: The page number to retrieve
- name: per
in: query
schema:
type: integer
default: 10
required: false
description: The number of resources to return per page. There is a limit
of 50 results per page.
- name: company_id
in: query
required: false
description: An ID of a company to filter by, which will look like biz_*************
schema:
type: string
- name: user_id
in: query
required: false
description: An ID of a user to filter by, which will look like user_*************
schema:
type: string
- name: role
in: query
required: false
description: A role to filter by.
schema:
type: string
enum:
- owner
- admin
- moderator
- app_manager
- sales_manager
- name: search
in: query
required: false
description: A search to filter by. This will search the authorized users'
name and username.
schema:
type: string
responses:
'200':
description: authorized users retrieved
content:
application/json:
schema:
type: object
properties:
pagination:
"$ref": "#/components/schemas/Pagination"
data:
type: array
items:
"$ref": "#/components/schemas/AppAuthorizedUser"
required:
- pagination
- data
"/v5/app/authorized_users/{id}":
parameters:
- name: id
in: path
required: true
description: The ID of the AuthorizedUser, which will look like ausr_*************.
schema:
type: string
get:
summary: Retrieve an Authorized User
tags:
- app/authorized_users
security:
- AppToken: []
description: Returns an Authorized User
operationId: get_api_v5_app_authorized_users_id
responses:
'200':
description: authorized user found
content:
application/json:
schema:
"$ref": "#/components/schemas/AppAuthorizedUser"
'404':
description: not found
"$ref": "#/components/responses/NotFound"
"/v5/app/companies":
get:
summary: List Companies
tags:
- app/companies
security:
- AppToken: []
description: Returns a collection of companies
operationId: get_api_v5_app_companies
parameters:
- name: page
in: query
schema:
type: integer
default: 1
required: false
description: The page number to retrieve
- name: per
in: query
schema:
type: integer
default: 10
required: false
description: The number of resources to return per page. There is a limit
of 50 results per page.
responses:
'200':
description: A successful response
content:
application/json:
schema:
type: object
properties:
pagination:
"$ref": "#/components/schemas/Pagination"
data:
type: array
items:
"$ref": "#/components/schemas/AppCompany"
required:
- pagination
- data
"/v5/app/companies/{id}":
parameters:
- name: id
in: path
required: true
description: The ID of the Company, which will look like biz_*************
schema:
type: string
get:
summary: Retrieve a Company
tags:
- app/companies
security:
- AppToken: []
description: Returns a company
operationId: get_api_v5_app_companies_id
responses:
'200':
description: A successful response
content:
application/json:
schema:
"$ref": "#/components/schemas/AppCompany"
'404':
description: Not found
"$ref": "#/components/responses/NotFound"
"/v5/app/experiences":
get:
summary: List Experiences
tags:
- app/experiences
security:
- AppToken: []
description: Returns a collection of experiences
operationId: get_api_v5_app_experiences
parameters:
- name: company_id
in: query
required: false
description: An ID of a company to filter by, which will look like biz_*************
schema:
type: string
- name: product_id
in: query
required: false
description: An ID of a product to filter by, which will look like prod_*************
schema:
type: string
- name: page
in: query
schema:
type: integer
default: 1
required: false
description: The page number to retrieve
- name: per
in: query
schema:
type: integer
default: 10
required: false
description: The number of resources to return per page. There is a limit
of 50 results per page.
responses:
'200':
description: A successful response
content:
application/json:
schema:
type: object
properties:
pagination:
"$ref": "#/components/schemas/Pagination"
data:
type: array
items:
"$ref": "#/components/schemas/AppExperience"
required:
- pagination
- data
"/v5/app/experiences/{id}":
parameters:
- name: id
in: path
required: true
description: The ID of the Experience, which will look like exp_*************
schema:
type: string
get:
summary: Retrieve an Experience
tags:
- app/experiences
security:
- AppToken: []
description: Returns an experience
operationId: get_api_v5_app_experiences_id
responses:
'200':
description: A successful response
content:
application/json:
schema:
"$ref": "#/components/schemas/AppExperience"
'404':
description: Not found
"$ref": "#/components/responses/NotFound"
patch:
summary: Update an Experience
tags:
- app/experiences
security:
- AppToken: []
description: Updates an experience
operationId: patch_api_v5_app_experiences_id
parameters: []
responses:
'200':
description: A successful response
content:
application/json:
schema:
"$ref": "#/components/schemas/AppExperience"
'400':
description: Invalid request
"$ref": "#/components/responses/InvalidParameters"
requestBody:
content:
application/json:
schema:
type: object
properties:
metadata:
type: object
description: The metadata of the experience
required:
- metadata
"/v5/app/feed_content_items":
post:
summary: Create a Feed Content Item
tags:
- app/feed_content_items
security:
- AppToken: []
description: Create a Feed Content Item
operationId: post_api_v5_app_feed_content_items
parameters: []
responses:
'201':
description: feed content item created
content:
application/json:
schema:
type: object
properties:
feed_content_item_id:
type: string
description: The ID of the feed content item, which will look
like fci_*************
required:
- feed_content_item_id
'400':
description: invalid request
"$ref": "#/components/responses/InvalidParameters"
requestBody:
content:
application/json:
schema:
type: object
properties:
experience_id:
type: string
description: The ID of the experience, which will look like exp_*************
user_id:
type: string
description: The ID of the user, which will look like user_*************
external_id:
type: string
description: The ID of the external object that this maps to, like
a feed post
parent_external_id:
type: string
description: The ID of the parent external object that this maps
to, like a feed post
rest_path:
type: string
description: The relative path the user should be redirected to
in the app
event_type:
type: string
description: The type of event that this feed post is associated
with.
metadata:
type: object
description: A metadata object that can accept any properties. All
metadata must include a 'title' property that is a String value.
additionalProperties: true
file_attachments:
type: array
description: The file attachments of the feed content item. This
can be videos, images, or files.
items:
type: object
properties:
type:
type: string
enum:
- image
- video
- file
description: The type of the file
file_url:
type: string
description: The url of the file
required:
- type
- file_url
gifs:
type: array
description: Any gifs attached to the feed content item.
items:
type: object
properties:
height:
type: number
description: The height of the gif
width:
type: number
description: The width of the gif
original_url:
type: string
description: The original url of the gif
preview_url:
type: string
description: The preview url of the gif
url:
type: string
description: The url of the gif
slug:
type: string
description: The slug of the gif
title:
type: string
description: The title of the gif
provider:
type: string
description: The provider of the gif
required:
- height
- width
- original_url
- preview_url
- url
- slug
- title
- provider
required:
- experience_id
- external_id
- metadata
- event_type
"/v5/app/feed_content_items/{external_id}":
parameters:
- name: external_id
in: path
required: true
description: The external ID of the feed content item
schema:
type: string
delete:
summary: Delete a Feed Content Item
tags:
- app/feed_content_items
security:
- AppToken: []
description: Deletes a Feed Content Item
operationId: delete_api_v5_app_feed_content_item
responses:
'204':
description: feed content item deleted
"/v5/app/inbound_webhook_filters":
get:
summary: List Inbound Webhooks Filters
tags:
- app/inbound_webhook_filters
security:
- AppToken: []
description: Returns a collection of inbound webhook filters
operationId: get_api_v5_app_inbound_webhook_filters
parameters:
- name: page
in: query
schema:
type: integer
default: 1
required: false
description: The page number to return
- name: per
in: query
schema:
type: integer
default: 10
required: false
description: The number of resources to return per page. There is a limit
of 50 results per page.
responses:
'200':
description: webhook filters retrieved
content:
application/json:
schema:
type: object
properties:
pagination:
"$ref": "#/components/schemas/Pagination"
data:
type: array
items:
"$ref": "#/components/schemas/AppInboundWebhookFilter"
required:
- pagination
- data
post:
summary: Creates a Inbound Webhook Filter
tags:
- app/inbound_webhook_filters
security:
- AppToken: []
description: Create an Inbound Webhook Filter
operationId: post_api_v5_app_inbound_webhook_filters
parameters: []
responses:
'200':
description: webhook filter created
requestBody:
content:
application/json:
schema:
type: object
properties:
filters:
type: object
description: The filters of the inbound webhook
experience_id:
type: string
description: The ID of the experience, which will look like exp_*************
required:
- experience_id
- filters
"/v5/app/inbound_webhook_filters/{id}":
parameters:
- name: id
in: path
required: true
description: The ID of the Inbound Webhook Filter, which will look like inwf_************
schema:
type: string
get:
summary: Retrieve an Inbound Webhook Filter
tags:
- app/inbound_webhook_filters
security:
- AppToken: []
description: Returns an inbound webhook filter
operationId: get_api_v5_app_inbound_webhook_filters_id
responses:
'200':
description: webhook filter found
content:
application/json:
schema:
"$ref": "#/components/schemas/AppInboundWebhookFilter"
"/v5/app/inbound_webhook_filters/fetch_for_experience/{experience_id}":
parameters:
- name: experience_id
in: path
required: true
description: The ID of the experience, which will look like exp_************
schema:
type: string
get:
summary: Retrieve an Experience's Inbound Webhook Filters
tags:
- app/inbound_webhook_filters
security:
- AppToken: []
description: Returns an inbound webhook filter
operationId: get_api_v5_app_inbound_webhook_filters_fetch_for_experience
responses:
'200':
description: webhook filter found
content:
application/json:
schema:
"$ref": "#/components/schemas/AppInboundWebhookFilter"
"/v5/app/inbound_webhooks":
get:
summary: List Inbound Webhooks
tags:
- app/inbound_webhooks
security:
- AppToken: []
description: Returns a collection of inbound webhooks
operationId: get_api_v5_app_inbound_webhooks
parameters:
- name: page
in: query
schema:
type: integer
default: 1
required: false
description: The page number to retrieve
- name: per
in: query
schema:
type: integer
default: 10
required: false
description: The number of resources to return per page. There is a limit
of 50 results per page.
- name: experience_id
in: query
required: false
description: The ID of an experience to filter by, which will look like exp_*************
schema:
type: string
responses:
'200':
description: A successful response
content:
application/json:
schema:
type: object
properties:
pagination:
"$ref": "#/components/schemas/Pagination"
data:
type: array
items:
"$ref": "#/components/schemas/AppInboundWebhook"
required:
- pagination
- data
post:
summary: Create a Inbound Webhook
tags:
- app/inbound_webhooks
security:
- AppToken: []
description: Create a Inbound Webhook
operationId: post_api_v5_app_inbound_webhooks
parameters: []
responses:
'201':
description: A successful response
content:
application/json:
schema:
"$ref": "#/components/schemas/AppInboundWebhook"
'400':
description: Invalid request
"$ref": "#/components/responses/InvalidParameters"
requestBody:
content:
application/json:
schema:
type: object
properties:
filter_values:
type: object
description: The filter values of the inbound webhook
discord_embed:
type: object
description: The discord embed of the inbound webhook
idempotent_key:
type: string
description: The idempotent key of the inbound webhook
timestamp:
type: string
description: 'The timestamp of the inbound webhook in ISO8601 format.
Example: 2021-01-01T00:00:00Z'
required:
- filter_values
- discord_embed
- timestamp
"/v5/app/last_activity":
post:
summary: Create a last activity
tags:
- app/last_activity
security:
- AppToken: []
description: Create a last activity cache and update this experience's last
activity timestamp
operationId: post_api_v5_app_last_activity
parameters: []
responses:
'204':
description: A successful response
'400':
description: Invalid request
"$ref": "#/components/responses/InvalidParameters"
requestBody:
content:
application/json:
schema:
type: object
properties:
experience_id:
type: string
description: The ID of the experience, which will look like exp_*************
user_id:
type: string
description: The ID of the user, which will look like user_*************
data:
type: object
description: A data object that can accept any properties.
additionalProperties: true
update_last_activity_at:
type: boolean
description: Whether or not to update the last_activity_at timestamp
of the experience
required:
- experience_id
- data
"/v5/app/line_items":
get:
summary: List Line Items
tags:
- app/line_items
security:
- AppToken: []
description: Returns a collection of line items