@nangohq/providers 0.69.47 → 0.69.49

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/providers.yaml +812 -17
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nangohq/providers",
3
- "version": "0.69.47",
3
+ "version": "0.69.49",
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.47",
19
+ "@nangohq/types": "0.69.49",
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:
@@ -1901,7 +1971,7 @@ aws:
1901
1971
  title: API Subdomain
1902
1972
  description: The API subdomain to the API you want to connect to
1903
1973
  example: idp.us-east-2
1904
- pattern: '^[a-z.-]+$'
1974
+ pattern: '^[a-z0-9.-]+$'
1905
1975
  suffix: .amazonaws.com
1906
1976
  prefix: https://cognito-
1907
1977
 
@@ -2319,6 +2389,25 @@ bill:
2319
2389
  base_url: https://gateway.prod.bill.com/connect
2320
2390
  docs: https://nango.dev/docs/integrations/all/bill
2321
2391
 
2392
+ bing-webmasters:
2393
+ display_name: Bing Webmasters
2394
+ categories:
2395
+ - dev-tools
2396
+ auth_mode: OAUTH2
2397
+ authorization_url: https://www.bing.com/webmasters/oauth/authorize
2398
+ token_url: https://www.bing.com/webmasters/oauth/token
2399
+ refresh_url: https://www.bing.com/webmasters/token
2400
+ authorization_params:
2401
+ response_type: code
2402
+ token_params:
2403
+ grant_type: authorization_code
2404
+ refresh_token_params:
2405
+ grant_type: refresh_token
2406
+ proxy:
2407
+ base_url: https://www.bing.com/webmaster/api.svc/json
2408
+ docs: https://nango.dev/docs/api-integrations/bing-webmasters
2409
+ setup_guide_url: https://nango.dev/docs/api-integrations/bing-webmasters/how-to-register-your-own-bing-webmasters-api-oauth-app
2410
+
2322
2411
  bitbucket:
2323
2412
  display_name: Bitbucket
2324
2413
  categories:
@@ -2569,6 +2658,8 @@ braintree:
2569
2658
 
2570
2659
  braintree-sandbox:
2571
2660
  display_name: Braintree (Sandbox)
2661
+ categories:
2662
+ - payment
2572
2663
  auth_mode: OAUTH2
2573
2664
  authorization_url: https://api.sandbox.braintreegateway.com/oauth/connect
2574
2665
  token_url: https://api.sandbox.braintreegateway.com/oauth/access_tokens
@@ -2690,6 +2781,8 @@ brex:
2690
2781
 
2691
2782
  brex-api-key:
2692
2783
  display_name: Brex (API Key)
2784
+ categories:
2785
+ - banking
2693
2786
  auth_mode: API_KEY
2694
2787
  proxy:
2695
2788
  headers:
@@ -2708,6 +2801,8 @@ brex-api-key:
2708
2801
 
2709
2802
  brex-staging:
2710
2803
  display_name: Brex (Staging OAuth)
2804
+ categories:
2805
+ - banking
2711
2806
  auth_mode: OAUTH2
2712
2807
  authorization_url: https://accounts-api.staging.brexapps.com/oauth2/default/v1/authorize
2713
2808
  token_url: https://accounts-api.staging.brexapps.com/oauth2/default/v1/token
@@ -3419,6 +3514,8 @@ checkout-com-sandbox:
3419
3514
 
3420
3515
  chorus:
3421
3516
  display_name: Chorus
3517
+ categories:
3518
+ - analytics
3422
3519
  auth_mode: API_KEY
3423
3520
  proxy:
3424
3521
  base_url: https://chorus.ai
@@ -3439,6 +3536,40 @@ chorus:
3439
3536
  description: The API key for your Chorus account
3440
3537
  doc_section: '#step-1-generating-your-chorus-api-key'
3441
3538
 
3539
+ cin7-core:
3540
+ display_name: Cin7 Core
3541
+ categories:
3542
+ - e-commerce
3543
+ auth_mode: API_KEY
3544
+ proxy:
3545
+ base_url: https://inventory.dearsystems.com/externalapi
3546
+ headers:
3547
+ api-auth-accountid: ${connectionConfig.accountId}
3548
+ api-auth-applicationkey: ${apiKey}
3549
+ verification:
3550
+ method: GET
3551
+ endpoints:
3552
+ - /v2/me
3553
+ docs: https://nango.dev/docs/api-integrations/cin7-core
3554
+ docs_connect: https://nango.dev/docs/api-integrations/cin7-core/connect
3555
+ connection_config:
3556
+ accountId:
3557
+ type: string
3558
+ title: Account ID
3559
+ description: Your Cin7 Core Account ID.
3560
+ doc_section: '#step-1-find-your-account-id-and-api-application-key'
3561
+ example: a1b2c3d4-****-****-****-ef1234567890
3562
+ format: uuid
3563
+ credentials:
3564
+ apiKey:
3565
+ type: string
3566
+ title: API Application Key
3567
+ description: Your Cin7 Core API Application Key.
3568
+ secret: true
3569
+ 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}$'
3570
+ doc_section: '#step-1-find-your-account-id-and-api-application-key'
3571
+ example: 6d6f4999-****-****-****-4e4ed450df0f
3572
+
3442
3573
  circle-so:
3443
3574
  display_name: Circle.so
3444
3575
  categories:
@@ -3559,6 +3690,38 @@ cleverreach:
3559
3690
  docs: https://nango.dev/docs/api-integrations/cleverreach
3560
3691
  setup_guide_url: https://nango.dev/docs/api-integrations/cleverreach/how-to-register-your-own-cleverreach-api-oauth-app
3561
3692
 
3693
+ clickhouse:
3694
+ display_name: ClickHouse
3695
+ categories:
3696
+ - dev-tools
3697
+ auth_mode: BASIC
3698
+ proxy:
3699
+ base_url: https://api.clickhouse.cloud
3700
+ verification:
3701
+ method: GET
3702
+ headers:
3703
+ content-type: application/json
3704
+ endpoints:
3705
+ - /v1/organizations
3706
+ docs: https://nango.dev/docs/api-integrations/clickhouse
3707
+ docs_connect: https://nango.dev/docs/api-integrations/clickhouse/connect
3708
+ credentials:
3709
+ username:
3710
+ type: string
3711
+ title: Key ID
3712
+ description: Your ClickHouse Cloud API Key ID.
3713
+ pattern: '^[a-zA-Z0-9]+$'
3714
+ example: 'Mlx1****************'
3715
+ doc_section: '#step-1-create-an-api-key'
3716
+ password:
3717
+ type: string
3718
+ title: Key Secret
3719
+ description: Your ClickHouse Cloud API Key Secret.
3720
+ secret: true
3721
+ pattern: '^[a-zA-Z0-9]+$'
3722
+ example: '4b1d2i7O**********************************'
3723
+ doc_section: '#step-1-create-an-api-key'
3724
+
3562
3725
  clicksend:
