-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapi_service_registry.yaml
More file actions
5949 lines (5948 loc) · 160 KB
/
api_service_registry.yaml
File metadata and controls
5949 lines (5948 loc) · 160 KB
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
global_settings:
default_retries: 3
default_timeout: 30
global_rate_limit:
enabled: true
requests_per_second: 100
user_agent: API-Integration-Platform/1.0
schema_version: 1.0.0
services:
accuweather:
api_specs:
- base_url: https://dataservice.accuweather.com
schema_url: https://developer.accuweather.com/apis
spec_format: openapi_3.0
transport: https
type: openapi
version: v1
authentication:
api_key_config:
location: query
parameter_name: apikey
primary_method: api_key
category: weather
description: Weather forecasts, warnings, and historical data
documentation:
api_reference: https://developer.accuweather.com/apis
main_docs: https://developer.accuweather.com/
name: AccuWeather
operations:
- endpoint_pattern: /locations/v1/cities/search
method: GET
parameters:
- location: query
name: q
required: true
type: string
resource: locations
verb: search
- endpoint_pattern: /currentconditions/v1/{locationKey}
method: GET
parameters:
- location: path
name: locationKey
required: true
type: string
- location: query
name: details
type: boolean
resource: current_conditions
verb: read
pricing_model: freemium
rate_limits:
tier_based_limits:
limited_trial:
requests_per_day: 50
premium:
requests_per_day: 750000
standard:
requests_per_day: 225000
status: active
vendor: AccuWeather
adopt_a_pet:
api_specs:
- base_url: https://api.adoptapet.com/v1
schema_url: https://www.adoptapet.com/public/apis/pet_list.html
spec_format: openapi_3.0
transport: https
type: openapi
version: v1
authentication:
api_key_config:
location: query
parameter_name: api_key
primary_method: api_key
category: other
description: Resource to help get pets adopted
documentation:
api_reference: https://www.adoptapet.com/public/apis/pet_list.html
main_docs: https://www.adoptapet.com/public/apis/pet_list.html
name: AdoptAPet
operations:
- endpoint_pattern: /pets/search
method: GET
parameters:
- location: query
name: location
required: true
type: string
- location: query
name: animal
required: true
type: string
- location: query
name: breed
type: string
resource: pets
verb: search
- endpoint_pattern: /pets/{pet_id}
method: GET
parameters:
- location: path
name: pet_id
required: true
type: string
resource: pet
verb: read
pricing_model: freemium
rate_limits:
default_limits:
requests_per_day: 10000
sdks:
javascript: https://github.com/adoptapet/adoptapet-js
python: https://github.com/adoptapet/adoptapet-py
status: active
vendor: AdoptAPet
adyen:
api_specs:
- base_url: https://checkout-test.adyen.com/v70
schema_url: https://docs.adyen.com/api-explorer/
spec_format: openapi_3.0
transport: https
type: openapi
version: v70
authentication:
api_key_config:
location: header
parameter_name: X-API-Key
primary_method: api_key
category: payment
description: Global payment processing platform
documentation:
api_reference: https://docs.adyen.com/api-explorer/
main_docs: https://docs.adyen.com/
name: Adyen
operations:
- endpoint_pattern: /payments
method: POST
parameters:
- location: body
name: amount
required: true
type: object
- location: body
name: merchantAccount
required: true
type: string
- location: body
name: reference
required: true
type: string
resource: payment
verb: create
- endpoint_pattern: /sessions
method: POST
parameters:
- location: body
name: amount
required: true
type: object
- location: body
name: merchantAccount
required: true
type: string
- location: body
name: reference
required: true
type: string
resource: payment_session
verb: create
pricing_model: usage_based
rate_limits:
default_limits:
requests_per_second: 25
sdks:
java: https://github.com/Adyen/adyen-java-api-library
javascript: https://github.com/Adyen/adyen-node-api-library
python: https://github.com/Adyen/adyen-python-api-library
status: active
vendor: Adyen
webhooks:
events:
- description: Payment authorized
event_type: AUTHORISATION
- description: Payment captured
event_type: CAPTURE
supported: true
airtable:
api_specs:
- base_url: https://api.airtable.com/v0
schema_url: https://airtable.com/developers/web/api/introduction
spec_format: openapi_3.0
transport: https
type: openapi
version: v0
authentication:
api_key_config:
location: header
parameter_name: Authorization
prefix: Bearer
primary_method: bearer_token
category: data_storage
description: Database and spreadsheet hybrid platform
documentation:
api_reference: https://airtable.com/developers/web/api
main_docs: https://airtable.com/developers/web/api/introduction
name: Airtable
operations:
- endpoint_pattern: /{baseId}/{tableIdOrName}
method: GET
parameters:
- location: path
name: baseId
required: true
type: string
- location: path
name: tableIdOrName
required: true
type: string
- location: query
name: maxRecords
type: integer
- location: query
name: view
type: string
resource: records
verb: list
- batch_capable: true
endpoint_pattern: /{baseId}/{tableIdOrName}
method: POST
parameters:
- location: path
name: baseId
required: true
type: string
- location: path
name: tableIdOrName
required: true
type: string
- location: body
name: records
required: true
type: array
resource: record
verb: create
- batch_capable: true
endpoint_pattern: /{baseId}/{tableIdOrName}
method: PATCH
parameters:
- location: path
name: baseId
required: true
type: string
- location: path
name: tableIdOrName
required: true
type: string
- location: body
name: records
required: true
type: array
resource: record
verb: update
pricing_model: freemium
rate_limits:
default_limits:
requests_per_second: 5
tier_based_limits:
business:
requests_per_month: null
free:
requests_per_month: 1000
team:
requests_per_month: 100000
sdks:
go: https://github.com/mehanizm/airtable
javascript: https://github.com/airtable/airtable.js
python: https://github.com/gtalarico/pyairtable
status: active
vendor: Airtable
webhooks:
events:
- description: Record was created
event_type: recordCreated
- description: Record was updated
event_type: recordUpdated
- description: Record was deleted
event_type: recordDeleted
supported: true
alphavantage:
api_specs:
- base_url: https://www.alphavantage.co/query
schema_url: https://www.alphavantage.co/documentation/
spec_format: openapi_3.0
transport: https
type: openapi
version: v1
authentication:
api_key_config:
location: query
parameter_name: apikey
primary_method: api_key
category: finance
description: Stock market data and financial indicators
documentation:
api_reference: https://www.alphavantage.co/documentation/
main_docs: https://www.alphavantage.co/documentation/
name: Alpha Vantage
operations:
- endpoint_pattern: /
method: GET
parameters:
- location: query
name: function
required: true
type: string
- location: query
name: symbol
required: true
type: string
- location: query
name: interval
type: string
resource: time_series
verb: read
- endpoint_pattern: /
method: GET
parameters:
- location: query
name: function
required: true
type: string
- location: query
name: keywords
required: true
type: string
resource: symbols
verb: search
pricing_model: freemium
rate_limits:
tier_based_limits:
free:
requests_per_day: 500
requests_per_minute: 5
premium:
requests_per_day: 5000
requests_per_minute: 75
sdks:
javascript: https://github.com/zackurben/alphavantage
python: https://github.com/RomelTorres/alpha_vantage
status: active
vendor: Alpha Vantage Inc.
amplitude:
api_specs:
- base_url: https://api2.amplitude.com/2
schema_url: https://developers.amplitude.com/docs/http-api-v2
spec_format: openapi_3.0
transport: https
type: openapi
version: v2
authentication:
api_key_config:
location: body
parameter_name: api_key
primary_method: api_key
category: analytics
description: Product analytics and user behavior platform
documentation:
api_reference: https://developers.amplitude.com/docs/http-api-v2
main_docs: https://developers.amplitude.com/
name: Amplitude
operations:
- endpoint_pattern: /httpapi
method: POST
parameters:
- location: body
name: api_key
required: true
type: string
- location: body
name: events
required: true
type: array
resource: event
verb: send
pricing_model: freemium
rate_limits:
default_limits:
requests_per_second: 30
sdks:
javascript: https://github.com/amplitude/Amplitude-JavaScript
python: https://github.com/amplitude/amplitude-python
status: active
vendor: Amplitude
anthropic:
api_specs:
- base_url: https://api.anthropic.com
schema_url: https://docs.anthropic.com/claude/reference
spec_format: openapi_3.0
transport: https
type: openapi
version: v1
authentication:
api_key_config:
location: header
parameter_name: x-api-key
primary_method: api_key
category: ai_services
description: AI assistant and language model API
documentation:
api_reference: https://docs.anthropic.com/claude/reference
main_docs: https://docs.anthropic.com/claude
name: Anthropic Claude
operations:
- endpoint_pattern: /v1/messages
method: POST
parameters:
- location: body
name: model
required: true
type: string
- location: body
name: messages
required: true
type: array
- location: body
name: max_tokens
required: true
type: integer
- location: body
name: temperature
type: number
- location: body
name: tools
type: array
resource: message
verb: generate
pricing_model: usage_based
rate_limits:
tier_based_limits:
tier_1:
input_tokens_per_minute: 40000
output_tokens_per_minute: 8000
requests_per_minute: 60
tier_2:
input_tokens_per_minute: 100000
output_tokens_per_minute: 20000
requests_per_minute: 1000
tier_3:
input_tokens_per_minute: 200000
output_tokens_per_minute: 40000
requests_per_minute: 2000
sdks:
javascript: https://github.com/anthropics/anthropic-sdk-typescript
python: https://github.com/anthropics/anthropic-sdk-python
status: active
vendor: Anthropic
asana:
api_specs:
- base_url: https://app.asana.com/api/1.0
schema_url: https://developers.asana.com/docs/overview
spec_format: openapi_3.0
transport: https
type: openapi
version: '1.0'
authentication:
alternative_methods:
- bearer_token
oauth2_config:
authorization_url: https://app.asana.com/-/oauth_authorize
common_scopes:
- description: Read and write access to most resources
scope: default
flows:
- authorization_code
token_url: https://app.asana.com/-/oauth_token
primary_method: oauth2
category: project_management
description: Project and task management platform
documentation:
api_reference: https://developers.asana.com/docs/overview
main_docs: https://developers.asana.com/docs
name: Asana
operations:
- endpoint_pattern: /tasks
method: POST
parameters:
- location: body
name: name
required: true
type: string
- location: body
name: projects
type: array
- location: body
name: assignee
type: string
resource: task
verb: create
- endpoint_pattern: /projects
method: GET
parameters:
- location: query
name: workspace
required: true
type: string
- location: query
name: limit
type: integer
resource: projects
verb: list
- endpoint_pattern: /tasks/{task_gid}
method: GET
parameters:
- location: path
name: task_gid
required: true
type: string
resource: task
verb: read
pricing_model: freemium
rate_limits:
concurrent_requests: 5
default_limits:
requests_per_minute: 1500
sdks:
java: https://github.com/Asana/java-asana
javascript: https://github.com/Asana/node-asana
python: https://github.com/Asana/python-asana
status: active
vendor: Asana
webhooks:
events:
- description: Task created, updated, or deleted
event_type: task
- description: Project modified
event_type: project
- description: Comment or activity added
event_type: story
supported: true
auth0:
api_specs:
- base_url: https://{domain}.auth0.com/api/v2
schema_url: https://auth0.com/docs/api/management/v2
spec_format: openapi_3.0
transport: https
type: openapi
version: v2
authentication:
oauth2_config:
authorization_url: https://{domain}.auth0.com/authorize
common_scopes:
- description: Read user data
scope: read:users
- description: Update user data
scope: update:users
- description: Create users
scope: create:users
flows:
- client_credentials
token_url: https://{domain}.auth0.com/oauth/token
primary_method: oauth2
category: security
compliance:
- gdpr
- soc2
- iso27001
description: Identity and access management platform
documentation:
api_reference: https://auth0.com/docs/api/management/v2
main_docs: https://auth0.com/docs
name: Auth0
operations:
- endpoint_pattern: /users
method: POST
parameters:
- location: body
name: email
required: true
type: string
- location: body
name: password
type: string
- location: body
name: connection
required: true
type: string
resource: user
verb: create
- endpoint_pattern: /users/{id}
method: GET
parameters:
- location: path
name: id
required: true
type: string
resource: user
verb: read
- endpoint_pattern: /users
method: GET
parameters:
- location: query
name: q
type: string
- location: query
name: page
type: integer
resource: users
verb: list
pricing_model: freemium
rate_limits:
default_limits:
requests_per_second: 15
endpoint_specific:
logs:
requests_per_second: 5
users:
requests_per_second: 10
sdks:
java: https://github.com/auth0/auth0-java
javascript: https://github.com/auth0/node-auth0
python: https://github.com/auth0/auth0-python
status: active
vendor: Auth0
aws_dynamodb:
api_specs:
- base_url: https://dynamodb.{region}.amazonaws.com
schema_url: https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/
spec_format: openapi_3.0
transport: https
type: openapi
version: '20120810'
authentication:
custom_auth:
description: AWS Signature Version 4
implementation_guide: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
primary_method: custom
category: data_storage
description: NoSQL database service
documentation:
api_reference: https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/
main_docs: https://docs.aws.amazon.com/dynamodb/
name: AWS DynamoDB
operations:
- endpoint_pattern: /
method: POST
parameters:
- location: body
name: TableName
required: true
type: string
- location: body
name: Item
required: true
type: object
resource: item
verb: create
- endpoint_pattern: /
method: POST
parameters:
- location: body
name: TableName
required: true
type: string
- location: body
name: Key
required: true
type: object
resource: item
verb: read
pricing_model: usage_based
rate_limits:
default_limits:
requests_per_second: 40000
sdks:
java: https://github.com/aws/aws-sdk-java-v2
javascript: https://github.com/aws/aws-sdk-js-v3
python: https://github.com/boto/boto3
status: active
vendor: Amazon Web Services
aws_s3:
api_specs:
- base_url: https://{bucket}.s3.amazonaws.com
schema_url: https://docs.aws.amazon.com/AmazonS3/latest/API/
spec_format: openapi_3.0
transport: https
type: openapi
version: '2006-03-01'
authentication:
custom_auth:
description: AWS Signature Version 4
implementation_guide: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
primary_method: custom
category: data_storage
description: Object storage service
documentation:
api_reference: https://docs.aws.amazon.com/AmazonS3/latest/API/
main_docs: https://docs.aws.amazon.com/s3/
name: AWS S3
operations:
- endpoint_pattern: /{key}
method: PUT
parameters:
- location: path
name: key
required: true
type: string
resource: object
verb: upload
- endpoint_pattern: /{key}
method: GET
parameters:
- location: path
name: key
required: true
type: string
resource: object
verb: download
- endpoint_pattern: /
method: GET
parameters:
- location: query
name: prefix
type: string
resource: objects
verb: list
pricing_model: usage_based
rate_limits:
default_limits:
requests_per_second: 3500
sdks:
java: https://github.com/aws/aws-sdk-java-v2
javascript: https://github.com/aws/aws-sdk-js-v3
python: https://github.com/boto/boto3
status: active
vendor: Amazon Web Services
binance:
api_specs:
- base_url: https://api.binance.com/api/v3
schema_url: https://binance-docs.github.io/apidocs/
spec_format: openapi_3.0
transport: https
type: openapi
version: v3
authentication:
api_key_config:
location: header
parameter_name: X-MBX-APIKEY
primary_method: api_key
category: finance
description: Cryptocurrency exchange API
documentation:
api_reference: https://binance-docs.github.io/apidocs/spot/en/
main_docs: https://binance-docs.github.io/apidocs/
name: Binance
operations:
- endpoint_pattern: /ticker/price
method: GET
parameters:
- location: query
name: symbol
type: string
resource: ticker
verb: read
- endpoint_pattern: /order
method: POST
parameters:
- location: query
name: symbol
required: true
type: string
- location: query
name: side
required: true
type: string
- location: query
name: type
required: true
type: string
- location: query
name: quantity
required: true
type: string
resource: order
verb: create
pricing_model: free
rate_limits:
default_limits:
requests_per_minute: 1200
endpoint_specific:
klines:
requests_per_minute: 1200
order:
requests_per_second: 10
sdks:
javascript: https://github.com/binance/binance-connector-node
python: https://github.com/binance/binance-connector-python
status: active
vendor: Binance
bitbucket:
api_specs:
- base_url: https://api.bitbucket.org/2.0
schema_url: https://developer.atlassian.com/bitbucket/api/2/reference/
spec_format: openapi_3.0
transport: https
type: openapi
version: '2.0'
authentication:
alternative_methods:
- bearer_token
oauth2_config:
authorization_url: https://bitbucket.org/site/oauth2/authorize
flows:
- authorization_code
token_url: https://bitbucket.org/site/oauth2/access_token
primary_method: oauth2
category: development
description: Git repository hosting and CI/CD platform
documentation:
api_reference: https://developer.atlassian.com/bitbucket/api/2/reference/
main_docs: https://developer.atlassian.com/bitbucket/
name: Bitbucket
operations:
- endpoint_pattern: /repositories/{workspace}
method: GET
parameters:
- location: path
name: workspace
required: true
type: string
resource: repositories
verb: list
- endpoint_pattern: /repositories/{workspace}/{repo_slug}/issues
method: POST
parameters:
- location: path
name: workspace
required: true
type: string
- location: path
name: repo_slug
required: true
type: string
- location: body
name: title
required: true
type: string
resource: issue
verb: create
pricing_model: freemium
rate_limits:
default_limits:
requests_per_hour: 1000
sdks:
python: https://github.com/atlassian-api/atlassian-python-api
status: active
vendor: Atlassian
webhooks:
events:
- description: Repository push
event_type: repo:push
- description: Pull request created
event_type: pullrequest:created
supported: true
braintree:
api_specs:
- base_url: https://api.sandbox.braintreegateway.com
schema_url: https://developers.braintreepayments.com/reference/overview
spec_format: openapi_3.0
transport: https
type: openapi
version: v1
authentication:
alternative_methods:
- api_key
primary_method: basic_auth
category: payment
description: PayPal's payment platform for developers
documentation:
api_reference: https://developers.braintreepayments.com/reference/overview
main_docs: https://developers.braintreepayments.com/
name: Braintree
operations:
- endpoint_pattern: /merchants/{merchant_id}/transactions
method: POST
parameters:
- location: path
name: merchant_id
required: true
type: string
- location: body
name: amount
required: true
type: string
resource: transaction
verb: create
- endpoint_pattern: /merchants/{merchant_id}/customers
method: POST
parameters:
- location: path
name: merchant_id
required: true
type: string
- location: body
name: id
type: string
resource: customer
verb: create
pricing_model: usage_based
rate_limits:
default_limits:
requests_per_minute: 2000
sdks:
javascript: https://github.com/braintree/braintree_node
python: https://github.com/braintree/braintree_python
status: active
vendor: PayPal
webhooks:
events:
- description: Transaction settled
event_type: transaction_settled
- description: Subscription charged
event_type: subscription_charged_successfully
supported: true
circleci:
api_specs:
- base_url: https://circleci.com/api/v2
schema_url: https://circleci.com/docs/api/v2/
spec_format: openapi_3.0
transport: https
type: openapi
version: v2
authentication:
api_key_config:
location: header
parameter_name: Circle-Token
primary_method: bearer_token
category: development
description: Continuous integration and delivery platform
documentation:
api_reference: https://circleci.com/docs/api/v2/
main_docs: https://circleci.com/docs/
name: CircleCI
operations:
- endpoint_pattern: /project
method: GET
parameters: []
resource: projects
verb: list
- endpoint_pattern: /project/{project-slug}/pipeline
method: POST
parameters:
- location: path
name: project-slug
required: true
type: string
resource: pipeline
verb: start
pricing_model: freemium
rate_limits:
default_limits:
requests_per_hour: 3600
sdks:
python: https://github.com/alpinweis/pycircleci
status: active
vendor: CircleCI
webhooks:
events:
- description: Workflow completed
event_type: workflow-completed
- description: Job completed
event_type: job-completed
supported: true
clickup:
api_specs:
- base_url: https://api.clickup.com/api/v2
schema_url: https://clickup.com/api/
spec_format: openapi_3.0
transport: https
type: openapi
version: v2
authentication:
api_key_config:
location: header
parameter_name: Authorization
prefix: Bearer
primary_method: bearer_token
category: project_management
description: All-in-one productivity and project management platform
documentation:
api_reference: https://clickup.com/api/
main_docs: https://clickup.com/api/
name: ClickUp
operations:
- endpoint_pattern: /list/{list_id}/task
method: POST
parameters:
- location: path
name: list_id
required: true
type: string