@nangohq/providers 0.69.45 → 0.69.47
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/providers.yaml +490 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nangohq/providers",
|
|
3
|
-
"version": "0.69.
|
|
3
|
+
"version": "0.69.47",
|
|
4
4
|
"description": "Nango's providers.yaml and getters",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"js-yaml": "4.1.1"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@nangohq/types": "0.69.
|
|
19
|
+
"@nangohq/types": "0.69.47",
|
|
20
20
|
"vitest": "3.2.4"
|
|
21
21
|
},
|
|
22
22
|
"files": [
|
package/providers.yaml
CHANGED
|
@@ -808,36 +808,49 @@ amazon-selling-partner:
|
|
|
808
808
|
redirect_uri_metadata:
|
|
809
809
|
- selling_partner_id
|
|
810
810
|
proxy:
|
|
811
|
-
base_url: https://sellingpartnerapi-${connectionConfig.region}.amazon.com
|
|
811
|
+
base_url: https://${connectionConfig.subdomain}-${connectionConfig.region}.amazon.com || https://sellingpartnerapi-${connectionConfig.region}.amazon.com
|
|
812
812
|
headers:
|
|
813
813
|
x-amz-access-token: ${accessToken}
|
|
814
|
-
docs: https://nango.dev/docs/integrations/
|
|
815
|
-
docs_connect: https://nango.dev/docs/integrations/
|
|
814
|
+
docs: https://nango.dev/docs/api-integrations/amazon-selling-partner
|
|
815
|
+
docs_connect: https://nango.dev/docs/api-integrations/amazon-selling-partner/connect
|
|
816
|
+
setup_guide_url: https://nango.dev/docs/api-integrations/amazon-selling-partner/how-to-register-your-own-amazon-selling-partner-api-oauth-app
|
|
816
817
|
connection_config:
|
|
817
818
|
applicationId:
|
|
818
819
|
type: string
|
|
819
820
|
title: Application ID
|
|
820
|
-
description: The unique identifier for your Amazon Selling Partner application
|
|
821
|
+
description: The unique identifier for your Amazon Selling Partner application.
|
|
821
822
|
example: 'amzn1.sellerapps.app.0bf296b5-36a6-4942-a13e-EXAMPLEfcd28'
|
|
822
823
|
pattern: '^[a-zA-Z0-9.-]+$'
|
|
823
824
|
doc_section: '#step-1-finding-your-app-id'
|
|
824
825
|
order: 1
|
|
825
826
|
domain:
|
|
826
827
|
type: string
|
|
827
|
-
title: Domain
|
|
828
|
-
description: The domain representing the Amazon platform you are integrating with
|
|
828
|
+
title: Authorization Domain
|
|
829
|
+
description: The domain representing the Amazon platform you are integrating with.
|
|
829
830
|
example: sellercentral.amazon.com
|
|
830
831
|
pattern: '^[a-z0-9.-]+\.amazon\.[a-z.]+$'
|
|
831
|
-
|
|
832
|
+
prefix: https://
|
|
833
|
+
suffix: /apps
|
|
834
|
+
doc_section: '#step-2-finding-your-authorization-domain'
|
|
832
835
|
order: 2
|
|
836
|
+
subdomain:
|
|
837
|
+
type: string
|
|
838
|
+
title: Proxy BaseUrl Subdomain
|
|
839
|
+
description: The subdomain prefix for the Amazon Selling Partner API endpoint.
|
|
840
|
+
example: sellingpartnerapi
|
|
841
|
+
pattern: '^(sandbox\.)?sellingpartnerapi$'
|
|
842
|
+
prefix: https://
|
|
843
|
+
doc_section: '#step-3-finding-your-proxy-baseurl-subdomain'
|
|
844
|
+
order: 3
|
|
833
845
|
region:
|
|
834
846
|
type: string
|
|
835
847
|
title: Proxy BaseUrl Region
|
|
836
848
|
description: The geographical region associated with the Amazon marketplace.
|
|
837
849
|
example: eu
|
|
838
850
|
pattern: '^[a-z]+$'
|
|
839
|
-
|
|
840
|
-
|
|
851
|
+
suffix: .amazon.com
|
|
852
|
+
doc_section: '#step-4-finding-your-proxy-baseurl-region'
|
|
853
|
+
order: 4
|
|
841
854
|
|
|
842
855
|
amazon-selling-partner-beta:
|
|
843
856
|
display_name: Amazon Selling Partner (Beta)
|
|
@@ -862,13 +875,14 @@ amazon-selling-partner-beta:
|
|
|
862
875
|
base_url: https://sandbox.sellingpartnerapi-${connectionConfig.region}.amazon.com
|
|
863
876
|
headers:
|
|
864
877
|
x-amz-access-token: ${accessToken}
|
|
865
|
-
docs: https://nango.dev/docs/integrations/
|
|
866
|
-
docs_connect: https://nango.dev/docs/integrations/
|
|
878
|
+
docs: https://nango.dev/docs/api-integrations/amazon-selling-partner-beta
|
|
879
|
+
docs_connect: https://nango.dev/docs/api-integrations/amazon-selling-partner-beta/connect
|
|
880
|
+
setup_guide_url: https://nango.dev/docs/api-integrations/amazon-selling-partner-beta/how-to-register-your-own-amazon-selling-partner-beta-api-oauth-app
|
|
867
881
|
connection_config:
|
|
868
882
|
applicationId:
|
|
869
883
|
type: string
|
|
870
884
|
title: Application ID
|
|
871
|
-
description: The unique identifier for your Amazon Selling Partner application
|
|
885
|
+
description: The unique identifier for your Amazon Selling Partner application.
|
|
872
886
|
example: 'amzn1.sellerapps.app.0bf296b5-36a6-4942-a13e-EXAMPLEfcd28'
|
|
873
887
|
pattern: '^[a-zA-Z0-9.-]+$'
|
|
874
888
|
doc_section: '#step-1-finding-your-app-id'
|
|
@@ -876,10 +890,12 @@ amazon-selling-partner-beta:
|
|
|
876
890
|
domain:
|
|
877
891
|
type: string
|
|
878
892
|
title: Domain
|
|
879
|
-
description: The domain representing the Amazon platform you are integrating with
|
|
893
|
+
description: The domain representing the Amazon platform you are integrating with.
|
|
880
894
|
example: sellercentral.amazon.com
|
|
881
895
|
pattern: '^[a-z0-9.-]+\.amazon\.[a-z.]+$'
|
|
882
|
-
|
|
896
|
+
prefix: https://
|
|
897
|
+
suffix: /apps
|
|
898
|
+
doc_section: '#step-2-finding-your-authorization-domain'
|
|
883
899
|
order: 2
|
|
884
900
|
region:
|
|
885
901
|
type: string
|
|
@@ -887,6 +903,8 @@ amazon-selling-partner-beta:
|
|
|
887
903
|
description: The geographical region associated with the Amazon marketplace.
|
|
888
904
|
example: eu
|
|
889
905
|
pattern: '^[a-z]+$'
|
|
906
|
+
prefix: https://sandbox.sellingpartnerapi-
|
|
907
|
+
suffix: .amazon.com
|
|
890
908
|
doc_section: '#step-3-finding-your-proxy-baseurl-region'
|
|
891
909
|
order: 3
|
|
892
910
|
|
|
@@ -2222,6 +2240,33 @@ bettercontact:
|
|
|
2222
2240
|
pattern: '^[a-z0-9]+$'
|
|
2223
2241
|
doc_section: '#step-1-generating-your-api-key'
|
|
2224
2242
|
|
|
2243
|
+
bliro:
|
|
2244
|
+
display_name: Bliro
|
|
2245
|
+
categories:
|
|
2246
|
+
- communication
|
|
2247
|
+
auth_mode: OAUTH2_CC
|
|
2248
|
+
body_format: json
|
|
2249
|
+
token_url: https://accounts.bliro.io/oauth/token
|
|
2250
|
+
token_params:
|
|
2251
|
+
grant_type: client_credentials
|
|
2252
|
+
audience: https://api.bliro.io
|
|
2253
|
+
proxy:
|
|
2254
|
+
base_url: https://api.bliro.io
|
|
2255
|
+
docs: https://nango.dev/docs/api-integrations/bliro
|
|
2256
|
+
docs_connect: https://nango.dev/docs/api-integrations/bliro/connect
|
|
2257
|
+
credentials:
|
|
2258
|
+
client_id:
|
|
2259
|
+
type: string
|
|
2260
|
+
title: Client ID
|
|
2261
|
+
description: Your Bliro client application Client ID.
|
|
2262
|
+
doc_section: '#step-1-creating-a-client-application'
|
|
2263
|
+
client_secret:
|
|
2264
|
+
type: string
|
|
2265
|
+
title: Client Secret
|
|
2266
|
+
description: Your Bliro client application Client Secret.
|
|
2267
|
+
secret: true
|
|
2268
|
+
doc_section: '#step-1-creating-a-client-application'
|
|
2269
|
+
|
|
2225
2270
|
bigcommerce:
|
|
2226
2271
|
display_name: BigCommerce
|
|
2227
2272
|
categories:
|
|
@@ -3460,6 +3505,41 @@ clari-copilot:
|
|
|
3460
3505
|
title: API Key
|
|
3461
3506
|
description: The API key for your Clari Copilot account
|
|
3462
3507
|
|
|
3508
|
+
clay:
|
|
3509
|
+
display_name: Clay
|
|
3510
|
+
categories:
|
|
3511
|
+
- crm
|
|
3512
|
+
- marketing
|
|
3513
|
+
auth_mode: API_KEY
|
|
3514
|
+
proxy:
|
|
3515
|
+
base_url: https://api.clay.com
|
|
3516
|
+
headers:
|
|
3517
|
+
authorization: ${apiKey}
|
|
3518
|
+
verification:
|
|
3519
|
+
method: GET
|
|
3520
|
+
endpoints:
|
|
3521
|
+
- /v3/my-workspaces
|
|
3522
|
+
connection_config:
|
|
3523
|
+
workspaceId: ${connectionConfig.workspaceId}
|
|
3524
|
+
docs: https://nango.dev/docs/api-integrations/clay
|
|
3525
|
+
docs_connect: https://nango.dev/docs/api-integrations/clay/connect
|
|
3526
|
+
connection_config:
|
|
3527
|
+
workspaceId:
|
|
3528
|
+
type: string
|
|
3529
|
+
title: Workspace ID
|
|
3530
|
+
description: The ID of your Clay workspace.
|
|
3531
|
+
example: '10608232'
|
|
3532
|
+
pattern: '^\d+$'
|
|
3533
|
+
doc_section: '#step-2-finding-your-workspace-id'
|
|
3534
|
+
credentials:
|
|
3535
|
+
apiKey:
|
|
3536
|
+
type: string
|
|
3537
|
+
title: API Key
|
|
3538
|
+
description: The API key for your Clay account.
|
|
3539
|
+
example: 7de4ba****e439d39****
|
|
3540
|
+
pattern: '^[a-f0-9]+$'
|
|
3541
|
+
doc_section: '#step-1-finding-your-api-key'
|
|
3542
|
+
|
|
3463
3543
|
cleverreach:
|
|
3464
3544
|
display_name: CleverReach
|
|
3465
3545
|
categories:
|
|
@@ -3520,6 +3600,37 @@ clickup:
|
|
|
3520
3600
|
docs: https://nango.dev/docs/api-integrations/clickup
|
|
3521
3601
|
setup_guide_url: https://nango.dev/docs/api-integrations/clickup/how-to-register-your-own-clickup-api-oauth-app
|
|
3522
3602
|
|
|
3603
|
+
clio:
|
|
3604
|
+
display_name: Clio
|
|
3605
|
+
categories:
|
|
3606
|
+
- legal
|
|
3607
|
+
auth_mode: OAUTH2
|
|
3608
|
+
authorization_url: https://${connectionConfig.hostname}/oauth/authorize
|
|
3609
|
+
token_url: https://${connectionConfig.hostname}/oauth/token
|
|
3610
|
+
authorization_params:
|
|
3611
|
+
response_type: code
|
|
3612
|
+
token_params:
|
|
3613
|
+
grant_type: authorization_code
|
|
3614
|
+
refresh_params:
|
|
3615
|
+
grant_type: refresh_token
|
|
3616
|
+
proxy:
|
|
3617
|
+
base_url: https://${connectionConfig.hostname}
|
|
3618
|
+
docs: https://nango.dev/docs/api-integrations/clio
|
|
3619
|
+
docs_connect: https://nango.dev/docs/api-integrations/clio/connect
|
|
3620
|
+
setup_guide_url: https://nango.dev/docs/api-integrations/clio/how-to-register-your-own-clio-api-oauth-app
|
|
3621
|
+
connection_config:
|
|
3622
|
+
hostname:
|
|
3623
|
+
type: string
|
|
3624
|
+
title: Hostname
|
|
3625
|
+
description: The hostname for your Clio region (e.g. app.clio.com for US, eu.app.clio.com for EU, ca.app.clio.com for CA, au.app.clio.com for AU)
|
|
3626
|
+
example: app.clio.com
|
|
3627
|
+
default_value: app.clio.com
|
|
3628
|
+
format: hostname
|
|
3629
|
+
pattern: '^(app\.clio\.com|eu\.app\.clio\.com|ca\.app\.clio\.com|au\.app\.clio\.com)$'
|
|
3630
|
+
prefix: https://
|
|
3631
|
+
order: 1
|
|
3632
|
+
doc_section: '#step-1-finding-your-hostname'
|
|
3633
|
+
|
|
3523
3634
|
cloudbeds:
|
|
3524
3635
|
display_name: Cloudbeds
|
|
3525
3636
|
categories:
|
|
@@ -4044,6 +4155,28 @@ connectwise-rmm:
|
|
|
4044
4155
|
pattern: '^[A-Za-z0-9._~+/=-]{8,}$'
|
|
4045
4156
|
doc_section: '#step-2-create-api-credentials'
|
|
4046
4157
|
|
|
4158
|
+
conta-azul:
|
|
4159
|
+
display_name: Conta Azul
|
|
4160
|
+
categories:
|
|
4161
|
+
- accounting
|
|
4162
|
+
- erp
|
|
4163
|
+
auth_mode: OAUTH2
|
|
4164
|
+
authorization_url: https://auth.contaazul.com/login
|
|
4165
|
+
token_url: https://auth.contaazul.com/oauth2/token
|
|
4166
|
+
token_request_auth_method: basic
|
|
4167
|
+
authorization_params:
|
|
4168
|
+
response_type: code
|
|
4169
|
+
token_params:
|
|
4170
|
+
grant_type: authorization_code
|
|
4171
|
+
refresh_params:
|
|
4172
|
+
grant_type: refresh_token
|
|
4173
|
+
scope_separator: ' '
|
|
4174
|
+
proxy:
|
|
4175
|
+
base_url: https://api-v2.contaazul.com
|
|
4176
|
+
disable_pkce: true
|
|
4177
|
+
docs: https://nango.dev/docs/api-integrations/conta-azul
|
|
4178
|
+
setup_guide_url: https://nango.dev/docs/api-integrations/conta-azul/how-to-register-your-own-conta-azul-api-oauth-app
|
|
4179
|
+
|
|
4047
4180
|
confluence:
|
|
4048
4181
|
display_name: Confluence
|
|
4049
4182
|
categories:
|
|
@@ -6402,6 +6535,33 @@ front:
|
|
|
6402
6535
|
link_path_in_response_body: _pagination.next
|
|
6403
6536
|
docs: https://nango.dev/docs/integrations/all/front
|
|
6404
6537
|
|
|
6538
|
+
front-api-key:
|
|
6539
|
+
display_name: Front (API Key)
|
|
6540
|
+
categories:
|
|
6541
|
+
- support
|
|
6542
|
+
- ticketing
|
|
6543
|
+
auth_mode: API_KEY
|
|
6544
|
+
proxy:
|
|
6545
|
+
base_url: https://api2.frontapp.com
|
|
6546
|
+
headers:
|
|
6547
|
+
authorization: Bearer ${apiKey}
|
|
6548
|
+
retry:
|
|
6549
|
+
after:
|
|
6550
|
+
- 'retry-after'
|
|
6551
|
+
verification:
|
|
6552
|
+
method: GET
|
|
6553
|
+
endpoints:
|
|
6554
|
+
- /me
|
|
6555
|
+
docs: https://nango.dev/docs/api-integrations/front-api-key
|
|
6556
|
+
docs_connect: https://nango.dev/docs/api-integrations/front-api-key/connect
|
|
6557
|
+
credentials:
|
|
6558
|
+
apiKey:
|
|
6559
|
+
type: string
|
|
6560
|
+
title: API Token
|
|
6561
|
+
description: Your Front API token.
|
|
6562
|
+
example: eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.****
|
|
6563
|
+
doc_section: '#step-1-finding-your-api-token'
|
|
6564
|
+
|
|
6405
6565
|
fullenrich:
|
|
6406
6566
|
display_name: FullEnrich
|
|
6407
6567
|
categories:
|
|
@@ -7189,6 +7349,16 @@ google-calendar:
|
|
|
7189
7349
|
docs: https://nango.dev/docs/api-integrations/google-calendar
|
|
7190
7350
|
setup_guide_url: https://nango.dev/docs/api-integrations/google-calendar/how-to-register-your-own-google-calendar-api-oauth-app
|
|
7191
7351
|
|
|
7352
|
+
google-contacts:
|
|
7353
|
+
display_name: Google Contacts
|
|
7354
|
+
categories:
|
|
7355
|
+
- productivity
|
|
7356
|
+
alias: google
|
|
7357
|
+
proxy:
|
|
7358
|
+
base_url: https://people.googleapis.com
|
|
7359
|
+
docs: https://nango.dev/docs/api-integrations/google-contacts
|
|
7360
|
+
setup_guide_url: https://nango.dev/docs/api-integrations/google-contacts/how-to-register-your-own-google-contacts-api-oauth-app
|
|
7361
|
+
|
|
7192
7362
|
google-chat:
|
|
7193
7363
|
display_name: Google Chat
|
|
7194
7364
|
alias: google
|
|
@@ -8097,6 +8267,53 @@ heygen:
|
|
|
8097
8267
|
docs: https://nango.dev/docs/api-integrations/heygen
|
|
8098
8268
|
setup_guide_url: https://nango.dev/docs/api-integrations/heygen/how-to-register-your-own-heygen-oauth-app
|
|
8099
8269
|
|
|
8270
|
+
heymarket:
|
|
8271
|
+
display_name: Heymarket
|
|
8272
|
+
categories:
|
|
8273
|
+
- communication
|
|
8274
|
+
- marketing
|
|
8275
|
+
auth_mode: JWT
|
|
8276
|
+
signature:
|
|
8277
|
+
protocol: HMAC
|
|
8278
|
+
hmac_secret_encoding: utf8
|
|
8279
|
+
token:
|
|
8280
|
+
signing_key: ${credentials.apiSecretId}||${credentials.apiSecretKey}
|
|
8281
|
+
expires_in_ms: 300000
|
|
8282
|
+
header:
|
|
8283
|
+
alg: HS256
|
|
8284
|
+
typ: JWT
|
|
8285
|
+
payload:
|
|
8286
|
+
iss: ${credentials.apiSecretId}
|
|
8287
|
+
proxy:
|
|
8288
|
+
base_url: https://api.heymarket.com
|
|
8289
|
+
headers:
|
|
8290
|
+
accept: application/json
|
|
8291
|
+
authorization: Bearer ${accessToken}
|
|
8292
|
+
verification:
|
|
8293
|
+
method: GET
|
|
8294
|
+
headers:
|
|
8295
|
+
accept: application/json
|
|
8296
|
+
endpoints:
|
|
8297
|
+
- /v1/team
|
|
8298
|
+
docs: https://nango.dev/docs/api-integrations/heymarket
|
|
8299
|
+
docs_connect: https://nango.dev/docs/api-integrations/heymarket/connect
|
|
8300
|
+
credentials:
|
|
8301
|
+
apiSecretId:
|
|
8302
|
+
type: string
|
|
8303
|
+
title: API Secret ID
|
|
8304
|
+
description: Your Heymarket API Secret ID.
|
|
8305
|
+
example: a0ee0000-0000-4000-8000-00000000abcd
|
|
8306
|
+
format: uuid
|
|
8307
|
+
doc_section: '#step-1-finding-your-api-secret-id-and-secret-key'
|
|
8308
|
+
apiSecretKey:
|
|
8309
|
+
type: string
|
|
8310
|
+
title: API Secret Key
|
|
8311
|
+
description: Your Heymarket API Secret Key.
|
|
8312
|
+
secret: true
|
|
8313
|
+
example: Aa0***Cc2***Ee4***Gg6***Ii8***Kk0
|
|
8314
|
+
pattern: ^[A-Za-z0-9]+$
|
|
8315
|
+
doc_section: '#step-1-finding-your-api-secret-id-and-secret-key'
|
|
8316
|
+
|
|
8100
8317
|
highlevel:
|
|
8101
8318
|
display_name: HighLevel
|
|
8102
8319
|
categories:
|
|
@@ -9444,6 +9661,37 @@ lever-basic-sandbox:
|
|
|
9444
9661
|
default_value: ''
|
|
9445
9662
|
hidden: true
|
|
9446
9663
|
|
|
9664
|
+
lightspeed-retail:
|
|
9665
|
+
display_name: Lightspeed Retail (X-Series)
|
|
9666
|
+
categories:
|
|
9667
|
+
- e-commerce
|
|
9668
|
+
auth_mode: OAUTH2
|
|
9669
|
+
authorization_url: https://secure.retail.lightspeed.app/connect
|
|
9670
|
+
token_url: https://${connectionConfig.domain_prefix}.retail.lightspeed.app/api/1.0/token
|
|
9671
|
+
scope_separator: ' '
|
|
9672
|
+
authorization_params:
|
|
9673
|
+
response_type: code
|
|
9674
|
+
token_params:
|
|
9675
|
+
grant_type: authorization_code
|
|
9676
|
+
refresh_params:
|
|
9677
|
+
grant_type: refresh_token
|
|
9678
|
+
redirect_uri_metadata:
|
|
9679
|
+
- domain_prefix
|
|
9680
|
+
disable_pkce: true
|
|
9681
|
+
proxy:
|
|
9682
|
+
base_url: https://${connectionConfig.domain_prefix}.retail.lightspeed.app
|
|
9683
|
+
retry:
|
|
9684
|
+
at:
|
|
9685
|
+
- 'x-ratelimit-reset'
|
|
9686
|
+
docs: https://nango.dev/docs/api-integrations/lightspeed-retail
|
|
9687
|
+
setup_guide_url: https://nango.dev/docs/api-integrations/lightspeed-retail/how-to-register-your-own-lightspeed-retail-api-oauth-app
|
|
9688
|
+
connection_config:
|
|
9689
|
+
domain_prefix:
|
|
9690
|
+
type: string
|
|
9691
|
+
title: ''
|
|
9692
|
+
description: ''
|
|
9693
|
+
automated: true
|
|
9694
|
+
|
|
9447
9695
|
linear:
|
|
9448
9696
|
display_name: Linear
|
|
9449
9697
|
categories:
|
|
@@ -10206,6 +10454,14 @@ microsoft-planner:
|
|
|
10206
10454
|
docs: https://nango.dev/docs/api-integrations/microsoft-planner
|
|
10207
10455
|
setup_guide_url: https://nango.dev/docs/api-integrations/microsoft-planner/how-to-register-your-own-microsoft-planner-api-oauth-app
|
|
10208
10456
|
|
|
10457
|
+
microsoft-powerpoint:
|
|
10458
|
+
display_name: Microsoft PowerPoint
|
|
10459
|
+
categories:
|
|
10460
|
+
- productivity
|
|
10461
|
+
alias: microsoft
|
|
10462
|
+
docs: https://nango.dev/docs/api-integrations/microsoft-powerpoint
|
|
10463
|
+
setup_guide_url: https://nango.dev/docs/api-integrations/microsoft-powerpoint/how-to-register-your-own-microsoft-powerpoint-api-oauth-app
|
|
10464
|
+
|
|
10209
10465
|
microsoft-teams:
|
|
10210
10466
|
display_name: Microsoft Teams
|
|
10211
10467
|
categories:
|
|
@@ -10218,6 +10474,14 @@ microsoft-teams:
|
|
|
10218
10474
|
docs: https://nango.dev/docs/api-integrations/microsoft-teams
|
|
10219
10475
|
setup_guide_url: https://nango.dev/docs/api-integrations/microsoft-teams/how-to-register-your-own-microsoft-teams-api-oauth-app
|
|
10220
10476
|
|
|
10477
|
+
microsoft-word:
|
|
10478
|
+
display_name: Microsoft Word
|
|
10479
|
+
categories:
|
|
10480
|
+
- productivity
|
|
10481
|
+
alias: microsoft
|
|
10482
|
+
docs: https://nango.dev/docs/api-integrations/microsoft-word
|
|
10483
|
+
setup_guide_url: https://nango.dev/docs/api-integrations/microsoft-word/how-to-register-your-own-microsoft-word-api-oauth-app
|
|
10484
|
+
|
|
10221
10485
|
microsoft-tenant-specific:
|
|
10222
10486
|
display_name: Microsoft (Tenant)
|
|
10223
10487
|
categories:
|
|
@@ -12625,6 +12889,44 @@ plain:
|
|
|
12625
12889
|
description: The API key for your Plain account
|
|
12626
12890
|
doc_section: '#step-1-generating-your-api-key'
|
|
12627
12891
|
|
|
12892
|
+
pleo:
|
|
12893
|
+
display_name: Pleo
|
|
12894
|
+
categories:
|
|
12895
|
+
- payment
|
|
12896
|
+
- invoicing
|
|
12897
|
+
auth_mode: OAUTH2
|
|
12898
|
+
authorization_url: https://${connectionConfig.subdomain}.pleo.io/oauth/authorize
|
|
12899
|
+
token_url: https://${connectionConfig.subdomain}.pleo.io/oauth/token
|
|
12900
|
+
token_request_auth_method: basic
|
|
12901
|
+
authorization_params:
|
|
12902
|
+
response_type: code
|
|
12903
|
+
token_params:
|
|
12904
|
+
grant_type: authorization_code
|
|
12905
|
+
refresh_params:
|
|
12906
|
+
grant_type: refresh_token
|
|
12907
|
+
proxy:
|
|
12908
|
+
base_url: https://${connectionConfig.apiSubdomain}.pleo.io
|
|
12909
|
+
docs: https://nango.dev/docs/api-integrations/pleo
|
|
12910
|
+
docs_connect: https://nango.dev/docs/api-integrations/pleo/connect
|
|
12911
|
+
setup_guide_url: https://nango.dev/docs/api-integrations/pleo/how-to-register-your-own-pleo-api-oauth-app
|
|
12912
|
+
connection_config:
|
|
12913
|
+
subdomain:
|
|
12914
|
+
type: string
|
|
12915
|
+
title: OAuth Subdomain
|
|
12916
|
+
description: The auth subdomain of your Pleo environment.
|
|
12917
|
+
example: auth
|
|
12918
|
+
pattern: '^auth(\.staging)?$'
|
|
12919
|
+
suffix: .pleo.io
|
|
12920
|
+
prefix: https://
|
|
12921
|
+
apiSubdomain:
|
|
12922
|
+
type: string
|
|
12923
|
+
title: API Subdomain
|
|
12924
|
+
description: The API subdomain of your Pleo environment.
|
|
12925
|
+
example: external
|
|
12926
|
+
pattern: '^external(\.staging)?$'
|
|
12927
|
+
suffix: .pleo.io
|
|
12928
|
+
prefix: https://
|
|
12929
|
+
|
|
12628
12930
|
podium:
|
|
12629
12931
|
display_name: Podium
|
|
12630
12932
|
categories:
|
|
@@ -13480,6 +13782,31 @@ replicate:
|
|
|
13480
13782
|
title: API Key
|
|
13481
13783
|
description: The API key for your Replicate account
|
|
13482
13784
|
|
|
13785
|
+
reply-io:
|
|
13786
|
+
display_name: Reply.io
|
|
13787
|
+
categories:
|
|
13788
|
+
- marketing
|
|
13789
|
+
- communication
|
|
13790
|
+
auth_mode: API_KEY
|
|
13791
|
+
proxy:
|
|
13792
|
+
base_url: https://api.reply.io
|
|
13793
|
+
headers:
|
|
13794
|
+
x-api-key: ${apiKey}
|
|
13795
|
+
verification:
|
|
13796
|
+
method: GET
|
|
13797
|
+
endpoints:
|
|
13798
|
+
- /v1/campaigns
|
|
13799
|
+
docs: https://nango.dev/docs/api-integrations/reply-io
|
|
13800
|
+
docs_connect: https://nango.dev/docs/api-integrations/reply-io/connect
|
|
13801
|
+
credentials:
|
|
13802
|
+
apiKey:
|
|
13803
|
+
type: string
|
|
13804
|
+
title: API Key
|
|
13805
|
+
description: The API key for your Reply.io account.
|
|
13806
|
+
example: AKp2Bbuy****************
|
|
13807
|
+
pattern: '^[A-Za-z0-9_-]+$'
|
|
13808
|
+
doc_section: '#step-1-finding-your-api-key'
|
|
13809
|
+
|
|
13483
13810
|
researchdesk:
|
|
13484
13811
|
display_name: ResearchDesk
|
|
13485
13812
|
categories:
|
|
@@ -14000,6 +14327,35 @@ salesforce:
|
|
|
14000
14327
|
optional: true
|
|
14001
14328
|
doc_section: '#step-1-finding-your-hostname'
|
|
14002
14329
|
|
|
14330
|
+
salesforce-cc:
|
|
14331
|
+
display_name: Salesforce (Client Credentials)
|
|
14332
|
+
categories:
|
|
14333
|
+
- crm
|
|
14334
|
+
auth_mode: OAUTH2_CC
|
|
14335
|
+
token_url: https://${connectionConfig.hostname}/services/oauth2/token
|
|
14336
|
+
token_params:
|
|
14337
|
+
grant_type: client_credentials
|
|
14338
|
+
token_response_metadata:
|
|
14339
|
+
- instance_url
|
|
14340
|
+
proxy:
|
|
14341
|
+
base_url: ${connectionConfig.instance_url}
|
|
14342
|
+
docs: https://nango.dev/docs/api-integrations/salesforce-cc
|
|
14343
|
+
docs_connect: https://nango.dev/docs/api-integrations/salesforce-cc/connect
|
|
14344
|
+
token_expires_in_ms: 0
|
|
14345
|
+
connection_config:
|
|
14346
|
+
instance_url:
|
|
14347
|
+
type: string
|
|
14348
|
+
title: ''
|
|
14349
|
+
description: ''
|
|
14350
|
+
automated: true
|
|
14351
|
+
hostname:
|
|
14352
|
+
type: string
|
|
14353
|
+
title: Hostname
|
|
14354
|
+
description: The hostname to your Salesforce instance
|
|
14355
|
+
format: hostname
|
|
14356
|
+
example: acme.my.salesforce.com
|
|
14357
|
+
prefix: https://
|
|
14358
|
+
|
|
14003
14359
|
salesforce-jwt:
|
|
14004
14360
|
display_name: Salesforce (JWT)
|
|
14005
14361
|
categories:
|
|
@@ -15228,6 +15584,49 @@ shopify-scim:
|
|
|
15228
15584
|
description: The SCIM API token generated from your Shopify organization settings.
|
|
15229
15585
|
doc_section: '#step-1-generating-your-scim-api-token'
|
|
15230
15586
|
|
|
15587
|
+
shopworks:
|
|
15588
|
+
display_name: ShopWorks
|
|
15589
|
+
categories:
|
|
15590
|
+
- other
|
|
15591
|
+
auth_mode: TWO_STEP
|
|
15592
|
+
body_format: json
|
|
15593
|
+
token_url: https://${connectionConfig.hostname}/signin
|
|
15594
|
+
token_params:
|
|
15595
|
+
username: ${credentials.username}
|
|
15596
|
+
password: ${credentials.password}
|
|
15597
|
+
token_headers:
|
|
15598
|
+
content-type: application/json
|
|
15599
|
+
token_response:
|
|
15600
|
+
token: id_token
|
|
15601
|
+
token_expires_in_ms: 3600000
|
|
15602
|
+
proxy:
|
|
15603
|
+
base_url: https://${connectionConfig.hostname}
|
|
15604
|
+
headers:
|
|
15605
|
+
authorization: ${accessToken}
|
|
15606
|
+
docs: https://nango.dev/docs/api-integrations/shopworks
|
|
15607
|
+
docs_connect: https://nango.dev/docs/api-integrations/shopworks/connect
|
|
15608
|
+
connection_config:
|
|
15609
|
+
hostname:
|
|
15610
|
+
type: string
|
|
15611
|
+
title: Hostname
|
|
15612
|
+
prefix: https://
|
|
15613
|
+
suffix: /signin
|
|
15614
|
+
description: The hostname of the API you want to connect to.
|
|
15615
|
+
example: manageordersapi.com/onsite
|
|
15616
|
+
doc_section: '#step-1-find-your-hostname'
|
|
15617
|
+
credentials:
|
|
15618
|
+
username:
|
|
15619
|
+
type: string
|
|
15620
|
+
title: Username
|
|
15621
|
+
description: The username for your ShopWorks account.
|
|
15622
|
+
doc_section: '#step-2-find-your-credentials'
|
|
15623
|
+
password:
|
|
15624
|
+
type: string
|
|
15625
|
+
title: Password
|
|
15626
|
+
secret: true
|
|
15627
|
+
description: The password for your ShopWorks account.
|
|
15628
|
+
doc_section: '#step-2-find-your-credentials'
|
|
15629
|
+
|
|
15231
15630
|
slab:
|
|
15232
15631
|
display_name: Slab
|
|
15233
15632
|
categories:
|
|
@@ -15302,6 +15701,30 @@ slack:
|
|
|
15302
15701
|
docs: https://nango.dev/docs/api-integrations/slack
|
|
15303
15702
|
setup_guide_url: https://nango.dev/docs/api-integrations/slack/how-to-register-your-own-slack-api-oauth-app
|
|
15304
15703
|
|
|
15704
|
+
slack-mcp:
|
|
15705
|
+
display_name: Slack (MCP)
|
|
15706
|
+
categories:
|
|
15707
|
+
- popular
|
|
15708
|
+
- productivity
|
|
15709
|
+
- communication
|
|
15710
|
+
- mcp
|
|
15711
|
+
auth_mode: MCP_OAUTH2
|
|
15712
|
+
client_registration: static
|
|
15713
|
+
authorization_url: https://slack.com/oauth/v2_user/authorize
|
|
15714
|
+
token_url: https://slack.com/api/oauth.v2.user.access
|
|
15715
|
+
scope_separator: ','
|
|
15716
|
+
alternate_access_token_response_path: authed_user.access_token
|
|
15717
|
+
authorization_params:
|
|
15718
|
+
response_type: code
|
|
15719
|
+
token_params:
|
|
15720
|
+
grant_type: authorization_code
|
|
15721
|
+
proxy:
|
|
15722
|
+
base_url: https://mcp.slack.com
|
|
15723
|
+
headers:
|
|
15724
|
+
accept: application/json,text/event-stream
|
|
15725
|
+
docs: https://nango.dev/docs/api-integrations/slack-mcp
|
|
15726
|
+
setup_guide_url: https://nango.dev/docs/api-integrations/slack-mcp/how-to-register-your-own-slack-mcp-oauth-app
|
|
15727
|
+
|
|
15305
15728
|
smartlead-ai:
|
|
15306
15729
|
display_name: Smartlead.ai
|
|
15307
15730
|
categories:
|
|
@@ -16647,6 +17070,35 @@ todoist:
|
|
|
16647
17070
|
base_url: https://api.todoist.com
|
|
16648
17071
|
docs: https://nango.dev/docs/integrations/all/todoist
|
|
16649
17072
|
|
|
17073
|
+
toggl:
|
|
17074
|
+
display_name: Toggl Track
|
|
17075
|
+
categories:
|
|
17076
|
+
- productivity
|
|
17077
|
+
auth_mode: BASIC
|
|
17078
|
+
proxy:
|
|
17079
|
+
base_url: https://api.track.toggl.com
|
|
17080
|
+
verification:
|
|
17081
|
+
method: GET
|
|
17082
|
+
endpoints:
|
|
17083
|
+
- /api/v9/me
|
|
17084
|
+
retry:
|
|
17085
|
+
after:
|
|
17086
|
+
- 'x-toggl-quota-resets-in'
|
|
17087
|
+
docs: https://nango.dev/docs/api-integrations/toggl
|
|
17088
|
+
docs_connect: https://nango.dev/docs/api-integrations/toggl/connect
|
|
17089
|
+
credentials:
|
|
17090
|
+
username:
|
|
17091
|
+
type: string
|
|
17092
|
+
title: Email or API token
|
|
17093
|
+
description: Your Toggl Track account email, or your API token when using token-based Basic Auth.
|
|
17094
|
+
doc_section: '#step-1-choose-emailpassword-or-api-token'
|
|
17095
|
+
password:
|
|
17096
|
+
type: string
|
|
17097
|
+
title: Password or api_token
|
|
17098
|
+
description: Your Toggl Track account password, or the literal text api_token when authenticating with an API token.
|
|
17099
|
+
secret: true
|
|
17100
|
+
doc_section: '#step-1-choose-emailpassword-or-api-token'
|
|
17101
|
+
|
|
16650
17102
|
torii:
|
|
16651
17103
|
display_name: Torii
|
|
16652
17104
|
categories:
|
|
@@ -17284,6 +17736,30 @@ vercel:
|
|
|
17284
17736
|
example: 'vcp_6ppUxFRd****r1sc53a'
|
|
17285
17737
|
doc_section: '#step-1-finding-your-token'
|
|
17286
17738
|
|
|
17739
|
+
vercel-mcp:
|
|
17740
|
+
display_name: Vercel (MCP)
|
|
17741
|
+
categories:
|
|
17742
|
+
- dev-tools
|
|
17743
|
+
- mcp
|
|
17744
|
+
auth_mode: MCP_OAUTH2
|
|
17745
|
+
client_registration: static
|
|
17746
|
+
authorization_url: https://vercel.com/oauth/authorize
|
|
17747
|
+
token_url: https://vercel.com/api/login/oauth/token
|
|
17748
|
+
authorization_params:
|
|
17749
|
+
response_type: code
|
|
17750
|
+
token_params:
|
|
17751
|
+
grant_type: authorization_code
|
|
17752
|
+
refresh_params:
|
|
17753
|
+
grant_type: refresh_token
|
|
17754
|
+
default_scopes:
|
|
17755
|
+
- offline_access
|
|
17756
|
+
proxy:
|
|
17757
|
+
headers:
|
|
17758
|
+
accept: application/json,text/event-stream
|
|
17759
|
+
base_url: https://mcp.vercel.com
|
|
17760
|
+
docs: https://nango.dev/docs/api-integrations/vercel-mcp
|
|
17761
|
+
setup_guide_url: https://nango.dev/docs/api-integrations/vercel-mcp/how-to-register-your-own-vercel-mcp-oauth-app
|
|
17762
|
+
|
|
17287
17763
|
vimeo:
|
|
17288
17764
|
display_name: Vimeo (OAuth)
|
|
17289
17765
|
categories:
|