3563
3726
  display_name: ClickSend
3564
3727
  categories:
@@ -3745,6 +3908,8 @@ cloudentity:
3745
3908
 
3746
3909
  cloudflare:
3747
3910
  display_name: Cloudflare
3911
+ categories:
3912
+ - dev-tools
3748
3913
  auth_mode: API_KEY
3749
3914
  proxy:
3750
3915
  base_url: https://api.cloudflare.com/client
@@ -3763,6 +3928,42 @@ cloudflare:
3763
3928
  example: lGlHlGZN3iPR9z7CupZlMB3nzMpTCdfxeUPNj_pf
3764
3929
  pattern: '^[a-zA-Z0-9_-]+$'
3765
3930
 
3931
+ clover:
3932
+ display_name: Clover
3933
+ categories:
3934
+ - e-commerce
3935
+ auth_mode: OAUTH2
3936
+ body_format: json
3937
+ authorization_url: https://${connectionConfig.authorizeHost}/oauth/v2/authorize
3938
+ token_url: https://${connectionConfig.apiHost}/oauth/v2/token
3939
+ refresh_url: https://${connectionConfig.apiHost}/oauth/v2/refresh
3940
+ disable_pkce: true
3941
+ authorization_params:
3942
+ response_type: code
3943
+ refresh_params:
3944
+ grant_type: refresh_token
3945
+ redirect_uri_metadata:
3946
+ - merchant_id
3947
+ - employee_id
3948
+ proxy:
3949
+ base_url: https://${connectionConfig.apiHost}
3950
+ docs: https://nango.dev/docs/api-integrations/clover
3951
+ setup_guide_url: https://nango.dev/docs/api-integrations/clover/how-to-register-your-own-clover-api-oauth-app
3952
+ docs_connect: https://nango.dev/docs/api-integrations/clover/connect
3953
+ connection_config:
3954
+ authorizeHost:
3955
+ type: string
3956
+ title: Authorization Host
3957
+ description: The Clover authorization hostname for your region.
3958
+ example: www.clover.com
3959
+ pattern: '^(www\.clover\.com|www\.eu\.clover\.com|www\.la\.clover\.com|sandbox\.dev\.clover\.com)$'
3960
+ apiHost:
3961
+ type: string
3962
+ title: API Host
3963
+ description: The Clover API hostname for your region.
3964
+ example: api.clover.com
3965
+ pattern: '^(api\.clover\.com|api\.eu\.clover\.com|api\.la\.clover\.com|apisandbox\.dev\.clover\.com)$'
3966
+
3766
3967
  close:
3767
3968
  display_name: Close
3768
3969
  categories:
@@ -4061,20 +4262,27 @@ connectwise-psa:
4061
4262
  auth_mode: BASIC
4062
4263
  webhook_routing_script: connectwisePsaWebhookRouting
4063
4264
  proxy:
4064
- base_url: https://${connectionConfig.subdomain}.myconnectwise.net/v4_6_release/apis/3.0
4265
+ base_url: https://${connectionConfig.hostname}/v4_6_release/apis/3.0 || https://${connectionConfig.subdomain}.myconnectwise.net/v4_6_release/apis/3.0
4065
4266
  headers:
4066
4267
  accept: application/vnd.connectwise.com+json; version=${connectionConfig.apiVersion}
4067
4268
  clientid: ${connectionConfig.clientId}
4068
- docs: https://nango.dev/docs/integrations/all/connectwise-psa
4269
+ docs: https://nango.dev/docs/api-integrations/connectwise-psa
4270
+ docs_connect: https://nango.dev/docs/api-integrations/connectwise-psa/connect
4069
4271
  connection_config:
4070
- subdomain:
4272
+ hostname:
4071
4273
  type: string
4072
- title: ConnectWise PSA subdomain
4073
- description: The subdomain to connect to ConnectWise PSA
4074
- pattern: '^api-(au|eu|na)$'
4075
- example: api-au
4076
- suffix: .myconnectwise.net
4274
+ title: Hostname
4275
+ description: The full ConnectWise PSA hostname.
4276
+ example: api-na.myconnectwise.net
4277
+ format: hostname
4077
4278
  prefix: https://
4279
+ suffix: /v4_6_release/apis/3.0
4280
+ subdomain:
4281
+ type: string
4282
+ title: ''
4283
+ description: ''
4284
+ default_value: ''
4285
+ hidden: true # deprecating this in favor of hostname
4078
4286
  apiVersion:
4079
4287
  type: string
4080
4288
  title: Api version
@@ -4339,6 +4547,8 @@ coros:
4339
4547
 
4340
4548
  coros-sandbox:
4341
4549
  display_name: Coros (Sandbox)
4550
+ categories:
4551
+ - sports
4342
4552
  auth_mode: OAUTH2
4343
4553
  authorization_url: https://opentest.coros.com/oauth2/authorize
4344
4554
  token_url: https://opentest.coros.com/oauth2/accesstoken
@@ -4615,6 +4825,7 @@ dayforce:
4615
4825
  body_format: form
4616
4826
  proxy:
4617
4827
  base_url: https://${connectionConfig.clientHostname}/api || https://www.dayforcehcm.com/api
4828
+ forward_headers_on_redirect: true
4618
4829
  token_url: https://${connectionConfig.identityHostname}/connect/token || https://dfid.dayforcehcm.com/connect/token
4619
4830
  token_params:
4620
4831
  grant_type: password
@@ -4777,6 +4988,8 @@ deel:
4777
4988
 
4778
4989
  deel-sandbox:
4779
4990
  display_name: Deel (Sandbox)
4991
+ categories:
4992
+ - hr
4780
4993
  auth_mode: OAUTH2
4781
4994
  authorization_url: https://demo.deel.com/oauth2/authorize
4782
4995
  token_url: https://demo.deel.com/oauth2/tokens
@@ -5055,6 +5268,8 @@ docusign:
5055
5268
 
5056
5269
  docusign-sandbox:
5057
5270
  display_name: DocuSign (Sandbox)
5271
+ categories:
5272
+ - legal
5058
5273
  auth_mode: OAUTH2
5059
5274
  authorization_url: https://account-d.docusign.com/oauth/auth
5060
5275
  token_url: https://account-d.docusign.com/oauth/token
@@ -5479,6 +5694,8 @@ ecu360:
5479
5694
 
5480
5695
  ecu360-production:
5481
5696
  display_name: ECU360 (Production)
5697
+ categories:
5698
+ - other
5482
5699
  alias: ecu360
5483
5700
  token_url: https://apim.ecu360.com/auth/v1/authenticate
5484
5701
  proxy:
@@ -5611,6 +5828,8 @@ epic-games:
5611
5828
 
5612
5829
  evaluagent:
5613
5830
  display_name: EvaluAgent
5831
+ categories:
5832
+ - support
5614
5833
  auth_mode: BASIC
