@nangohq/providers 0.69.47 → 0.69.48
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 +506 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nangohq/providers",
|
|
3
|
-
"version": "0.69.
|
|
3
|
+
"version": "0.69.48",
|
|
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.48",
|
|
20
20
|
"vitest": "3.2.4"
|
|
21
21
|
},
|
|
22
22
|
"files": [
|
package/providers.yaml
CHANGED
|
@@ -402,24 +402,32 @@ adp:
|
|
|
402
402
|
adp-lyric:
|
|
403
403
|
alias: adp
|
|
404
404
|
display_name: ADP Lyric
|
|
405
|
+
categories:
|
|
406
|
+
- hr
|
|
405
407
|
docs: https://nango.dev/docs/integrations/all/adp-lyric
|
|
406
408
|
docs_connect: https://nango.dev/docs/integrations/all/adp-lyric/connect
|
|
407
409
|
|
|
408
410
|
adp-run:
|
|
409
411
|
alias: adp
|
|
410
412
|
display_name: RUN Powered by ADP
|
|
413
|
+
categories:
|
|
414
|
+
- hr
|
|
411
415
|
docs: https://nango.dev/docs/integrations/all/adp-run
|
|
412
416
|
docs_connect: https://nango.dev/docs/integrations/all/adp-run/connect
|
|
413
417
|
|
|
414
418
|
adp-workforce-now:
|
|
415
419
|
alias: adp
|
|
416
420
|
display_name: ADP Workforce Now
|
|
421
|
+
categories:
|
|
422
|
+
- hr
|
|
417
423
|
docs: https://nango.dev/docs/integrations/all/adp-workforce-now
|
|
418
424
|
docs_connect: https://nango.dev/docs/integrations/all/adp-workforce-now/connect
|
|
419
425
|
|
|
420
426
|
adp-workforce-now-next-gen:
|
|
421
427
|
alias: adp
|
|
422
428
|
display_name: ADP Workforce Now Next Generation
|
|
429
|
+
categories:
|
|
430
|
+
- hr
|
|
423
431
|
docs: https://nango.dev/docs/integrations/all/adp-workforce-now-next-gen
|
|
424
432
|
docs_connect: https://nango.dev/docs/integrations/all/adp-workforce-now-next-gen/connect
|
|
425
433
|
|
|
@@ -588,6 +596,8 @@ aircall:
|
|
|
588
596
|
aircall-basic:
|
|
589
597
|
alias: aircall
|
|
590
598
|
display_name: Aircall (Basic Auth)
|
|
599
|
+
categories:
|
|
600
|
+
- support
|
|
591
601
|
auth_mode: BASIC
|
|
592
602
|
proxy:
|
|
593
603
|
base_url: https://api.aircall.io
|
|
@@ -1170,6 +1180,8 @@ apollo-oauth:
|
|
|
1170
1180
|
|
|
1171
1181
|
apple-app-store:
|
|
1172
1182
|
display_name: Apple App Store
|
|
1183
|
+
categories:
|
|
1184
|
+
- e-commerce
|
|
1173
1185
|
auth_mode: APP_STORE
|
|
1174
1186
|
token_url: https://api.appstoreconnect.apple.com/v1/apps
|
|
1175
1187
|
authorization_params:
|
|
@@ -1178,6 +1190,64 @@ apple-app-store:
|
|
|
1178
1190
|
base_url: https://api.appstoreconnect.apple.com
|
|
1179
1191
|
docs: https://nango.dev/docs/integrations/all/apple-app-store
|
|
1180
1192
|
|
|
1193
|
+
apple-business-manager:
|
|
1194
|
+
display_name: Apple Business Manager
|
|
1195
|
+
categories:
|
|
1196
|
+
- productivity
|
|
1197
|
+
auth_mode: TWO_STEP
|
|
1198
|
+
body_format: form
|
|
1199
|
+
token_url: https://account.apple.com/auth/oauth2/v2/token
|
|
1200
|
+
token_params:
|
|
1201
|
+
grant_type: client_credentials
|
|
1202
|
+
client_id: ${credentials.clientId}
|
|
1203
|
+
client_assertion_type: urn:ietf:params:oauth:client-assertion-type:jwt-bearer
|
|
1204
|
+
client_assertion: ${credentials.assertion}
|
|
1205
|
+
scope: business.api
|
|
1206
|
+
token_headers:
|
|
1207
|
+
content-type: application/x-www-form-urlencoded
|
|
1208
|
+
assertion:
|
|
1209
|
+
type: jwt
|
|
1210
|
+
key: ${assertionOption.privateKey}
|
|
1211
|
+
lifetimeInSeconds: 15552000
|
|
1212
|
+
header:
|
|
1213
|
+
alg: ES256
|
|
1214
|
+
kid: ${credentials.keyId}
|
|
1215
|
+
payload:
|
|
1216
|
+
iss: ${credentials.clientId}
|
|
1217
|
+
sub: ${credentials.clientId}
|
|
1218
|
+
aud: https://account.apple.com/auth/oauth2/v2/token
|
|
1219
|
+
jti: ${random}
|
|
1220
|
+
proxy:
|
|
1221
|
+
base_url: https://api-business.apple.com
|
|
1222
|
+
token_response:
|
|
1223
|
+
token: access_token
|
|
1224
|
+
token_expiration: expires_in
|
|
1225
|
+
token_expiration_strategy: expireIn
|
|
1226
|
+
docs: https://nango.dev/docs/api-integrations/apple-business-manager
|
|
1227
|
+
docs_connect: https://nango.dev/docs/api-integrations/apple-business-manager/connect
|
|
1228
|
+
credentials:
|
|
1229
|
+
clientId:
|
|
1230
|
+
type: string
|
|
1231
|
+
title: Client ID
|
|
1232
|
+
description: The Client ID generated when you create an API account.
|
|
1233
|
+
doc_section: '#step-2-note-your-credentials'
|
|
1234
|
+
keyId:
|
|
1235
|
+
type: string
|
|
1236
|
+
title: Key ID
|
|
1237
|
+
description: The Key ID generated when you create an API account.
|
|
1238
|
+
doc_section: '#step-2-note-your-credentials'
|
|
1239
|
+
assertion:
|
|
1240
|
+
type: string
|
|
1241
|
+
title: ''
|
|
1242
|
+
description: ''
|
|
1243
|
+
automated: true
|
|
1244
|
+
assertion_option:
|
|
1245
|
+
privateKey:
|
|
1246
|
+
type: string
|
|
1247
|
+
title: Private Key
|
|
1248
|
+
description: The EC private key (PEM format) used to sign the client assertion JWT.
|
|
1249
|
+
doc_section: '#step-1-create-an-api-account-and-generate-a-private-key'
|
|
1250
|
+
|
|
1181
1251
|
appstle-subscriptions:
|
|
1182
1252
|
display_name: Appstle Subscriptions
|
|
1183
1253
|
categories:
|
|
@@ -2569,6 +2639,8 @@ braintree:
|
|
|
2569
2639
|
|
|
2570
2640
|
braintree-sandbox:
|
|
2571
2641
|
display_name: Braintree (Sandbox)
|
|
2642
|
+
categories:
|
|
2643
|
+
- payment
|
|
2572
2644
|
auth_mode: OAUTH2
|
|
2573
2645
|
authorization_url: https://api.sandbox.braintreegateway.com/oauth/connect
|
|
2574
2646
|
token_url: https://api.sandbox.braintreegateway.com/oauth/access_tokens
|
|
@@ -2690,6 +2762,8 @@ brex:
|
|
|
2690
2762
|
|
|
2691
2763
|
brex-api-key:
|
|
2692
2764
|
display_name: Brex (API Key)
|
|
2765
|
+
categories:
|
|
2766
|
+
- banking
|
|
2693
2767
|
auth_mode: API_KEY
|
|
2694
2768
|
proxy:
|
|
2695
2769
|
headers:
|
|
@@ -2708,6 +2782,8 @@ brex-api-key:
|
|
|
2708
2782
|
|
|
2709
2783
|
brex-staging:
|
|
2710
2784
|
display_name: Brex (Staging OAuth)
|
|
2785
|
+
categories:
|
|
2786
|
+
- banking
|
|
2711
2787
|
auth_mode: OAUTH2
|
|
2712
2788
|
authorization_url: https://accounts-api.staging.brexapps.com/oauth2/default/v1/authorize
|
|
2713
2789
|
token_url: https://accounts-api.staging.brexapps.com/oauth2/default/v1/token
|
|
@@ -3419,6 +3495,8 @@ checkout-com-sandbox:
|
|
|
3419
3495
|
|
|
3420
3496
|
chorus:
|
|
3421
3497
|
display_name: Chorus
|
|
3498
|
+
categories:
|
|
3499
|
+
- analytics
|
|
3422
3500
|
auth_mode: API_KEY
|
|
3423
3501
|
proxy:
|
|
3424
3502
|
base_url: https://chorus.ai
|
|
@@ -3439,6 +3517,40 @@ chorus:
|
|
|
3439
3517
|
description: The API key for your Chorus account
|
|
3440
3518
|
doc_section: '#step-1-generating-your-chorus-api-key'
|
|
3441
3519
|
|
|
3520
|
+
cin7-core:
|
|
3521
|
+
display_name: Cin7 Core
|
|
3522
|
+
categories:
|
|
3523
|
+
- e-commerce
|
|
3524
|
+
auth_mode: API_KEY
|
|
3525
|
+
proxy:
|
|
3526
|
+
base_url: https://inventory.dearsystems.com/externalapi
|
|
3527
|
+
headers:
|
|
3528
|
+
api-auth-accountid: ${connectionConfig.accountId}
|
|
3529
|
+
api-auth-applicationkey: ${apiKey}
|
|
3530
|
+
verification:
|
|
3531
|
+
method: GET
|
|
3532
|
+
endpoints:
|
|
3533
|
+
- /v2/me
|
|
3534
|
+
docs: https://nango.dev/docs/api-integrations/cin7-core
|
|
3535
|
+
docs_connect: https://nango.dev/docs/api-integrations/cin7-core/connect
|
|
3536
|
+
connection_config:
|
|
3537
|
+
accountId:
|
|
3538
|
+
type: string
|
|
3539
|
+
title: Account ID
|
|
3540
|
+
description: Your Cin7 Core Account ID.
|
|
3541
|
+
doc_section: '#step-1-find-your-account-id-and-api-application-key'
|
|
3542
|
+
example: a1b2c3d4-****-****-****-ef1234567890
|
|
3543
|
+
format: uuid
|
|
3544
|
+
credentials:
|
|
3545
|
+
apiKey:
|
|
3546
|
+
type: string
|
|
3547
|
+
title: API Application Key
|
|
3548
|
+
description: Your Cin7 Core API Application Key.
|
|
3549
|
+
secret: true
|
|
3550
|
+
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$'
|
|
3551
|
+
doc_section: '#step-1-find-your-account-id-and-api-application-key'
|
|
3552
|
+
example: 6d6f4999-****-****-****-4e4ed450df0f
|
|
3553
|
+
|
|
3442
3554
|
circle-so:
|
|
3443
3555
|
display_name: Circle.so
|
|
3444
3556
|
categories:
|
|
@@ -3745,6 +3857,8 @@ cloudentity:
|
|
|
3745
3857
|
|
|
3746
3858
|
cloudflare:
|
|
3747
3859
|
display_name: Cloudflare
|
|
3860
|
+
categories:
|
|
3861
|
+
- dev-tools
|
|
3748
3862
|
auth_mode: API_KEY
|
|
3749
3863
|
proxy:
|
|
3750
3864
|
base_url: https://api.cloudflare.com/client
|
|
@@ -3763,6 +3877,42 @@ cloudflare:
|
|
|
3763
3877
|
example: lGlHlGZN3iPR9z7CupZlMB3nzMpTCdfxeUPNj_pf
|
|
3764
3878
|
pattern: '^[a-zA-Z0-9_-]+$'
|
|
3765
3879
|
|
|
3880
|
+
clover:
|
|
3881
|
+
display_name: Clover
|
|
3882
|
+
categories:
|
|
3883
|
+
- e-commerce
|
|
3884
|
+
auth_mode: OAUTH2
|
|
3885
|
+
body_format: json
|
|
3886
|
+
authorization_url: https://${connectionConfig.authorizeHost}/oauth/v2/authorize
|
|
3887
|
+
token_url: https://${connectionConfig.apiHost}/oauth/v2/token
|
|
3888
|
+
refresh_url: https://${connectionConfig.apiHost}/oauth/v2/refresh
|
|
3889
|
+
disable_pkce: true
|
|
3890
|
+
authorization_params:
|
|
3891
|
+
response_type: code
|
|
3892
|
+
refresh_params:
|
|
3893
|
+
grant_type: refresh_token
|
|
3894
|
+
redirect_uri_metadata:
|
|
3895
|
+
- merchant_id
|
|
3896
|
+
- employee_id
|
|
3897
|
+
proxy:
|
|
3898
|
+
base_url: https://${connectionConfig.apiHost}
|
|
3899
|
+
docs: https://nango.dev/docs/api-integrations/clover
|
|
3900
|
+
setup_guide_url: https://nango.dev/docs/api-integrations/clover/how-to-register-your-own-clover-api-oauth-app
|
|
3901
|
+
docs_connect: https://nango.dev/docs/api-integrations/clover/connect
|
|
3902
|
+
connection_config:
|
|
3903
|
+
authorizeHost:
|
|
3904
|
+
type: string
|
|
3905
|
+
title: Authorization Host
|
|
3906
|
+
description: The Clover authorization hostname for your region.
|
|
3907
|
+
example: www.clover.com
|
|
3908
|
+
pattern: '^(www\.clover\.com|www\.eu\.clover\.com|www\.la\.clover\.com|sandbox\.dev\.clover\.com)$'
|
|
3909
|
+
apiHost:
|
|
3910
|
+
type: string
|
|
3911
|
+
title: API Host
|
|
3912
|
+
description: The Clover API hostname for your region.
|
|
3913
|
+
example: api.clover.com
|
|
3914
|
+
pattern: '^(api\.clover\.com|api\.eu\.clover\.com|api\.la\.clover\.com|apisandbox\.dev\.clover\.com)$'
|
|
3915
|
+
|
|
3766
3916
|
close:
|
|
3767
3917
|
display_name: Close
|
|
3768
3918
|
categories:
|
|
@@ -4061,20 +4211,27 @@ connectwise-psa:
|
|
|
4061
4211
|
auth_mode: BASIC
|
|
4062
4212
|
webhook_routing_script: connectwisePsaWebhookRouting
|
|
4063
4213
|
proxy:
|
|
4064
|
-
base_url: https://${connectionConfig.subdomain}.myconnectwise.net/v4_6_release/apis/3.0
|
|
4214
|
+
base_url: https://${connectionConfig.hostname}/v4_6_release/apis/3.0 || https://${connectionConfig.subdomain}.myconnectwise.net/v4_6_release/apis/3.0
|
|
4065
4215
|
headers:
|
|
4066
4216
|
accept: application/vnd.connectwise.com+json; version=${connectionConfig.apiVersion}
|
|
4067
4217
|
clientid: ${connectionConfig.clientId}
|
|
4068
|
-
docs: https://nango.dev/docs/integrations/
|
|
4218
|
+
docs: https://nango.dev/docs/api-integrations/connectwise-psa
|
|
4219
|
+
docs_connect: https://nango.dev/docs/api-integrations/connectwise-psa/connect
|
|
4069
4220
|
connection_config:
|
|
4070
|
-
|
|
4221
|
+
hostname:
|
|
4071
4222
|
type: string
|
|
4072
|
-
title:
|
|
4073
|
-
description: The
|
|
4074
|
-
|
|
4075
|
-
|
|
4076
|
-
suffix: .myconnectwise.net
|
|
4223
|
+
title: Hostname
|
|
4224
|
+
description: The full ConnectWise PSA hostname.
|
|
4225
|
+
example: api-na.myconnectwise.net
|
|
4226
|
+
format: hostname
|
|
4077
4227
|
prefix: https://
|
|
4228
|
+
suffix: /v4_6_release/apis/3.0
|
|
4229
|
+
subdomain:
|
|
4230
|
+
type: string
|
|
4231
|
+
title: ''
|
|
4232
|
+
description: ''
|
|
4233
|
+
default_value: ''
|
|
4234
|
+
hidden: true # deprecating this in favor of hostname
|
|
4078
4235
|
apiVersion:
|
|
4079
4236
|
type: string
|
|
4080
4237
|
title: Api version
|
|
@@ -4339,6 +4496,8 @@ coros:
|
|
|
4339
4496
|
|
|
4340
4497
|
coros-sandbox:
|
|
4341
4498
|
display_name: Coros (Sandbox)
|
|
4499
|
+
categories:
|
|
4500
|
+
- sports
|
|
4342
4501
|
auth_mode: OAUTH2
|
|
4343
4502
|
authorization_url: https://opentest.coros.com/oauth2/authorize
|
|
4344
4503
|
token_url: https://opentest.coros.com/oauth2/accesstoken
|
|
@@ -4615,6 +4774,7 @@ dayforce:
|
|
|
4615
4774
|
body_format: form
|
|
4616
4775
|
proxy:
|
|
4617
4776
|
base_url: https://${connectionConfig.clientHostname}/api || https://www.dayforcehcm.com/api
|
|
4777
|
+
forward_headers_on_redirect: true
|
|
4618
4778
|
token_url: https://${connectionConfig.identityHostname}/connect/token || https://dfid.dayforcehcm.com/connect/token
|
|
4619
4779
|
token_params:
|
|
4620
4780
|
grant_type: password
|
|
@@ -4777,6 +4937,8 @@ deel:
|
|
|
4777
4937
|
|
|
4778
4938
|
deel-sandbox:
|
|
4779
4939
|
display_name: Deel (Sandbox)
|
|
4940
|
+
categories:
|
|
4941
|
+
- hr
|
|
4780
4942
|
auth_mode: OAUTH2
|
|
4781
4943
|
authorization_url: https://demo.deel.com/oauth2/authorize
|
|
4782
4944
|
token_url: https://demo.deel.com/oauth2/tokens
|
|
@@ -5055,6 +5217,8 @@ docusign:
|
|
|
5055
5217
|
|
|
5056
5218
|
docusign-sandbox:
|
|
5057
5219
|
display_name: DocuSign (Sandbox)
|
|
5220
|
+
categories:
|
|
5221
|
+
- legal
|
|
5058
5222
|
auth_mode: OAUTH2
|
|
5059
5223
|
authorization_url: https://account-d.docusign.com/oauth/auth
|
|
5060
5224
|
token_url: https://account-d.docusign.com/oauth/token
|
|
@@ -5479,6 +5643,8 @@ ecu360:
|
|
|
5479
5643
|
|
|
5480
5644
|
ecu360-production:
|
|
5481
5645
|
display_name: ECU360 (Production)
|
|
5646
|
+
categories:
|
|
5647
|
+
- other
|
|
5482
5648
|
alias: ecu360
|
|
5483
5649
|
token_url: https://apim.ecu360.com/auth/v1/authenticate
|
|
5484
5650
|
proxy:
|
|
@@ -5611,6 +5777,8 @@ epic-games:
|
|
|
5611
5777
|
|
|
5612
5778
|
evaluagent:
|
|
5613
5779
|
display_name: EvaluAgent
|
|
5780
|
+
categories:
|
|
5781
|
+
- support
|
|
5614
5782
|
auth_mode: BASIC
|
|
5615
5783
|
proxy:
|
|
5616
5784
|
base_url: https://${connectionConfig.region}.evaluagent.com
|
|
@@ -6133,6 +6301,8 @@ fireflies:
|
|
|
6133
6301
|
|
|
6134
6302
|
firstbase:
|
|
6135
6303
|
display_name: Firstbase
|
|
6304
|
+
categories:
|
|
6305
|
+
- hr
|
|
6136
6306
|
auth_mode: API_KEY
|
|
6137
6307
|
proxy:
|
|
6138
6308
|
base_url: https://apipub.firstbasehq.com
|
|
@@ -7305,6 +7475,7 @@ google:
|
|
|
7305
7475
|
response_path: items
|
|
7306
7476
|
docs: https://nango.dev/docs/api-integrations/google
|
|
7307
7477
|
setup_guide_url: https://nango.dev/docs/api-integrations/google/how-to-register-your-own-google-api-oauth-app
|
|
7478
|
+
webhook_routing_script: googleWebhookRouting
|
|
7308
7479
|
|
|
7309
7480
|
google-analytics:
|
|
7310
7481
|
display_name: Google Analytics
|
|
@@ -7391,6 +7562,26 @@ google-mail:
|
|
|
7391
7562
|
docs: https://nango.dev/docs/api-integrations/google-mail
|
|
7392
7563
|
setup_guide_url: https://nango.dev/docs/api-integrations/google-mail/how-to-register-your-own-gmail-api-oauth-app
|
|
7393
7564
|
|
|
7565
|
+
google-maps:
|
|
7566
|
+
display_name: Google Maps
|
|
7567
|
+
categories:
|
|
7568
|
+
- productivity
|
|
7569
|
+
auth_mode: API_KEY
|
|
7570
|
+
proxy:
|
|
7571
|
+
base_url: https://maps.googleapis.com
|
|
7572
|
+
query:
|
|
7573
|
+
key: ${apiKey}
|
|
7574
|
+
docs: https://nango.dev/docs/api-integrations/google-maps
|
|
7575
|
+
docs_connect: https://nango.dev/docs/api-integrations/google-maps/connect
|
|
7576
|
+
credentials:
|
|
7577
|
+
apiKey:
|
|
7578
|
+
type: string
|
|
7579
|
+
title: API Key
|
|
7580
|
+
description: Your Google Maps API Key.
|
|
7581
|
+
example: AIzaSyAY4P9A***************1YMSYBI
|
|
7582
|
+
pattern: ^AIza[0-9A-Za-z\-_]+$
|
|
7583
|
+
doc_section: '#step-3-obtain-your-google-maps-api-key'
|
|
7584
|
+
|
|
7394
7585
|
google-search-console:
|
|
7395
7586
|
display_name: Google Search Console
|
|
7396
7587
|
alias: google
|
|
@@ -8079,6 +8270,8 @@ gusto:
|
|
|
8079
8270
|
|
|
8080
8271
|
gusto-demo:
|
|
8081
8272
|
display_name: Gusto (Demo)
|
|
8273
|
+
categories:
|
|
8274
|
+
- hr
|
|
8082
8275
|
auth_mode: OAUTH2
|
|
8083
8276
|
authorization_url: https://api.gusto-demo.com/oauth/authorize
|
|
8084
8277
|
token_url: https://api.gusto-demo.com/oauth/token
|
|
@@ -8095,6 +8288,8 @@ gusto-demo:
|
|
|
8095
8288
|
|
|
8096
8289
|
hackerrank-work:
|
|
8097
8290
|
display_name: HackerRank Work
|
|
8291
|
+
categories:
|
|
8292
|
+
- ats
|
|
8098
8293
|
auth_mode: BASIC
|
|
8099
8294
|
proxy:
|
|
8100
8295
|
base_url: https://www.hackerrank.com
|
|
@@ -8150,6 +8345,8 @@ harvest:
|
|
|
8150
8345
|
|
|
8151
8346
|
health-gorilla:
|
|
8152
8347
|
display_name: Health Gorilla
|
|
8348
|
+
categories:
|
|
8349
|
+
- other
|
|
8153
8350
|
auth_mode: OAUTH2
|
|
8154
8351
|
authorization_url: https://api.healthgorilla.com/oauth/authorize
|
|
8155
8352
|
token_url: https://api.healthgorilla.com/oauth/token
|
|
@@ -9110,6 +9307,9 @@ jumpcloud:
|
|
|
9110
9307
|
|
|
9111
9308
|
helpscout-docs:
|
|
9112
9309
|
display_name: Help Scout Docs
|
|
9310
|
+
categories:
|
|
9311
|
+
- knowledge-base
|
|
9312
|
+
- support
|
|
9113
9313
|
auth_mode: BASIC
|
|
9114
9314
|
proxy:
|
|
9115
9315
|
retry:
|
|
@@ -9140,6 +9340,8 @@ helpscout-docs:
|
|
|
9140
9340
|
|
|
9141
9341
|
helpscout-mailbox:
|
|
9142
9342
|
display_name: Help Scout Mailbox
|
|
9343
|
+
categories:
|
|
9344
|
+
- support
|
|
9143
9345
|
auth_mode: OAUTH2
|
|
9144
9346
|
authorization_url: https://secure.helpscout.net/authentication/authorizeClientApplication
|
|
9145
9347
|
token_url: https://api.helpscout.net/v2/oauth2/token
|
|
@@ -9632,6 +9834,8 @@ lever-basic:
|
|
|
9632
9834
|
|
|
9633
9835
|
lever-sandbox:
|
|
9634
9836
|
display_name: Lever (OAuth Sandbox)
|
|
9837
|
+
categories:
|
|
9838
|
+
- ats
|
|
9635
9839
|
auth_mode: OAUTH2
|
|
9636
9840
|
authorization_url: https://sandbox-lever.auth0.com/authorize
|
|
9637
9841
|
token_url: https://sandbox-lever.auth0.com/oauth/token
|
|
@@ -9645,6 +9849,8 @@ lever-sandbox:
|
|
|
9645
9849
|
|
|
9646
9850
|
lever-basic-sandbox:
|
|
9647
9851
|
display_name: Lever (Basic Auth Sandbox))
|
|
9852
|
+
categories:
|
|
9853
|
+
- ats
|
|
9648
9854
|
auth_mode: BASIC
|
|
9649
9855
|
proxy:
|
|
9650
9856
|
base_url: https://api.sandbox.lever.co
|
|
@@ -9759,6 +9965,8 @@ linkedin:
|
|
|
9759
9965
|
|
|
9760
9966
|
linkhut:
|
|
9761
9967
|
display_name: LinkHut
|
|
9968
|
+
categories:
|
|
9969
|
+
- social
|
|
9762
9970
|
auth_mode: OAUTH2
|
|
9763
9971
|
authorization_url: https://ln.ht/_/oauth/authorize
|
|
9764
9972
|
token_url: https://api.ln.ht/v1/oauth/token
|
|
@@ -10147,6 +10355,8 @@ manatal:
|
|
|
10147
10355
|
|
|
10148
10356
|
marketo:
|
|
10149
10357
|
display_name: Marketo
|
|
10358
|
+
categories:
|
|
10359
|
+
- marketing
|
|
10150
10360
|
auth_mode: OAUTH2_CC
|
|
10151
10361
|
proxy:
|
|
10152
10362
|
base_url: https://${connectionConfig.endpointURL}
|
|
@@ -11058,6 +11268,8 @@ mural:
|
|
|
11058
11268
|
|
|
11059
11269
|
nationbuilder:
|
|
11060
11270
|
display_name: NationBuilder
|
|
11271
|
+
categories:
|
|
11272
|
+
- crm
|
|
11061
11273
|
auth_mode: OAUTH2
|
|
11062
11274
|
authorization_url: https://${connectionConfig.accountId}.nationbuilder.com/oauth/authorize
|
|
11063
11275
|
token_url: https://${connectionConfig.accountId}.nationbuilder.com/oauth/token
|
|
@@ -11220,6 +11432,9 @@ netsuite-tba:
|
|
|
11220
11432
|
|
|
11221
11433
|
next-cloud-ocs:
|
|
11222
11434
|
display_name: Next Cloud OCS
|
|
11435
|
+
categories:
|
|
11436
|
+
- storage
|
|
11437
|
+
- productivity
|
|
11223
11438
|
auth_mode: BASIC
|
|
11224
11439
|
proxy:
|
|
11225
11440
|
base_url: https://${connectionConfig.domain}/ocs/v1.php
|
|
@@ -11730,6 +11945,50 @@ oomnitza:
|
|
|
11730
11945
|
description: Your Oomnitza API token
|
|
11731
11946
|
doc_section: '#step-2-generating-your-api-token'
|
|
11732
11947
|
|
|
11948
|
+
orange-logic:
|
|
11949
|
+
display_name: Orange Logic
|
|
11950
|
+
categories:
|
|
11951
|
+
- storage
|
|
11952
|
+
auth_mode: TWO_STEP
|
|
11953
|
+
body_format: json
|
|
11954
|
+
token_url: https://${connectionConfig.serverUrl}/webapi/security/clientcredentialsauthentication/authenticate_46H_v1
|
|
11955
|
+
token_params:
|
|
11956
|
+
client_id: ${credentials.clientId}
|
|
11957
|
+
client_secret: ${credentials.clientSecret}
|
|
11958
|
+
token_headers:
|
|
11959
|
+
content-type: application/json
|
|
11960
|
+
accept: application/json
|
|
11961
|
+
token_response:
|
|
11962
|
+
token: access_token
|
|
11963
|
+
token_expiration: expires_in
|
|
11964
|
+
token_expiration_strategy: expireIn
|
|
11965
|
+
proxy:
|
|
11966
|
+
base_url: https://${connectionConfig.serverUrl}
|
|
11967
|
+
docs: https://nango.dev/docs/api-integrations/orange-logic
|
|
11968
|
+
docs_connect: https://nango.dev/docs/api-integrations/orange-logic/connect
|
|
11969
|
+
credentials:
|
|
11970
|
+
clientId:
|
|
11971
|
+
type: string
|
|
11972
|
+
title: Client ID
|
|
11973
|
+
description: The Client ID from your Orange Logic OAuth 2.0 Client Credentials.
|
|
11974
|
+
doc_section: '#step-2-obtain-client-credentials'
|
|
11975
|
+
clientSecret:
|
|
11976
|
+
type: string
|
|
11977
|
+
title: Client Secret
|
|
11978
|
+
description: The Client Secret from your Orange Logic OAuth 2.0 Client Credentials.
|
|
11979
|
+
secret: true
|
|
11980
|
+
doc_section: '#step-2-obtain-client-credentials'
|
|
11981
|
+
connection_config:
|
|
11982
|
+
serverUrl:
|
|
11983
|
+
type: string
|
|
11984
|
+
title: Orange Logic Server URL
|
|
11985
|
+
description: The base URL of your Orange Logic instance
|
|
11986
|
+
example: mycompany.orangelogic.com
|
|
11987
|
+
format: hostname
|
|
11988
|
+
prefix: https://
|
|
11989
|
+
order: 1
|
|
11990
|
+
doc_section: '#step-1-find-your-orange-logic-url'
|
|
11991
|
+
|
|
11733
11992
|
openai:
|
|
11734
11993
|
display_name: OpenAI
|
|
11735
11994
|
categories:
|
|
@@ -12320,6 +12579,8 @@ paypal:
|
|
|
12320
12579
|
|
|
12321
12580
|
paypal-sandbox:
|
|
12322
12581
|
display_name: Paypal (Sandbox)
|
|
12582
|
+
categories:
|
|
12583
|
+
- payment
|
|
12323
12584
|
auth_mode: OAUTH2
|
|
12324
12585
|
authorization_url: https://www.sandbox.paypal.com/signin/authorize
|
|
12325
12586
|
token_url: https://api-m.sandbox.paypal.com/v1/oauth2/token
|
|
@@ -13035,8 +13296,44 @@ prospeo:
|
|
|
13035
13296
|
pattern: '^[a-f0-9]{32}$'
|
|
13036
13297
|
doc_section: '#step-1-finding-your-api-key'
|
|
13037
13298
|
|
|
13299
|
+
prtg-classic:
|
|
13300
|
+
display_name: PRTG Classic
|
|
13301
|
+
categories:
|
|
13302
|
+
- support
|
|
13303
|
+
auth_mode: API_KEY
|
|
13304
|
+
proxy:
|
|
13305
|
+
base_url: https://${connectionConfig.host}
|
|
13306
|
+
query:
|
|
13307
|
+
apitoken: ${apiKey}
|
|
13308
|
+
verification:
|
|
13309
|
+
method: GET
|
|
13310
|
+
endpoints:
|
|
13311
|
+
- /api/table.json?content=sensors&count=1
|
|
13312
|
+
docs: https://nango.dev/docs/api-integrations/prtg-classic
|
|
13313
|
+
docs_connect: https://nango.dev/docs/api-integrations/prtg-classic/connect
|
|
13314
|
+
connection_config:
|
|
13315
|
+
host:
|
|
13316
|
+
type: string
|
|
13317
|
+
title: Instance Host
|
|
13318
|
+
description: The host of your PRTG instance
|
|
13319
|
+
pattern: '^[A-Za-z0-9.-]+(:\d+)?$'
|
|
13320
|
+
example: monitor.example.com
|
|
13321
|
+
prefix: https://
|
|
13322
|
+
doc_section: '#step-1-finding-your-instance-host'
|
|
13323
|
+
order: 1
|
|
13324
|
+
credentials:
|
|
13325
|
+
apiKey:
|
|
13326
|
+
type: string
|
|
13327
|
+
title: API Key
|
|
13328
|
+
description: The API key for your PRTG account
|
|
13329
|
+
pattern: '^[A-Z2-7]+=*$'
|
|
13330
|
+
example: RUTOWB5KVJCMEOWHL5MLUWMA324UGNDLPS6JKLTEDT======
|
|
13331
|
+
doc_section: '#step-2-finding-your-api-key'
|
|
13332
|
+
|
|
13038
13333
|
private-api-bearer:
|
|
13039
13334
|
display_name: Private API (Bearer Auth)
|
|
13335
|
+
categories:
|
|
13336
|
+
- other
|
|
13040
13337
|
auth_mode: API_KEY
|
|
13041
13338
|
proxy:
|
|
13042
13339
|
headers:
|
|
@@ -13052,6 +13349,8 @@ private-api-bearer:
|
|
|
13052
13349
|
|
|
13053
13350
|
private-api-basic:
|
|
13054
13351
|
display_name: Private API (Basic Auth)
|
|
13352
|
+
categories:
|
|
13353
|
+
- other
|
|
13055
13354
|
auth_mode: BASIC
|
|
13056
13355
|
proxy:
|
|
13057
13356
|
base_url: https://my-private-api
|
|
@@ -13356,6 +13655,8 @@ quickbooks:
|
|
|
13356
13655
|
quickbooks-sandbox:
|
|
13357
13656
|
alias: quickbooks
|
|
13358
13657
|
display_name: Quickbooks (Sandbox)
|
|
13658
|
+
categories:
|
|
13659
|
+
- accounting
|
|
13359
13660
|
proxy:
|
|
13360
13661
|
connection_config:
|
|
13361
13662
|
realmId: ${connectionConfig.realmId}
|
|
@@ -13411,6 +13712,8 @@ ramp:
|
|
|
13411
13712
|
|
|
13412
13713
|
ramp-sandbox:
|
|
13413
13714
|
display_name: Ramp (Sandbox)
|
|
13715
|
+
categories:
|
|
13716
|
+
- banking
|
|
13414
13717
|
auth_mode: OAUTH2
|
|
13415
13718
|
authorization_url: https://demo.ramp.com/v1/authorize
|
|
13416
13719
|
token_url: https://demo-api.ramp.com/developer/v1/token
|
|
@@ -13764,6 +14067,8 @@ refiner:
|
|
|
13764
14067
|
|
|
13765
14068
|
replicate:
|
|
13766
14069
|
display_name: Replicate
|
|
14070
|
+
categories:
|
|
14071
|
+
- dev-tools
|
|
13767
14072
|
auth_mode: API_KEY
|
|
13768
14073
|
proxy:
|
|
13769
14074
|
headers:
|
|
@@ -13925,6 +14230,8 @@ ring-central:
|
|
|
13925
14230
|
|
|
13926
14231
|
ring-central-sandbox:
|
|
13927
14232
|
display_name: RingCentral (Sandbox)
|
|
14233
|
+
categories:
|
|
14234
|
+
- communication
|
|
13928
14235
|
auth_mode: OAUTH2
|
|
13929
14236
|
authorization_url: https://platform.devtest.ringcentral.com/restapi/oauth/authorize
|
|
13930
14237
|
token_url: https://platform.devtest.ringcentral.com/restapi/oauth/token
|
|
@@ -14424,6 +14731,8 @@ salesforce-jwt:
|
|
|
14424
14731
|
|
|
14425
14732
|
salesforce-sandbox:
|
|
14426
14733
|
display_name: Salesforce (Sandbox)
|
|
14734
|
+
categories:
|
|
14735
|
+
- crm
|
|
14427
14736
|
auth_mode: OAUTH2
|
|
14428
14737
|
authorization_url: https://test.salesforce.com/services/oauth2/authorize
|
|
14429
14738
|
token_url: https://test.salesforce.com/services/oauth2/token
|
|
@@ -14446,6 +14755,8 @@ salesforce-sandbox:
|
|
|
14446
14755
|
|
|
14447
14756
|
salesforce-experience-cloud:
|
|
14448
14757
|
display_name: Salesforce Experience Cloud
|
|
14758
|
+
categories:
|
|
14759
|
+
- crm
|
|
14449
14760
|
auth_mode: OAUTH2
|
|
14450
14761
|
authorization_url: https://${connectionConfig.subdomain}.my.site.com/services/oauth2/authorize
|
|
14451
14762
|
token_url: https://${connectionConfig.subdomain}.my.site.com/services/oauth2/token
|
|
@@ -14714,6 +15025,7 @@ sap-success-factors:
|
|
|
14714
15025
|
assertion: ${credentials.assertion}
|
|
14715
15026
|
new_token: true
|
|
14716
15027
|
assertion:
|
|
15028
|
+
type: saml
|
|
14717
15029
|
key: ${assertionOption.privateKey}
|
|
14718
15030
|
issuer: www.successfactors.com
|
|
14719
15031
|
lifetimeInSeconds: '315360000'
|
|
@@ -14939,6 +15251,40 @@ semrush:
|
|
|
14939
15251
|
description: Your Semrush API key
|
|
14940
15252
|
doc_section: '#step-1-finding-your-api-key'
|
|
14941
15253
|
|
|
15254
|
+
sentinelone:
|
|
15255
|
+
display_name: SentinelOne
|
|
15256
|
+
categories:
|
|
15257
|
+
- dev-tools
|
|
15258
|
+
auth_mode: API_KEY
|
|
15259
|
+
proxy:
|
|
15260
|
+
base_url: https://${connectionConfig.hostname}
|
|
15261
|
+
headers:
|
|
15262
|
+
authorization: ApiToken ${apiKey}
|
|
15263
|
+
accept: application/json
|
|
15264
|
+
content-type: application/json
|
|
15265
|
+
verification:
|
|
15266
|
+
method: GET
|
|
15267
|
+
endpoints:
|
|
15268
|
+
- /web/api/v2.1/sites?limit=1
|
|
15269
|
+
docs: https://nango.dev/docs/api-integrations/sentinelone
|
|
15270
|
+
docs_connect: https://nango.dev/docs/api-integrations/sentinelone/connect
|
|
15271
|
+
connection_config:
|
|
15272
|
+
hostname:
|
|
15273
|
+
type: string
|
|
15274
|
+
title: Hostname
|
|
15275
|
+
description: The hostname of your SentinelOne management console
|
|
15276
|
+
format: hostname
|
|
15277
|
+
prefix: https://
|
|
15278
|
+
example: your-tenant.sentinelone.net
|
|
15279
|
+
doc_section: '#step-2-find-your-hostname'
|
|
15280
|
+
order: 1
|
|
15281
|
+
credentials:
|
|
15282
|
+
apiKey:
|
|
15283
|
+
type: string
|
|
15284
|
+
title: API Token
|
|
15285
|
+
description: The API token for your SentinelOne service user
|
|
15286
|
+
doc_section: '#step-1-generate-your-api-token'
|
|
15287
|
+
|
|
14942
15288
|
sentry:
|
|
14943
15289
|
display_name: Sentry
|
|
14944
15290
|
categories:
|
|
@@ -15394,6 +15740,43 @@ sharepoint-online-v1:
|
|
|
15394
15740
|
secret: true
|
|
15395
15741
|
doc_section: '#step-4-generating-your-client-assertion'
|
|
15396
15742
|
|
|
15743
|
+
shipbob-pat:
|
|
15744
|
+
display_name: ShipBob (Personal Access Token)
|
|
15745
|
+
categories:
|
|
15746
|
+
- e-commerce
|
|
15747
|
+
auth_mode: API_KEY
|
|
15748
|
+
proxy:
|
|
15749
|
+
base_url: https://${connectionConfig.apiSubdomain}.shipbob.com
|
|
15750
|
+
headers:
|
|
15751
|
+
authorization: Bearer ${apiKey}
|
|
15752
|
+
retry:
|
|
15753
|
+
after:
|
|
15754
|
+
- 'x-retry-after'
|
|
15755
|
+
verification:
|
|
15756
|
+
method: GET
|
|
15757
|
+
endpoints:
|
|
15758
|
+
- /2026-01/channel
|
|
15759
|
+
docs: https://nango.dev/docs/api-integrations/shipbob-pat
|
|
15760
|
+
docs_connect: https://nango.dev/docs/api-integrations/shipbob-pat/connect
|
|
15761
|
+
connection_config:
|
|
15762
|
+
apiSubdomain:
|
|
15763
|
+
type: string
|
|
15764
|
+
title: API Subdomain
|
|
15765
|
+
description: The ShipBob API subdomain of the environment you want to connect to.
|
|
15766
|
+
example: api
|
|
15767
|
+
pattern: '^(api|sandbox-api)$'
|
|
15768
|
+
prefix: https://
|
|
15769
|
+
suffix: .shipbob.com
|
|
15770
|
+
doc_section: '#step-2-identify-your-api-subdomain'
|
|
15771
|
+
credentials:
|
|
15772
|
+
apiKey:
|
|
15773
|
+
type: string
|
|
15774
|
+
title: Personal Access Token
|
|
15775
|
+
description: Your ShipBob Personal Access Token
|
|
15776
|
+
example: 6E4647BB**************************806E464161FBB996DD8E87EEA86DB926-1
|
|
15777
|
+
pattern: '^[A-F0-9]{64}-\d+$'
|
|
15778
|
+
doc_section: '#step-1-generate-your-token'
|
|
15779
|
+
|
|
15397
15780
|
shipstation:
|
|
15398
15781
|
display_name: Shipstation (v1)
|
|
15399
15782
|
categories:
|
|
@@ -15786,6 +16169,8 @@ sophos-central:
|
|
|
15786
16169
|
|
|
15787
16170
|
smartrecruiters-api-key:
|
|
15788
16171
|
display_name: Smartrecruiters
|
|
16172
|
+
categories:
|
|
16173
|
+
- ats
|
|
15789
16174
|
auth_mode: API_KEY
|
|
15790
16175
|
proxy:
|
|
15791
16176
|
base_url: https://api.smartrecruiters.com
|
|
@@ -15806,6 +16191,8 @@ smartrecruiters-api-key:
|
|
|
15806
16191
|
|
|
15807
16192
|
smartsheet:
|
|
15808
16193
|
display_name: Smartsheet
|
|
16194
|
+
categories:
|
|
16195
|
+
- productivity
|
|
15809
16196
|
auth_mode: OAUTH2
|
|
15810
16197
|
authorization_url: https://app.smartsheet.com/b/authorize
|
|
15811
16198
|
token_url: https://api.${connectionConfig.domain}/2.0/token
|
|
@@ -15830,6 +16217,8 @@ smartsheet:
|
|
|
15830
16217
|
|
|
15831
16218
|
smugmug:
|
|
15832
16219
|
display_name: Smugmug
|
|
16220
|
+
categories:
|
|
16221
|
+
- storage
|
|
15833
16222
|
auth_mode: OAUTH1
|
|
15834
16223
|
request_url: https://api.smugmug.com/services/oauth/1.0a/getRequestToken
|
|
15835
16224
|
authorization_url: https://api.smugmug.com/services/oauth/1.0a/authorize
|
|
@@ -16208,6 +16597,8 @@ stripe-app:
|
|
|
16208
16597
|
|
|
16209
16598
|
stripe-app-sandbox:
|
|
16210
16599
|
display_name: Stripe App (Sandbox)
|
|
16600
|
+
categories:
|
|
16601
|
+
- payment
|
|
16211
16602
|
auth_mode: OAUTH2
|
|
16212
16603
|
authorization_url: https://marketplace.stripe.com/oauth/v2/${connectionConfig.appDomain}/authorize
|
|
16213
16604
|
token_url: https://api.stripe.com/v1/oauth/token
|
|
@@ -17220,6 +17611,8 @@ twitter-oauth2-cc:
|
|
|
17220
17611
|
|
|
17221
17612
|
twinfield:
|
|
17222
17613
|
display_name: Twinfield
|
|
17614
|
+
categories:
|
|
17615
|
+
- accounting
|
|
17223
17616
|
auth_mode: OAUTH2
|
|
17224
17617
|
authorization_url: https://login.twinfield.com/auth/authentication/connect/authorize
|
|
17225
17618
|
token_url: https://login.twinfield.com/auth/authentication/connect/token
|
|
@@ -17416,6 +17809,8 @@ typefully-v2:
|
|
|
17416
17809
|
|
|
17417
17810
|
uber:
|
|
17418
17811
|
display_name: Uber
|
|
17812
|
+
categories:
|
|
17813
|
+
- other
|
|
17419
17814
|
auth_mode: OAUTH2
|
|
17420
17815
|
authorization_url: https://login.uber.com/oauth/v2/authorize
|
|
17421
17816
|
token_url: https://login.uber.com/oauth/v2/token
|
|
@@ -17641,6 +18036,8 @@ unanet:
|
|
|
17641
18036
|
|
|
17642
18037
|
unauthenticated:
|
|
17643
18038
|
display_name: Unauthenticated
|
|
18039
|
+
categories:
|
|
18040
|
+
- other
|
|
17644
18041
|
auth_mode: NONE
|
|
17645
18042
|
webhook_routing_script: unauthenticatedWebhookRouting
|
|
17646
18043
|
docs: https://nango.dev/docs/integrations/all/unauthenticated
|
|
@@ -18078,6 +18475,8 @@ whoop:
|
|
|
18078
18475
|
|
|
18079
18476
|
wildix-pbx:
|
|
18080
18477
|
display_name: Wildix PBX
|
|
18478
|
+
categories:
|
|
18479
|
+
- communication
|
|
18081
18480
|
auth_mode: OAUTH2
|
|
18082
18481
|
authorization_url: https://${connectionConfig.subdomain}.wildixin.com/authorization/oauth2
|
|
18083
18482
|
token_url: https://${connectionConfig.subdomain}.wildixin.com/authorization/oauth2Token
|
|
@@ -18429,6 +18828,97 @@ workday-refresh-token:
|
|
|
18429
18828
|
secret: true
|
|
18430
18829
|
doc_section: '#step-4-generating-a-refresh-token'
|
|
18431
18830
|
|
|
18831
|
+
workday-adaptive-planning:
|
|
18832
|
+
display_name: Workday Adaptive Planning
|
|
18833
|
+
categories:
|
|
18834
|
+
- accounting
|
|
18835
|
+
auth_mode: TWO_STEP
|
|
18836
|
+
body_format: form
|
|
18837
|
+
token_url: https://${connectionConfig.host}/ccx/oauth2/${connectionConfig.tenant}/token
|
|
18838
|
+
token_params:
|
|
18839
|
+
grant_type: urn:ietf:params:oauth:grant-type:jwt-bearer
|
|
18840
|
+
assertion: ${credentials.assertion}
|
|
18841
|
+
token_headers:
|
|
18842
|
+
content-type: application/x-www-form-urlencoded
|
|
18843
|
+
assertion:
|
|
18844
|
+
type: jwt
|
|
18845
|
+
key: ${credentials.privateKey}
|
|
18846
|
+
lifetimeInSeconds: 300
|
|
18847
|
+
header:
|
|
18848
|
+
alg: RS256
|
|
18849
|
+
typ: JWT
|
|
18850
|
+
payload:
|
|
18851
|
+
iss: ${credentials.clientId}
|
|
18852
|
+
sub: ${credentials.isu}
|
|
18853
|
+
aud: wd
|
|
18854
|
+
additional_steps:
|
|
18855
|
+
- token_request_method: GET
|
|
18856
|
+
token_url: https://${connectionConfig.host}/ccx/api/planning/v1/${connectionConfig.tenant}/adaptiveAPIAccessToken
|
|
18857
|
+
token_headers:
|
|
18858
|
+
authorization: Bearer ${step1.access_token}
|
|
18859
|
+
token_response:
|
|
18860
|
+
token: adaptiveAPIAccessToken
|
|
18861
|
+
proxy:
|
|
18862
|
+
base_url: https://api.adaptiveplanning.com
|
|
18863
|
+
docs: https://nango.dev/docs/api-integrations/workday-adaptive-planning
|
|
18864
|
+
docs_connect: https://nango.dev/docs/api-integrations/workday-adaptive-planning/connect
|
|
18865
|
+
connection_config:
|
|
18866
|
+
host:
|
|
18867
|
+
type: string
|
|
18868
|
+
title: Host
|
|
18869
|
+
description: The hostname of your Workday account.
|
|
18870
|
+
format: hostname
|
|
18871
|
+
example: wd3-impl-services1.workday.com
|
|
18872
|
+
prefix: https://
|
|
18873
|
+
order: 1
|
|
18874
|
+
tenant:
|
|
18875
|
+
type: string
|
|
18876
|
+
title: Tenant
|
|
18877
|
+
description: The tenant of your Workday account.
|
|
18878
|
+
example: mytenant
|
|
18879
|
+
order: 2
|
|
18880
|
+
credentials:
|
|
18881
|
+
clientId:
|
|
18882
|
+
type: string
|
|
18883
|
+
title: Client ID
|
|
18884
|
+
description: The Client ID from the Workday API Client registration.
|
|
18885
|
+
isu:
|
|
18886
|
+
type: string
|
|
18887
|
+
title: ISU Username
|
|
18888
|
+
description: The Integration System User (ISU) username.
|
|
18889
|
+
assertion:
|
|
18890
|
+
type: string
|
|
18891
|
+
title: ''
|
|
18892
|
+
description: ''
|
|
18893
|
+
automated: true
|
|
18894
|
+
privateKey:
|
|
18895
|
+
type: string
|
|
18896
|
+
title: Private Key
|
|
18897
|
+
description: The RSA private key (PEM format) used to sign the JWT.
|
|
18898
|
+
secret: true
|
|
18899
|
+
|
|
18900
|
+
workpath:
|
|
18901
|
+
display_name: Workpath
|
|
18902
|
+
categories:
|
|
18903
|
+
- productivity
|
|
18904
|
+
auth_mode: API_KEY
|
|
18905
|
+
proxy:
|
|
18906
|
+
base_url: https://connect.workpath.com/api
|
|
18907
|
+
headers:
|
|
18908
|
+
authorization: Bearer ${apiKey}
|
|
18909
|
+
verification:
|
|
18910
|
+
method: GET
|
|
18911
|
+
endpoints:
|
|
18912
|
+
- /v3/kpis
|
|
18913
|
+
docs: https://nango.dev/docs/api-integrations/workpath
|
|
18914
|
+
docs_connect: https://nango.dev/docs/api-integrations/workpath/connect
|
|
18915
|
+
credentials:
|
|
18916
|
+
apiKey:
|
|
18917
|
+
type: string
|
|
18918
|
+
title: API Token
|
|
18919
|
+
description: Your Workpath API Token.
|
|
18920
|
+
doc_section: '#step-1-getting-your-api-token'
|
|
18921
|
+
|
|
18432
18922
|
wrike:
|
|
18433
18923
|
display_name: Wrike
|
|
18434
18924
|
categories:
|
|
@@ -18654,6 +19144,8 @@ zapier:
|
|
|
18654
19144
|
|
|
18655
19145
|
zapier-nla:
|
|
18656
19146
|
display_name: Zapier NLA
|
|
19147
|
+
categories:
|
|
19148
|
+
- productivity
|
|
18657
19149
|
auth_mode: OAUTH2
|
|
18658
19150
|
authorization_url: https://nla.zapier.com/oauth/authorize/
|
|
18659
19151
|
token_url: https://nla.zapier.com/oauth/token/
|
|
@@ -18798,6 +19290,8 @@ zoho:
|
|
|
18798
19290
|
|
|
18799
19291
|
zoho-books:
|
|
18800
19292
|
display_name: Zoho Books
|
|
19293
|
+
categories:
|
|
19294
|
+
- accounting
|
|
18801
19295
|
alias: zoho
|
|
18802
19296
|
docs: https://nango.dev/docs/integrations/all/zoho-books
|
|
18803
19297
|
docs_connect: https://nango.dev/docs/integrations/all/zoho-books/connect
|
|
@@ -18814,6 +19308,8 @@ zoho-books:
|
|
|
18814
19308
|
|
|
18815
19309
|
zoho-crm:
|
|
18816
19310
|
display_name: Zoho CRM
|
|
19311
|
+
categories:
|
|
19312
|
+
- crm
|
|
18817
19313
|
alias: zoho
|
|
18818
19314
|
docs: https://nango.dev/docs/api-integrations/zoho-crm
|
|
18819
19315
|
setup_guide_url: https://nango.dev/docs/api-integrations/zoho-crm/how-to-register-your-own-zoho-crm-api-oauth-app
|
|
@@ -18929,6 +19425,8 @@ zoho-mail:
|
|
|
18929
19425
|
|
|
18930
19426
|
zoho-bigin:
|
|
18931
19427
|
display_name: Zoho Bigin
|
|
19428
|
+
categories:
|
|
19429
|
+
- crm
|
|
18932
19430
|
alias: zoho
|
|
18933
19431
|
docs: https://nango.dev/docs/integrations/all/zoho-bigin
|
|
18934
19432
|
docs_connect: https://nango.dev/docs/integrations/all/zoho-bigin/connect
|