5615
5834
  proxy:
5616
5835
  base_url: https://${connectionConfig.region}.evaluagent.com
@@ -5987,6 +6206,30 @@ freeagent-sandbox:
5987
6206
  docs: https://nango.dev/docs/api-integrations/freeagent-sandbox
5988
6207
  setup_guide_url: https://nango.dev/docs/api-integrations/freeagent-sandbox/how-to-register-your-own-freeagent-oauth-app
5989
6208
 
6209
+ freepik:
6210
+ display_name: Freepik
6211
+ categories:
6212
+ - other
6213
+ auth_mode: API_KEY
6214
+ proxy:
6215
+ base_url: https://api.freepik.com
6216
+ headers:
6217
+ x-freepik-api-key: ${apiKey}
6218
+ verification:
6219
+ method: GET
6220
+ endpoints:
6221
+ - /v1/resources
6222
+ docs: https://nango.dev/docs/api-integrations/freepik
6223
+ docs_connect: https://nango.dev/docs/api-integrations/freepik/connect
6224
+ credentials:
6225
+ apiKey:
6226
+ type: string
6227
+ title: API Key
6228
+ description: The API Key for your Freepik account.
6229
+ doc_section: '#step-1-obtain-your-freepik-api-key'
6230
+ example: FPSXc7b3**********************5b2a
6231
+ pattern: 'FPSX[0-9a-f]{32}'
6232
+
5990
6233
  figjam:
5991
6234
  display_name: FigJam
5992
6235
  categories:
@@ -6133,6 +6376,8 @@ fireflies:
6133
6376
 
6134
6377
  firstbase:
6135
6378
  display_name: Firstbase
6379
+ categories:
6380
+ - hr
6136
6381
  auth_mode: API_KEY
6137
6382
  proxy:
6138
6383
  base_url: https://apipub.firstbasehq.com
@@ -7305,6 +7550,7 @@ google:
7305
7550
  response_path: items
7306
7551
  docs: https://nango.dev/docs/api-integrations/google
7307
7552
  setup_guide_url: https://nango.dev/docs/api-integrations/google/how-to-register-your-own-google-api-oauth-app
7553
+ webhook_routing_script: googleWebhookRouting
7308
7554
 
7309
7555
  google-analytics:
7310
7556
  display_name: Google Analytics
@@ -7391,6 +7637,26 @@ google-mail:
7391
7637
  docs: https://nango.dev/docs/api-integrations/google-mail
7392
7638
  setup_guide_url: https://nango.dev/docs/api-integrations/google-mail/how-to-register-your-own-gmail-api-oauth-app
7393
7639
 
7640
+ google-maps:
7641
+ display_name: Google Maps
7642
+ categories:
7643
+ - productivity
7644
+ auth_mode: API_KEY
7645
+ proxy:
7646
+ base_url: https://maps.googleapis.com
7647
+ query:
7648
+ key: ${apiKey}
7649
+ docs: https://nango.dev/docs/api-integrations/google-maps
7650
+ docs_connect: https://nango.dev/docs/api-integrations/google-maps/connect
7651
+ credentials:
7652
+ apiKey:
7653
+ type: string
7654
+ title: API Key
7655
+ description: Your Google Maps API Key.
7656
+ example: AIzaSyAY4P9A***************1YMSYBI
7657
+ pattern: ^AIza[0-9A-Za-z\-_]+$
7658
+ doc_section: '#step-3-obtain-your-google-maps-api-key'
7659
+
7394
7660
  google-search-console:
7395
7661
  display_name: Google Search Console
7396
7662
  alias: google
@@ -8079,6 +8345,8 @@ gusto:
8079
8345
 
8080
8346
  gusto-demo:
8081
8347
  display_name: Gusto (Demo)
8348
+ categories:
8349
+ - hr
8082
8350
  auth_mode: OAUTH2
8083
8351
  authorization_url: https://api.gusto-demo.com/oauth/authorize
8084
8352
  token_url: https://api.gusto-demo.com/oauth/token
@@ -8095,6 +8363,8 @@ gusto-demo:
8095
8363
 
8096
8364
  hackerrank-work:
8097
8365
  display_name: HackerRank Work
8366
+ categories:
8367
+ - ats
8098
8368
  auth_mode: BASIC
8099
8369
  proxy:
8100
8370
  base_url: https://www.hackerrank.com
@@ -8119,6 +8389,44 @@ hackerrank-work:
8119
8389
  default_value: ''
8120
8390
  hidden: true
8121
8391
 
8392
+ halo-psa:
8393
+ display_name: Halo PSA
8394
+ categories:
8395
+ - support
8396
+ - ticketing
8397
+ auth_mode: OAUTH2_CC
8398
+ token_url: https://${connectionConfig.hostname}/auth/token
8399
+ token_request_auth_method: basic
8400
+ scope_separator: ' '
8401
+ token_params:
8402
+ grant_type: client_credentials
8403
+ proxy:
8404
+ base_url: https://${connectionConfig.hostname}/api
8405
+ docs: https://nango.dev/docs/api-integrations/halo-psa
8406
+ docs_connect: https://nango.dev/docs/api-integrations/halo-psa/connect
8407
+ connection_config:
8408
+ hostname:
8409
+ type: string
8410
+ title: Hostname
8411
+ description: Your Halo PSA hostname.
8412
+ example: example.halopsa.com
8413
+ format: hostname
8414
+ prefix: https://
8415
+ doc_section: '#step-1-find-your-halo-api-details'
8416
+ order: 1
8417
+ credentials:
8418
+ client_id:
8419
+ type: string
8420
+ title: Client ID
8421
+ description: Your Halo PSA API application Client ID
8422
+ doc_section: '#step-3-create-an-api-application'
8423
+ client_secret:
8424
+ type: string
8425
+ title: Client Secret
8426
+ description: Your Halo PSA API application Client Secret
8427
+ secret: true
8428
+ doc_section: '#step-3-create-an-api-application'
8429
+
8122
8430
  harvest:
8123
8431
  display_name: Harvest
8124
8432
  categories:
@@ -8150,6 +8458,8 @@ harvest:
8150
8458
 
8151
8459
  health-gorilla:
8152
8460
  display_name: Health Gorilla
8461
+ categories:
8462
+ - other
8153
8463
  auth_mode: OAUTH2
8154
8464
  authorization_url: https://api.healthgorilla.com/oauth/authorize
8155
8465
  token_url: https://api.healthgorilla.com/oauth/token
@@ -9110,6 +9420,9 @@ jumpcloud:
9110
9420
 
9111
9421
  helpscout-docs:
9112
9422
  display_name: Help Scout Docs
9423
+ categories:
9424
+ - knowledge-base
9425
+ - support
9113
9426
  auth_mode: BASIC
9114
9427
  proxy:
9115
9428
  retry:
@@ -9140,6 +9453,8 @@ helpscout-docs:
9140
9453
 
9141
9454
  helpscout-mailbox:
9142
9455
  display_name: Help Scout Mailbox
9456
+ categories:
9457
+ - support
9143
9458
  auth_mode: OAUTH2
9144
9459
  authorization_url: https://secure.helpscout.net/authentication/authorizeClientApplication
9145
9460
  token_url: https://api.helpscout.net/v2/oauth2/token
@@ -9632,6 +9947,8 @@ lever-basic:
9632
9947
 
9633
9948
  lever-sandbox:
9634
9949
  display_name: Lever (OAuth Sandbox)
9950
+ categories:
9951
+ - ats
9635
9952
  auth_mode: OAUTH2
9636
9953
  authorization_url: https://sandbox-lever.auth0.com/authorize
9637
9954
  token_url: https://sandbox-lever.auth0.com/oauth/token
@@ -9645,6 +9962,8 @@ lever-sandbox:
9645
9962
 
9646
9963
  lever-basic-sandbox:
9647
9964
  display_name: Lever (Basic Auth Sandbox))
9965
+ categories:
9966
+ - ats
9648
9967
  auth_mode: BASIC
9649
9968
  proxy:
9650
9969
  base_url: https://api.sandbox.lever.co
@@ -9759,6 +10078,8 @@ linkedin:
9759
10078
 
9760
10079
  linkhut:
9761
10080
  display_name: LinkHut
10081
+ categories:
10082
+ - social
9762
10083
  auth_mode: OAUTH2
9763
10084
  authorization_url: https://ln.ht/_/oauth/authorize
9764
10085
  token_url: https://api.ln.ht/v1/oauth/token
@@ -9990,6 +10311,31 @@ listmonk:
9990
10311
  description: The token to your Listmonk account
9991
10312
  secret: true
9992
10313
 
10314
+ listrak:
10315
+ display_name: Listrak
10316
+ categories:
10317
+ - marketing
10318
+ auth_mode: OAUTH2_CC
10319
+ token_url: https://auth.listrak.com/oauth2/token
10320
+ token_params:
10321
+ grant_type: client_credentials
10322
+ proxy:
10323
+ base_url: https://api.listrak.com/email
10324
+ docs: https://nango.dev/docs/api-integrations/listrak
10325
+ docs_connect: https://nango.dev/docs/api-integrations/listrak/connect
10326
+ credentials:
10327
+ client_id:
10328
+ type: string
10329
+ title: Client ID
10330
+ description: Your Listrak API Client ID
10331
+ doc_section: '#step-1-create-api-credentials'
10332
+ client_secret:
10333
+ type: string
10334
+ title: Client Secret
10335
+ description: Your Listrak API Client Secret
10336
+ secret: true
10337
+ doc_section: '#step-1-create-api-credentials'
10338
+
9993
10339
  make:
9994
10340
  display_name: Make
9995
10341
  categories:
@@ -10147,6 +10493,8 @@ manatal:
10147
10493
 
10148
10494
  marketo:
10149
10495
  display_name: Marketo
10496
+ categories:
10497
+ - marketing
10150
10498
  auth_mode: OAUTH2_CC
10151
10499
  proxy:
10152
10500
  base_url: https://${connectionConfig.endpointURL}
@@ -10392,13 +10740,13 @@ microsoft-teams-bot:
10392
10740
  botHostTenantId: ${connectionConfig.botHostTenantId}
10393
10741
  webhook_routing_script: microsoftTeamsWebhookRouting
10394
10742
  post_connection_script: microsoftTeamsBotPostConnection
10395
- docs: https://nango.dev/docs/integrations/all/microsoft-teams-bot
10396
- docs_connect: https://nango.dev/docs/integrations/all/microsoft-teams-bot/connect
10743
+ docs: https://nango.dev/docs/api-integrations/microsoft-teams-bot
10744
+ docs_connect: https://nango.dev/docs/api-integrations/microsoft-teams-bot/connect
10397
10745
  connection_config:
10398
10746
  tenantId:
10399
10747
  type: string
10400
10748
  title: Tenant ID
10401
- description: The unique identifier for the Azure AD tenant
10749
+ description: The unique identifier for your Microsoft Entra ID tenant.
10402
10750
  format: uuid
10403
10751
  example: a1b2c3d4-e5f6-47a8-9b0c-d1234567890f
10404
10752
  doc_section: '#step-1-finding-your-tenant-id'
@@ -11058,6 +11406,8 @@ mural:
11058
11406
 
11059
11407
  nationbuilder:
11060
11408
  display_name: NationBuilder
11409
+ categories:
11410
+ - crm
11061
11411
  auth_mode: OAUTH2
11062
11412
  authorization_url: https://${connectionConfig.accountId}.nationbuilder.com/oauth/authorize
11063
11413
  token_url: https://${connectionConfig.accountId}.nationbuilder.com/oauth/token
@@ -11220,6 +11570,9 @@ netsuite-tba:
11220
11570
 
11221
11571
  next-cloud-ocs:
11222
11572
  display_name: Next Cloud OCS
11573
+ categories:
11574
+ - storage
11575
+ - productivity
11223
11576
  auth_mode: BASIC
11224
11577
  proxy:
11225
11578
  base_url: https://${connectionConfig.domain}/ocs/v1.php
@@ -11730,12 +12083,56 @@ oomnitza:
11730
12083
  description: Your Oomnitza API token
11731
12084
  doc_section: '#step-2-generating-your-api-token'
11732
12085
 
11733
- openai:
11734
- display_name: OpenAI
12086
+ orange-logic:
12087
+ display_name: Orange Logic
11735
12088
  categories:
11736
- - productivity
11737
- - dev-tools
11738
- auth_mode: API_KEY
12089
+ - storage
12090
+ auth_mode: TWO_STEP
12091
+ body_format: json
12092
+ token_url: https://${connectionConfig.serverUrl}/webapi/security/clientcredentialsauthentication/authenticate_46H_v1
12093
+ token_params:
12094
+ client_id: ${credentials.clientId}
12095
+ client_secret: ${credentials.clientSecret}
12096
+ token_headers:
12097
+ content-type: application/json
12098
+ accept: application/json
12099
+ token_response:
12100
+ token: access_token
12101
+ token_expiration: expires_in
12102
+ token_expiration_strategy: expireIn
12103
+ proxy:
12104
+ base_url: https://${connectionConfig.serverUrl}
12105
+ docs: https://nango.dev/docs/api-integrations/orange-logic
12106
+ docs_connect: https://nango.dev/docs/api-integrations/orange-logic/connect
12107
+ credentials:
12108
+ clientId:
12109
+ type: string
12110
+ title: Client ID
12111
+ description: The Client ID from your Orange Logic OAuth 2.0 Client Credentials.
12112
+ doc_section: '#step-2-obtain-client-credentials'
12113
+ clientSecret:
12114
+ type: string
12115
+ title: Client Secret
12116
+ description: The Client Secret from your Orange Logic OAuth 2.0 Client Credentials.
12117
+ secret: true
12118
+ doc_section: '#step-2-obtain-client-credentials'
12119
+ connection_config:
12120
+ serverUrl:
12121
+ type: string
12122
+ title: Orange Logic Server URL
12123
+ description: The base URL of your Orange Logic instance
12124
+ example: mycompany.orangelogic.com
12125
+ format: hostname
12126
+ prefix: https://
12127
+ order: 1
12128
+ doc_section: '#step-1-find-your-orange-logic-url'
12129
+
12130
+ openai:
12131
+ display_name: OpenAI
12132
+ categories:
12133
+ - productivity
12134
+ - dev-tools
12135
+ auth_mode: API_KEY
11739
12136
  proxy:
11740
12137
  base_url: https://api.openai.com
11741
12138
  headers:
@@ -12320,6 +12717,8 @@ paypal:
12320
12717
 
12321
12718
  paypal-sandbox:
12322
12719
  display_name: Paypal (Sandbox)
12720
+ categories:
12721
+ - payment
12323
12722
  auth_mode: OAUTH2
12324
12723
  authorization_url: https://www.sandbox.paypal.com/signin/authorize
12325
12724
  token_url: https://api-m.sandbox.paypal.com/v1/oauth2/token
@@ -12379,6 +12778,34 @@ pendo:
12379
12778
  description: The API key for your Pendo account
12380
12779
  doc_section: '#step-1-finding-pendo-api-key'
12381
12780
 
12781
+ pendo-oauth:
12782
+ display_name: Pendo (OAuth)
12783
+ categories:
12784
+ - analytics
12785
+ auth_mode: OAUTH2_CC
12786
+ token_url: https://app.pendo.io/oauth/v1/token
12787
+ token_params:
12788
+ grant_type: client_credentials
12789
+ default_scopes:
12790
+ - read:me
12791
+ body_format: form
12792
+ proxy:
12793
+ base_url: https://app.pendo.io
12794
+ docs: https://nango.dev/docs/api-integrations/pendo-oauth
12795
+ docs_connect: https://nango.dev/docs/api-integrations/pendo-oauth/connect
12796
+ credentials:
12797
+ client_id:
12798
+ type: string
12799
+ title: Client ID
12800
+ description: Your Pendo OAuth client ID
12801
+ doc_section: '#step-1-finding-your-pendo-oauth-credentials'
12802
+ client_secret:
12803
+ type: string
12804
+ title: Client Secret
12805
+ description: Your Pendo OAuth client secret
12806
+ secret: true
12807
+ doc_section: '#step-1-finding-your-pendo-oauth-credentials'
12808
+
12382
12809
  pennylane:
12383
12810
  display_name: Pennylane
12384
12811
  categories:
@@ -13035,8 +13462,44 @@ prospeo:
13035
13462
  pattern: '^[a-f0-9]{32}$'
13036
13463
  doc_section: '#step-1-finding-your-api-key'
13037
13464
 
13465
+ prtg-classic:
13466
+ display_name: PRTG Classic
13467
+ categories:
13468
+ - support
13469
+ auth_mode: API_KEY
13470
+ proxy:
13471
+ base_url: https://${connectionConfig.host}
13472
+ query:
13473
+ apitoken: ${apiKey}
13474
+ verification:
13475
+ method: GET
13476
+ endpoints:
13477
+ - /api/table.json?content=sensors&count=1
13478
+ docs: https://nango.dev/docs/api-integrations/prtg-classic
13479
+ docs_connect: https://nango.dev/docs/api-integrations/prtg-classic/connect
13480
+ connection_config:
13481
+ host:
13482
+ type: string
13483
+ title: Instance Host
13484
+ description: The host of your PRTG instance
13485
+ pattern: '^[A-Za-z0-9.-]+(:\d+)?$'
13486
+ example: monitor.example.com
13487
+ prefix: https://
13488
+ doc_section: '#step-1-finding-your-instance-host'
13489
+ order: 1
13490
+ credentials:
13491
+ apiKey:
13492
+ type: string
13493
+ title: API Key
13494
+ description: The API key for your PRTG account
13495
+ pattern: '^[A-Z2-7]+=*$'
13496
+ example: RUTOWB5KVJCMEOWHL5MLUWMA324UGNDLPS6JKLTEDT======
13497
+ doc_section: '#step-2-finding-your-api-key'
13498
+
13038
13499
  private-api-bearer:
13039
13500
  display_name: Private API (Bearer Auth)
13501
+ categories:
13502
+ - other
13040
13503
  auth_mode: API_KEY
13041
13504
  proxy:
13042
13505
  headers:
@@ -13052,6 +13515,8 @@ private-api-bearer:
13052
13515
 
13053
13516
  private-api-basic:
13054
13517
  display_name: Private API (Basic Auth)
13518
+ categories:
13519
+ - other
13055
13520
  auth_mode: BASIC
13056
13521
  proxy:
13057
13522
  base_url: https://my-private-api
@@ -13356,6 +13821,8 @@ quickbooks:
13356
13821
  quickbooks-sandbox:
13357
13822
  alias: quickbooks
13358
13823
  display_name: Quickbooks (Sandbox)
13824
+ categories:
13825
+ - accounting
13359
13826
  proxy:
13360
13827
  connection_config:
13361
13828
  realmId: ${connectionConfig.realmId}
@@ -13411,6 +13878,8 @@ ramp:
13411
13878
 
13412
13879
  ramp-sandbox:
13413
13880
  display_name: Ramp (Sandbox)
13881
+ categories:
13882
+ - banking
13414
13883
  auth_mode: OAUTH2
13415
13884
  authorization_url: https://demo.ramp.com/v1/authorize
13416
13885
  token_url: https://demo-api.ramp.com/developer/v1/token
@@ -13764,6 +14233,8 @@ refiner:
13764
14233
 
13765
14234
  replicate:
13766
14235
  display_name: Replicate
14236
+ categories:
14237
+ - dev-tools
13767
14238
  auth_mode: API_KEY
13768
14239
  proxy:
13769
14240
  headers:
@@ -13925,6 +14396,8 @@ ring-central:
13925
14396
 
13926
14397
  ring-central-sandbox:
13927
14398
  display_name: RingCentral (Sandbox)
14399
+ categories:
14400
+ - communication
13928
14401
  auth_mode: OAUTH2
13929
14402
  authorization_url: https://platform.devtest.ringcentral.com/restapi/oauth/authorize
13930
14403
  token_url: https://platform.devtest.ringcentral.com/restapi/oauth/token
@@ -14424,6 +14897,8 @@ salesforce-jwt:
14424
14897
 
14425
14898
  salesforce-sandbox:
14426
14899
  display_name: Salesforce (Sandbox)
14900
+ categories:
14901
+ - crm
14427
14902
  auth_mode: OAUTH2
14428
14903
  authorization_url: https://test.salesforce.com/services/oauth2/authorize
14429
14904
  token_url: https://test.salesforce.com/services/oauth2/token
@@ -14446,6 +14921,8 @@ salesforce-sandbox:
14446
14921
 
14447
14922
  salesforce-experience-cloud:
14448
14923
  display_name: Salesforce Experience Cloud
14924
+ categories:
14925
+ - crm
14449
14926
  auth_mode: OAUTH2
14450
14927
  authorization_url: https://${connectionConfig.subdomain}.my.site.com/services/oauth2/authorize
14451
14928
  token_url: https://${connectionConfig.subdomain}.my.site.com/services/oauth2/token
@@ -14714,6 +15191,7 @@ sap-success-factors:
14714
15191
  assertion: ${credentials.assertion}
14715
15192
  new_token: true
14716
15193
  assertion:
15194
+ type: saml
14717
15195
  key: ${assertionOption.privateKey}
14718
15196
  issuer: www.successfactors.com
14719
15197
  lifetimeInSeconds: '315360000'
@@ -14939,6 +15417,40 @@ semrush:
14939
15417
  description: Your Semrush API key
14940
15418
  doc_section: '#step-1-finding-your-api-key'
14941
15419
 
15420
+ sentinelone:
15421
+ display_name: SentinelOne
15422
+ categories:
15423
+ - dev-tools
15424
+ auth_mode: API_KEY
15425
+ proxy:
15426
+ base_url: https://${connectionConfig.hostname}
15427
+ headers:
15428
+ authorization: ApiToken ${apiKey}
15429
+ accept: application/json
15430
+ content-type: application/json
15431
+ verification:
15432
+ method: GET
15433
+ endpoints:
15434
+ - /web/api/v2.1/sites?limit=1
15435
+ docs: https://nango.dev/docs/api-integrations/sentinelone
15436
+ docs_connect: https://nango.dev/docs/api-integrations/sentinelone/connect
15437
+ connection_config:
15438
+ hostname:
15439
+ type: string
15440
+ title: Hostname
15441
+ description: The hostname of your SentinelOne management console
15442
+ format: hostname
15443
+ prefix: https://
15444
+ example: your-tenant.sentinelone.net
15445
+ doc_section: '#step-2-find-your-hostname'
15446
+ order: 1
15447
+ credentials:
15448
+ apiKey:
15449
+ type: string
15450
+ title: API Token
15451
+ description: The API token for your SentinelOne service user
15452
+ doc_section: '#step-1-generate-your-api-token'
15453
+
14942
15454
  sentry:
14943
15455
  display_name: Sentry
14944
15456
  categories:
@@ -15394,6 +15906,43 @@ sharepoint-online-v1:
15394
15906
  secret: true
15395
15907
  doc_section: '#step-4-generating-your-client-assertion'
15396
15908
 
15909
+ shipbob-pat:
15910
+ display_name: ShipBob (Personal Access Token)
15911
+ categories:
15912
+ - e-commerce
15913
+ auth_mode: API_KEY
15914
+ proxy:
15915
+ base_url: https://${connectionConfig.apiSubdomain}.shipbob.com
15916
+ headers:
15917
+ authorization: Bearer ${apiKey}
15918
+ retry:
15919
+ after:
15920
+ - 'x-retry-after'
15921
+ verification:
15922
+ method: GET
15923
+ endpoints:
15924
+ - /2026-01/channel
15925
+ docs: https://nango.dev/docs/api-integrations/shipbob-pat
15926
+ docs_connect: https://nango.dev/docs/api-integrations/shipbob-pat/connect
15927
+ connection_config:
15928
+ apiSubdomain:
15929
+ type: string
15930
+ title: API Subdomain
15931
+ description: The ShipBob API subdomain of the environment you want to connect to.
15932
+ example: api
15933
+ pattern: '^(api|sandbox-api)$'
15934
+ prefix: https://
15935
+ suffix: .shipbob.com
15936
+ doc_section: '#step-2-identify-your-api-subdomain'
15937
+ credentials:
15938
+ apiKey:
15939
+ type: string
15940
+ title: Personal Access Token
15941
+ description: Your ShipBob Personal Access Token
15942
+ example: 6E4647BB**************************806E464161FBB996DD8E87EEA86DB926-1
15943
+ pattern: '^[A-F0-9]{64}-\d+$'
15944
+ doc_section: '#step-1-generate-your-token'
15945
+
15397
15946
  shipstation:
15398
15947
  display_name: Shipstation (v1)
15399
15948
  categories:
@@ -15486,6 +16035,44 @@ shopify:
15486
16035
  prefix: https://
15487
16036
  doc_section: '#step-1-finding-your-shopify-domain'
15488
16037
 
16038
+ shopify-cc:
16039
+ display_name: Shopify (Client Credentials)
16040
+ categories:
16041
+ - e-commerce
16042
+ auth_mode: OAUTH2_CC
16043
+ token_url: https://${connectionConfig.subdomain}.myshopify.com/admin/oauth/access_token
16044
+ token_params:
16045
+ grant_type: client_credentials
16046
+ proxy:
16047
+ base_url: https://${connectionConfig.subdomain}.myshopify.com
16048
+ headers:
16049
+ x-shopify-access-token: ${accessToken}
16050
+ docs: https://nango.dev/docs/api-integrations/shopify-cc
16051
+ docs_connect: https://nango.dev/docs/api-integrations/shopify-cc/connect
16052
+ connection_config:
16053
+ subdomain:
16054
+ type: string
16055
+ title: Shopify Store Domain
16056
+ description: The subdomain of the Shopify store the app is installed in.
16057
+ pattern: '^[a-z0-9_-]+$'
16058
+ example: my-store
16059
+ suffix: .myshopify.com
16060
+ prefix: https://
16061
+ order: 1
16062
+ doc_section: '#step-2-find-your-shopify-store-domain'
16063
+ credentials:
16064
+ client_id:
16065
+ type: string
16066
+ title: Client ID
16067
+ description: The Client ID for your Shopify app.
16068
+ doc_section: '#step-1-generating-your-client-credentials'
16069
+ client_secret:
16070
+ type: string
16071
+ title: Client Secret
16072
+ description: The Client Secret for your Shopify app.
16073
+ secret: true
16074
+ doc_section: '#step-1-generating-your-client-credentials'
16075
+
15489
16076
  shopify-api-key:
15490
16077
  display_name: Shopify (API Key)
15491
16078
  categories:
@@ -15786,6 +16373,8 @@ sophos-central:
15786
16373
 
15787
16374
  smartrecruiters-api-key:
15788
16375
  display_name: Smartrecruiters
16376
+ categories:
16377
+ - ats
15789
16378
  auth_mode: API_KEY
15790
16379
  proxy:
15791
16380
  base_url: https://api.smartrecruiters.com
@@ -15806,6 +16395,8 @@ smartrecruiters-api-key:
15806
16395
 
15807
16396
  smartsheet:
15808
16397
  display_name: Smartsheet
16398
+ categories:
16399
+ - productivity
15809
16400
  auth_mode: OAUTH2
15810
16401
  authorization_url: https://app.smartsheet.com/b/authorize
15811
16402
  token_url: https://api.${connectionConfig.domain}/2.0/token
@@ -15830,6 +16421,8 @@ smartsheet:
15830
16421
 
15831
16422
  smugmug:
15832
16423
  display_name: Smugmug
16424
+ categories:
16425
+ - storage
15833
16426
  auth_mode: OAUTH1
15834
16427
  request_url: https://api.smugmug.com/services/oauth/1.0a/getRequestToken
15835
16428
  authorization_url: https://api.smugmug.com/services/oauth/1.0a/authorize
@@ -16096,6 +16689,26 @@ statista:
16096
16689
  pattern: '^[a-zA-Z0-9]+$'
16097
16690
  doc_section: '#step-1-finding-your-api-key'
16098
16691
 
16692
+ stay-ai:
16693
+ display_name: Stay AI
16694
+ categories:
16695
+ - e-commerce
16696
+ auth_mode: API_KEY
16697
+ proxy:
16698
+ base_url: https://api.retextion.com/api
16699
+ headers:
16700
+ x-retextion-access-token: ${apiKey}
16701
+ docs: https://nango.dev/docs/api-integrations/stay-ai
16702
+ docs_connect: https://nango.dev/docs/api-integrations/stay-ai/connect
16703
+ credentials:
16704
+ apiKey:
16705
+ type: string
16706
+ title: API Key
16707
+ description: Your Stay AI API key.
16708
+ example: 7k9***f-***da3e-***hjtb-***22cy
16709
+ pattern: '^[a-z0-9]{7}-[a-z0-9]{7}-[a-z0-9]{7}-[a-z0-9]{7}$'
16710
+ doc_section: '#step-1-create-a-new-api-key'
16711
+
16099
16712
  strava:
16100
16713
  display_name: Strava (Mobile)
16101
16714
  categories:
@@ -16208,6 +16821,8 @@ stripe-app:
16208
16821
 
16209
16822
  stripe-app-sandbox:
16210
16823
  display_name: Stripe App (Sandbox)
16824
+ categories:
16825
+ - payment
16211
16826
  auth_mode: OAUTH2
16212
16827
  authorization_url: https://marketplace.stripe.com/oauth/v2/${connectionConfig.appDomain}/authorize
16213
16828
  token_url: https://api.stripe.com/v1/oauth/token
@@ -16875,6 +17490,29 @@ tremendous-sandbox:
16875
17490
  base_url: https://testflight.tremendous.com/api/v2
16876
17491
  docs: https://nango.dev/docs/integrations/all/tremendous-sandbox
16877
17492
 
17493
+ perk:
17494
+ display_name: Perk
17495
+ categories:
17496
+ - productivity
17497
+ auth_mode: OAUTH2
17498
+ authorization_url: https://app.travelperk.com/oauth2/authorize/
17499
+ token_url: https://app.travelperk.com/accounts/oauth2/token/
17500
+ disable_pkce: true
17501
+ scope_separator: ' '
17502
+ authorization_params:
17503
+ response_type: code
17504
+ token_params:
17505
+ grant_type: authorization_code
17506
+ refresh_params:
17507
+ grant_type: refresh_token
17508
+ proxy:
17509
+ base_url: https://api.travelperk.com
17510
+ retry:
17511
+ after:
17512
+ - 'retry-after'
17513
+ docs: https://nango.dev/docs/api-integrations/perk
17514
+ setup_guide_url: https://nango.dev/docs/api-integrations/perk/how-to-register-your-own-perk-api-oauth-app
17515
+
16878
17516
  trello:
16879
17517
  display_name: Trello
16880
17518
  categories:
@@ -17220,6 +17858,8 @@ twitter-oauth2-cc:
17220
17858
 
17221
17859
  twinfield:
17222
17860
  display_name: Twinfield
17861
+ categories:
17862
+ - accounting
17223
17863
  auth_mode: OAUTH2
17224
17864
  authorization_url: https://login.twinfield.com/auth/authentication/connect/authorize
17225
17865
  token_url: https://login.twinfield.com/auth/authentication/connect/token
@@ -17416,6 +18056,8 @@ typefully-v2:
17416
18056
 
17417
18057
  uber:
17418
18058
  display_name: Uber
18059
+ categories:
18060
+ - other
17419
18061
  auth_mode: OAUTH2
17420
18062
  authorization_url: https://login.uber.com/oauth/v2/authorize
17421
18063
  token_url: https://login.uber.com/oauth/v2/token
@@ -17641,6 +18283,8 @@ unanet:
17641
18283
 
17642
18284
  unauthenticated:
17643
18285
  display_name: Unauthenticated
18286
+ categories:
18287
+ - other
17644
18288
  auth_mode: NONE
17645
18289
  webhook_routing_script: unauthenticatedWebhookRouting
17646
18290
  docs: https://nango.dev/docs/integrations/all/unauthenticated
@@ -18078,6 +18722,8 @@ whoop:
18078
18722
 
18079
18723
  wildix-pbx:
18080
18724
  display_name: Wildix PBX
18725
+ categories:
18726
+ - communication
18081
18727
  auth_mode: OAUTH2
18082
18728
  authorization_url: https://${connectionConfig.subdomain}.wildixin.com/authorization/oauth2
18083
18729
  token_url: https://${connectionConfig.subdomain}.wildixin.com/authorization/oauth2Token
@@ -18302,6 +18948,28 @@ workday:
18302
18948
  description: Workday API Password
18303
18949
  doc_section: '#step-5-finding-your-password'
18304
18950
 
18951
+ workday-adaptive-planning-basic:
18952
+ display_name: Workday Adaptive Planning (Basic Auth)
18953
+ categories:
18954
+ - accounting
18955
+ auth_mode: BASIC
18956
+ proxy:
18957
+ base_url: https://api.adaptiveplanning.com/api/rest
18958
+ docs: https://nango.dev/docs/api-integrations/workday-adaptive-planning-basic
18959
+ docs_connect: https://nango.dev/docs/api-integrations/workday-adaptive-planning-basic/connect
18960
+ credentials:
18961
+ username:
18962
+ type: string
18963
+ title: Username
18964
+ description: Your Workday Adaptive Planning username.
18965
+ doc_section: '#step-1-find-your-username-and-password'
18966
+ password:
18967
+ type: string
18968
+ title: Password
18969
+ description: Your Workday Adaptive Planning password.
18970
+ secret: true
18971
+ doc_section: '#step-1-find-your-username-and-password'
18972
+
18305
18973
  workday-oauth:
18306
18974
  display_name: Workday (OAuth)
18307
18975
  categories:
@@ -18429,6 +19097,97 @@ workday-refresh-token:
18429
19097
  secret: true
18430
19098
  doc_section: '#step-4-generating-a-refresh-token'
18431
19099
 
19100
+ workday-adaptive-planning:
19101
+ display_name: Workday Adaptive Planning
19102
+ categories:
19103
+ - accounting
19104
+ auth_mode: TWO_STEP
19105
+ body_format: form
19106
+ token_url: https://${connectionConfig.host}/ccx/oauth2/${connectionConfig.tenant}/token
19107
+ token_params:
19108
+ grant_type: urn:ietf:params:oauth:grant-type:jwt-bearer
19109
+ assertion: ${credentials.assertion}
19110
+ token_headers:
19111
+ content-type: application/x-www-form-urlencoded
19112
+ assertion:
19113
+ type: jwt
19114
+ key: ${credentials.privateKey}
19115
+ lifetimeInSeconds: 300
19116
+ header:
19117
+ alg: RS256
19118
+ typ: JWT
19119
+ payload:
19120
+ iss: ${credentials.clientId}
19121
+ sub: ${credentials.isu}
19122
+ aud: wd
19123
+ additional_steps:
19124
+ - token_request_method: GET
19125
+ token_url: https://${connectionConfig.host}/ccx/api/planning/v1/${connectionConfig.tenant}/adaptiveAPIAccessToken
19126
+ token_headers:
19127
+ authorization: Bearer ${step1.access_token}
19128
+ token_response:
19129
+ token: adaptiveAPIAccessToken
19130
+ proxy:
19131
+ base_url: https://api.adaptiveplanning.com
19132
+ docs: https://nango.dev/docs/api-integrations/workday-adaptive-planning
19133
+ docs_connect: https://nango.dev/docs/api-integrations/workday-adaptive-planning/connect
19134
+ connection_config:
19135
+ host:
19136
+ type: string
19137
+ title: Host
19138
+ description: The hostname of your Workday account.
19139
+ format: hostname
19140
+ example: wd3-impl-services1.workday.com
19141
+ prefix: https://
19142
+ order: 1
19143
+ tenant:
19144
+ type: string
19145
+ title: Tenant
19146
+ description: The tenant of your Workday account.
19147
+ example: mytenant
19148
+ order: 2
19149
+ credentials:
19150
+ clientId:
19151
+ type: string
19152
+ title: Client ID
19153
+ description: The Client ID from the Workday API Client registration.
19154
+ isu:
19155
+ type: string
19156
+ title: ISU Username
19157
+ description: The Integration System User (ISU) username.
19158
+ assertion:
19159
+ type: string
19160
+ title: ''
19161
+ description: ''
19162
+ automated: true
19163
+ privateKey:
19164
+ type: string
19165
+ title: Private Key
19166
+ description: The RSA private key (PEM format) used to sign the JWT.
19167
+ secret: true
19168
+
19169
+ workpath:
19170
+ display_name: Workpath
19171
+ categories:
19172
+ - productivity
19173
+ auth_mode: API_KEY
19174
+ proxy:
19175
+ base_url: https://connect.workpath.com/api
19176
+ headers:
19177
+ authorization: Bearer ${apiKey}
19178
+ verification:
19179
+ method: GET
19180
+ endpoints:
19181
+ - /v3/kpis
19182
+ docs: https://nango.dev/docs/api-integrations/workpath
19183
+ docs_connect: https://nango.dev/docs/api-integrations/workpath/connect
19184
+ credentials:
19185
+ apiKey:
19186
+ type: string
19187
+ title: API Token
19188
+ description: Your Workpath API Token.
19189
+ doc_section: '#step-1-getting-your-api-token'
19190
+
18432
19191
  wrike:
18433
19192
  display_name: Wrike
18434
19193
  categories:
@@ -18654,6 +19413,8 @@ zapier:
18654
19413
 
18655
19414
  zapier-nla:
18656
19415
  display_name: Zapier NLA
19416
+ categories:
19417
+ - productivity
18657
19418
  auth_mode: OAUTH2
18658
19419
  authorization_url: https://nla.zapier.com/oauth/authorize/
18659
19420
  token_url: https://nla.zapier.com/oauth/token/
@@ -18798,6 +19559,8 @@ zoho:
18798
19559
 
18799
19560
  zoho-books:
18800
19561
  display_name: Zoho Books
19562
+ categories:
19563
+ - accounting
18801
19564
  alias: zoho
18802
19565
  docs: https://nango.dev/docs/integrations/all/zoho-books
18803
19566
  docs_connect: https://nango.dev/docs/integrations/all/zoho-books/connect
@@ -18814,6 +19577,8 @@ zoho-books:
18814
19577
 
18815
19578
  zoho-crm:
18816
19579
  display_name: Zoho CRM
19580
+ categories:
19581
+ - crm
18817
19582
  alias: zoho
18818
19583
  docs: https://nango.dev/docs/api-integrations/zoho-crm
18819
19584
  setup_guide_url: https://nango.dev/docs/api-integrations/zoho-crm/how-to-register-your-own-zoho-crm-api-oauth-app
@@ -18929,6 +19694,8 @@ zoho-mail:
18929
19694
 
18930
19695
  zoho-bigin:
18931
19696
  display_name: Zoho Bigin
19697
+ categories:
19698
+ - crm
18932
19699
  alias: zoho
18933
19700
  docs: https://nango.dev/docs/integrations/all/zoho-bigin
18934
19701
  docs_connect: https://nango.dev/docs/integrations/all/zoho-bigin/connect
@@ -19055,6 +19822,34 @@ snipe-it:
19055
19822
  doc_section: '#step-2-finding-your-domain'
19056
19823
  order: 1
19057
19824
 
19825
+ zorus:
19826
+ display_name: Zorus
19827
+ categories:
19828
+ - other
19829
+ auth_mode: API_KEY
19830
+ proxy:
19831
+ base_url: https://developer.zorustech.com
19832
+ headers:
19833
+ authorization: Impersonation ${apiKey}
19834
+ zorus-api-version: '1.0'
19835
+ verification:
19836
+ method: POST
19837
+ headers:
19838
+ content-type: application/json
19839
+ endpoints:
19840
+ - /api/customers/search
19841
+ data: { 'page': 1, 'pageSize': 1 }
19842
+ docs: https://nango.dev/docs/api-integrations/zorus
19843
+ docs_connect: https://nango.dev/docs/api-integrations/zorus/connect
19844
+ credentials:
19845
+ apiKey:
19846
+ type: string
19847
+ title: API Token
19848
+ description: The API token generated from the Zorus Portal.
19849
+ doc_section: '#step-1-generating-your-api-token'
19850
+ example: 1_a1b2c3d4-e5f6-7890-abcd-1234567890ab
19851
+ pattern: '^[0-9]+_[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}$'
19852
+
19058
19853
  zuora:
19059
19854
  display_name: Zuora
19060
19855
  categories: