@nangohq/providers 0.69.30 → 0.69.32
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 +444 -24
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nangohq/providers",
|
|
3
|
-
"version": "0.69.
|
|
3
|
+
"version": "0.69.32",
|
|
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.32",
|
|
20
20
|
"vitest": "3.2.4"
|
|
21
21
|
},
|
|
22
22
|
"files": [
|
package/providers.yaml
CHANGED
|
@@ -2765,6 +2765,27 @@ cal-com-v2:
|
|
|
2765
2765
|
example: cal_xxxxxx
|
|
2766
2766
|
doc_section: '#step-1-finding-your-api-key'
|
|
2767
2767
|
|
|
2768
|
+
cal-com-oauth:
|
|
2769
|
+
display_name: Cal.com (OAuth)
|
|
2770
|
+
categories:
|
|
2771
|
+
- productivity
|
|
2772
|
+
auth_mode: OAUTH2
|
|
2773
|
+
body_format: json
|
|
2774
|
+
authorization_url: https://app.cal.com/auth/oauth2/authorize
|
|
2775
|
+
token_url: https://api.cal.com/v2/auth/oauth2/token
|
|
2776
|
+
disable_pkce: true
|
|
2777
|
+
token_params:
|
|
2778
|
+
grant_type: authorization_code
|
|
2779
|
+
refresh_params:
|
|
2780
|
+
grant_type: refresh_token
|
|
2781
|
+
proxy:
|
|
2782
|
+
base_url: https://api.cal.com
|
|
2783
|
+
retry:
|
|
2784
|
+
at:
|
|
2785
|
+
- 'x-ratelimit-reset'
|
|
2786
|
+
docs: https://nango.dev/docs/api-integrations/cal-com-oauth
|
|
2787
|
+
setup_guide_url: https://nango.dev/docs/api-integrations/cal-com-oauth/how-to-register-your-own-cal-com-oauth-app
|
|
2788
|
+
|
|
2768
2789
|
calendly:
|
|
2769
2790
|
display_name: Calendly
|
|
2770
2791
|
categories:
|
|
@@ -2842,6 +2863,32 @@ canny:
|
|
|
2842
2863
|
example: a1f5937c-82df-bd29-4e3a-7b6fda8c54d1
|
|
2843
2864
|
pattern: '^[a-zA-Z0-9-]+$'
|
|
2844
2865
|
doc_section: '#step-1-finding-your-api-key'
|
|
2866
|
+
|
|
2867
|
+
candis:
|
|
2868
|
+
display_name: Candis
|
|
2869
|
+
categories:
|
|
2870
|
+
- accounting
|
|
2871
|
+
auth_mode: OAUTH2
|
|
2872
|
+
authorization_url: https://id.my.candis.io/auth/realms/candis/protocol/openid-connect/auth
|
|
2873
|
+
token_url: https://id.my.candis.io/auth/realms/candis/protocol/openid-connect/token
|
|
2874
|
+
token_request_auth_method: basic
|
|
2875
|
+
scope_separator: ' '
|
|
2876
|
+
disable_pkce: true
|
|
2877
|
+
authorization_params:
|
|
2878
|
+
response_type: code
|
|
2879
|
+
token_params:
|
|
2880
|
+
grant_type: authorization_code
|
|
2881
|
+
refresh_params:
|
|
2882
|
+
grant_type: refresh_token
|
|
2883
|
+
proxy:
|
|
2884
|
+
base_url: https://api.candis.io
|
|
2885
|
+
retry:
|
|
2886
|
+
after:
|
|
2887
|
+
- 'retry-after'
|
|
2888
|
+
docs: https://nango.dev/docs/api-integrations/candis
|
|
2889
|
+
setup_guide_url: https://nango.dev/docs/api-integrations/candis/how-to-register-your-own-candis-oauth-app
|
|
2890
|
+
post_connection_script: candisPostConnection
|
|
2891
|
+
|
|
2845
2892
|
canva:
|
|
2846
2893
|
display_name: Canva
|
|
2847
2894
|
categories:
|
|
@@ -3281,6 +3328,41 @@ cloudbeds:
|
|
|
3281
3328
|
docs: https://nango.dev/docs/api-integrations/cloudbeds
|
|
3282
3329
|
setup_guide_url: https://nango.dev/docs/api-integrations/cloudbeds/how-to-register-your-own-cloudbeds-oauth-app
|
|
3283
3330
|
|
|
3331
|
+
cloudtalk:
|
|
3332
|
+
display_name: CloudTalk
|
|
3333
|
+
categories:
|
|
3334
|
+
- communication
|
|
3335
|
+
auth_mode: BASIC
|
|
3336
|
+
proxy:
|
|
3337
|
+
base_url: https://my.cloudtalk.io/api
|
|
3338
|
+
retry:
|
|
3339
|
+
at:
|
|
3340
|
+
- 'x-cloudtalkapi-resettime'
|
|
3341
|
+
verification:
|
|
3342
|
+
method: GET
|
|
3343
|
+
headers:
|
|
3344
|
+
content-type: application/json
|
|
3345
|
+
endpoints:
|
|
3346
|
+
- /contacts/index.json?limit=1
|
|
3347
|
+
docs: https://nango.dev/docs/api-integrations/cloudtalk
|
|
3348
|
+
docs_connect: https://nango.dev/docs/api-integrations/cloudtalk/connect
|
|
3349
|
+
credentials:
|
|
3350
|
+
username:
|
|
3351
|
+
type: string
|
|
3352
|
+
title: ID
|
|
3353
|
+
description: Your CloudTalk API Access ID.
|
|
3354
|
+
pattern: '^[A-Za-z0-9.%@?_-]+$'
|
|
3355
|
+
example: 'E1ZH****************RRM'
|
|
3356
|
+
doc_section: '#step-1-getting-your-api-credentials'
|
|
3357
|
+
password:
|
|
3358
|
+
type: string
|
|
3359
|
+
title: Key
|
|
3360
|
+
description: Your CloudTalk API Access Key.
|
|
3361
|
+
secret: true
|
|
3362
|
+
pattern: '^[A-Za-z0-9.%@?_-]+$'
|
|
3363
|
+
example: 'bQI*******************************eZ'
|
|
3364
|
+
doc_section: '#step-1-getting-your-api-credentials'
|
|
3365
|
+
|
|
3284
3366
|
clerk:
|
|
3285
3367
|
display_name: Clerk
|
|
3286
3368
|
categories:
|
|
@@ -3339,6 +3421,26 @@ cloudentity:
|
|
|
3339
3421
|
description: The workspace ID of your Cloudentity account
|
|
3340
3422
|
doc_section: '#step-4-retrieving-the-workspace-id'
|
|
3341
3423
|
|
|
3424
|
+
cloudflare:
|
|
3425
|
+
display_name: Cloudflare
|
|
3426
|
+
auth_mode: API_KEY
|
|
3427
|
+
proxy:
|
|
3428
|
+
base_url: https://api.cloudflare.com/client
|
|
3429
|
+
headers:
|
|
3430
|
+
authorization: Bearer ${apiKey}
|
|
3431
|
+
retry:
|
|
3432
|
+
after:
|
|
3433
|
+
- 'retry-after'
|
|
3434
|
+
docs: https://nango.dev/docs/api-integrations/cloudflare
|
|
3435
|
+
docs_connect: https://nango.dev/docs/api-integrations/cloudflare/connect
|
|
3436
|
+
credentials:
|
|
3437
|
+
apiKey:
|
|
3438
|
+
type: string
|
|
3439
|
+
title: API Token
|
|
3440
|
+
description: The API token for your Cloudflare user or account
|
|
3441
|
+
example: lGlHlGZN3iPR9z7CupZlMB3nzMpTCdfxeUPNj_pf
|
|
3442
|
+
pattern: '^[a-zA-Z0-9_-]+$'
|
|
3443
|
+
|
|
3342
3444
|
close:
|
|
3343
3445
|
display_name: Close
|
|
3344
3446
|
categories:
|
|
@@ -3692,6 +3794,45 @@ connectwise-psa-staging:
|
|
|
3692
3794
|
title: Client ID
|
|
3693
3795
|
description: The Client ID assigned to your integration
|
|
3694
3796
|
|
|
3797
|
+
connectwise-rmm:
|
|
3798
|
+
display_name: ConnectWise RMM
|
|
3799
|
+
categories:
|
|
3800
|
+
- support
|
|
3801
|
+
auth_mode: OAUTH2_CC
|
|
3802
|
+
body_format: json
|
|
3803
|
+
token_url: https://openapi.service.${connectionConfig.subdomain}/v1/token
|
|
3804
|
+
token_params:
|
|
3805
|
+
grant_type: client_credentials
|
|
3806
|
+
scope_separator: ' '
|
|
3807
|
+
proxy:
|
|
3808
|
+
base_url: https://openapi.service.${connectionConfig.subdomain}
|
|
3809
|
+
docs: https://nango.dev/docs/api-integrations/connectwise-rmm
|
|
3810
|
+
docs_connect: https://nango.dev/docs/api-integrations/connectwise-rmm/connect
|
|
3811
|
+
connection_config:
|
|
3812
|
+
subdomain:
|
|
3813
|
+
type: string
|
|
3814
|
+
title: API Subdomain
|
|
3815
|
+
description: The ConnectWise RMM OpenAPI subdomain for your region
|
|
3816
|
+
pattern: '^(itsupport247\.net|euplatform\.connectwise\.com|auplatform\.connectwise\.com)$'
|
|
3817
|
+
example: itsupport247.net
|
|
3818
|
+
prefix: https://openapi.service.
|
|
3819
|
+
doc_section: '#step-1-find-your-api-subdomain'
|
|
3820
|
+
credentials:
|
|
3821
|
+
client_id:
|
|
3822
|
+
type: string
|
|
3823
|
+
title: Client ID
|
|
3824
|
+
description: Your ConnectWise RMM OAuth client ID
|
|
3825
|
+
example: '6500023'
|
|
3826
|
+
pattern: '^[A-Za-z0-9._-]+$'
|
|
3827
|
+
doc_section: '#step-2-create-api-credentials'
|
|
3828
|
+
client_secret:
|
|
3829
|
+
type: string
|
|
3830
|
+
title: Client Secret
|
|
3831
|
+
description: Your ConnectWise RMM OAuth client secret
|
|
3832
|
+
secret: true
|
|
3833
|
+
pattern: '^[A-Za-z0-9._~+/=-]{8,}$'
|
|
3834
|
+
doc_section: '#step-2-create-api-credentials'
|
|
3835
|
+
|
|
3695
3836
|
confluence:
|
|
3696
3837
|
display_name: Confluence
|
|
3697
3838
|
categories:
|
|
@@ -5334,6 +5475,28 @@ fanvue:
|
|
|
5334
5475
|
description: ''
|
|
5335
5476
|
automated: true
|
|
5336
5477
|
|
|
5478
|
+
fiber-ai:
|
|
5479
|
+
display_name: Fiber AI
|
|
5480
|
+
categories:
|
|
5481
|
+
- analytics
|
|
5482
|
+
auth_mode: API_KEY
|
|
5483
|
+
proxy:
|
|
5484
|
+
base_url: https://api.fiber.ai
|
|
5485
|
+
query:
|
|
5486
|
+
apiKey: ${apiKey}
|
|
5487
|
+
verification:
|
|
5488
|
+
method: GET
|
|
5489
|
+
endpoints:
|
|
5490
|
+
- /v1/get-org-credits
|
|
5491
|
+
docs: https://nango.dev/docs/api-integrations/fiber-ai
|
|
5492
|
+
docs_connect: https://nango.dev/docs/api-integrations/fiber-ai/connect
|
|
5493
|
+
credentials:
|
|
5494
|
+
apiKey:
|
|
5495
|
+
type: string
|
|
5496
|
+
title: API Key
|
|
5497
|
+
description: Your Fiber AI API key.
|
|
5498
|
+
doc_section: '#step-1-getting-your-api-key'
|
|
5499
|
+
|
|
5337
5500
|
fathom:
|
|
5338
5501
|
display_name: Fathom
|
|
5339
5502
|
categories:
|
|
@@ -6192,6 +6355,31 @@ grammarly-scim:
|
|
|
6192
6355
|
doc_section: '#step-1-finding-grammarly-scim-credentials'
|
|
6193
6356
|
example: 'Xk9t3HZbWqLp7AeGvM4sUdYjBnR2TfQxCVi81oNz'
|
|
6194
6357
|
|
|
6358
|
+
granola:
|
|
6359
|
+
display_name: Granola
|
|
6360
|
+
categories:
|
|
6361
|
+
- productivity
|
|
6362
|
+
- knowledge-base
|
|
6363
|
+
auth_mode: API_KEY
|
|
6364
|
+
proxy:
|
|
6365
|
+
base_url: https://public-api.granola.ai
|
|
6366
|
+
headers:
|
|
6367
|
+
authorization: Bearer ${apiKey}
|
|
6368
|
+
verification:
|
|
6369
|
+
method: GET
|
|
6370
|
+
endpoints:
|
|
6371
|
+
- /v1/notes?page_size=1
|
|
6372
|
+
docs: https://nango.dev/docs/api-integrations/granola
|
|
6373
|
+
docs_connect: https://nango.dev/docs/api-integrations/granola/connect
|
|
6374
|
+
credentials:
|
|
6375
|
+
apiKey:
|
|
6376
|
+
type: string
|
|
6377
|
+
title: API Token
|
|
6378
|
+
description: The API key for your Granola account
|
|
6379
|
+
example: grn_2isA***************_7HRD***********************
|
|
6380
|
+
pattern: '^grn_[A-Za-z0-9]+_[A-Za-z0-9]+$'
|
|
6381
|
+
doc_section: '#step-1-generating-your-granola-api-token'
|
|
6382
|
+
|
|
6195
6383
|
guru:
|
|
6196
6384
|
display_name: Guru
|
|
6197
6385
|
categories:
|
|
@@ -7850,7 +8038,7 @@ ironclad:
|
|
|
7850
8038
|
categories:
|
|
7851
8039
|
- legal
|
|
7852
8040
|
auth_mode: OAUTH2
|
|
7853
|
-
authorization_url: https
|
|
8041
|
+
authorization_url: https://ironcladapp.com/oauth/authorize
|
|
7854
8042
|
token_url: https://${connectionConfig.subdomain}.ironcladapp.com/oauth/token
|
|
7855
8043
|
disable_pkce: true
|
|
7856
8044
|
authorization_params:
|
|
@@ -9607,6 +9795,63 @@ microsoft-power-bi:
|
|
|
9607
9795
|
base_url: https://api.powerbi.com
|
|
9608
9796
|
docs: https://nango.dev/docs/integrations/all/microsoft-power-bi
|
|
9609
9797
|
|
|
9798
|
+
maximizer:
|
|
9799
|
+
display_name: Maximizer (Cloud)
|
|
9800
|
+
categories:
|
|
9801
|
+
- crm
|
|
9802
|
+
auth_mode: OAUTH2
|
|
9803
|
+
authorization_url: https://${connectionConfig.region}.maximizercrmlive.com/oauth2/${connectionConfig.company_alias}/authorize
|
|
9804
|
+
token_url: https://${connectionConfig.region}.maximizercrmlive.com/oauth2/${connectionConfig.company_alias}/token
|
|
9805
|
+
authorization_params:
|
|
9806
|
+
response_type: code
|
|
9807
|
+
token_params:
|
|
9808
|
+
grant_type: authorization_code
|
|
9809
|
+
refresh_params:
|
|
9810
|
+
grant_type: refresh_token
|
|
9811
|
+
proxy:
|
|
9812
|
+
base_url: https://${connectionConfig.region}.maximizercrmlive.com
|
|
9813
|
+
docs: https://nango.dev/docs/api-integrations/maximizer
|
|
9814
|
+
setup_guide_url: https://nango.dev/docs/api-integrations/maximizer/how-to-register-your-own-maximizer-oauth-app
|
|
9815
|
+
docs_connect: https://nango.dev/docs/api-integrations/maximizer/connect
|
|
9816
|
+
connection_config:
|
|
9817
|
+
region:
|
|
9818
|
+
type: string
|
|
9819
|
+
title: Region
|
|
9820
|
+
description: Region-specific subdomain.
|
|
9821
|
+
pattern: '^(caw|ukw)$'
|
|
9822
|
+
example: caw
|
|
9823
|
+
company_alias:
|
|
9824
|
+
type: string
|
|
9825
|
+
title: Company Alias
|
|
9826
|
+
description: The company alias of your Maximizer cloud account.
|
|
9827
|
+
example: acme
|
|
9828
|
+
|
|
9829
|
+
maximizer-on-premise:
|
|
9830
|
+
display_name: Maximizer (On-Premise)
|
|
9831
|
+
categories:
|
|
9832
|
+
- crm
|
|
9833
|
+
auth_mode: OAUTH2
|
|
9834
|
+
authorization_url: https://${connectionConfig.hostname}/MaximizerWebAuthentication/OAuth2/Authorize
|
|
9835
|
+
token_url: https://${connectionConfig.hostname}/MaximizerWebAuthentication/OAuth2/Token
|
|
9836
|
+
authorization_params:
|
|
9837
|
+
response_type: code
|
|
9838
|
+
token_params:
|
|
9839
|
+
grant_type: authorization_code
|
|
9840
|
+
refresh_params:
|
|
9841
|
+
grant_type: refresh_token
|
|
9842
|
+
proxy:
|
|
9843
|
+
base_url: https://${connectionConfig.hostname}
|
|
9844
|
+
docs: https://nango.dev/docs/api-integrations/maximizer-on-premise
|
|
9845
|
+
setup_guide_url: https://nango.dev/docs/api-integrations/maximizer-on-premise/how-to-register-your-own-maximizer-on-premise-oauth-app
|
|
9846
|
+
docs_connect: https://nango.dev/docs/api-integrations/maximizer-on-premise/connect
|
|
9847
|
+
connection_config:
|
|
9848
|
+
hostname:
|
|
9849
|
+
type: string
|
|
9850
|
+
title: Hostname
|
|
9851
|
+
description: The hostname of your Maximizer on premise instance.
|
|
9852
|
+
example: maximizer.mycompany.com
|
|
9853
|
+
format: hostname
|
|
9854
|
+
|
|
9610
9855
|
mindbody:
|
|
9611
9856
|
display_name: Mindbody
|
|
9612
9857
|
categories:
|
|
@@ -10357,6 +10602,45 @@ notion-scim:
|
|
|
10357
10602
|
description: The API key for your Notion scim account
|
|
10358
10603
|
doc_section: '#step-1-finding-your-scim-api-key-token'
|
|
10359
10604
|
|
|
10605
|
+
nyne-ai:
|
|
10606
|
+
display_name: Nyne AI
|
|
10607
|
+
categories:
|
|
10608
|
+
- analytics
|
|
10609
|
+
auth_mode: API_KEY
|
|
10610
|
+
proxy:
|
|
10611
|
+
base_url: https://api.nyne.ai
|
|
10612
|
+
headers:
|
|
10613
|
+
x-api-key: ${connectionConfig.apiKey}
|
|
10614
|
+
x-api-secret: ${apiKey}
|
|
10615
|
+
content-type: application/json
|
|
10616
|
+
verification:
|
|
10617
|
+
method: POST
|
|
10618
|
+
headers:
|
|
10619
|
+
content-type: application/json
|
|
10620
|
+
endpoints:
|
|
10621
|
+
- /person/events
|
|
10622
|
+
data:
|
|
10623
|
+
event: 'test'
|
|
10624
|
+
docs: https://nango.dev/docs/api-integrations/nyne-ai
|
|
10625
|
+
docs_connect: https://nango.dev/docs/api-integrations/nyne-ai/connect
|
|
10626
|
+
connection_config:
|
|
10627
|
+
apiKey:
|
|
10628
|
+
type: string
|
|
10629
|
+
title: API Key
|
|
10630
|
+
description: Your Nyne AI API key.
|
|
10631
|
+
pattern: '^[a-fA-F0-9]{32}$'
|
|
10632
|
+
example: '48f0****************************892'
|
|
10633
|
+
order: 1
|
|
10634
|
+
doc_section: '#step-1-getting-your-api-credentials'
|
|
10635
|
+
credentials:
|
|
10636
|
+
apiKey:
|
|
10637
|
+
type: string
|
|
10638
|
+
title: API Secret
|
|
10639
|
+
description: Your Nyne AI API secret.
|
|
10640
|
+
pattern: '^[a-fA-F0-9]{16}$'
|
|
10641
|
+
example: '97e7********0463'
|
|
10642
|
+
doc_section: '#step-1-getting-your-api-credentials'
|
|
10643
|
+
|
|
10360
10644
|
odoo:
|
|
10361
10645
|
display_name: Odoo (OAuth)
|
|
10362
10646
|
categories:
|
|
@@ -11770,29 +12054,27 @@ posthog:
|
|
|
11770
12054
|
headers:
|
|
11771
12055
|
authorization: Bearer ${apiKey}
|
|
11772
12056
|
base_url: https://${connectionConfig.subdomain}.posthog.com
|
|
11773
|
-
|
|
11774
|
-
|
|
11775
|
-
headers:
|
|
11776
|
-
content-type: application/json
|
|
11777
|
-
endpoints:
|
|
11778
|
-
- /api/users/@me
|
|
11779
|
-
docs: https://nango.dev/docs/integrations/all/posthog
|
|
11780
|
-
docs_connect: https://nango.dev/docs/integrations/all/posthog/connect
|
|
12057
|
+
docs: https://nango.dev/docs/api-integrations/posthog
|
|
12058
|
+
docs_connect: https://nango.dev/docs/api-integrations/posthog/connect
|
|
11781
12059
|
connection_config:
|
|
11782
12060
|
subdomain:
|
|
11783
12061
|
type: string
|
|
11784
|
-
title:
|
|
11785
|
-
description: The subdomain of your PostHog account
|
|
11786
|
-
pattern: '^
|
|
11787
|
-
example:
|
|
12062
|
+
title: Subdomain
|
|
12063
|
+
description: The subdomain of your PostHog cloud account
|
|
12064
|
+
pattern: '^(us(\.i)?|eu(\.i)?)$'
|
|
12065
|
+
example: us.i
|
|
11788
12066
|
suffix: .posthog.com
|
|
11789
12067
|
prefix: https://
|
|
12068
|
+
order: 1
|
|
12069
|
+
doc_section: '#step-1-finding-your-subdomain'
|
|
11790
12070
|
credentials:
|
|
11791
12071
|
apiKey:
|
|
11792
12072
|
type: string
|
|
11793
12073
|
title: API Key
|
|
11794
12074
|
description: The API key for your PostHog account
|
|
11795
|
-
|
|
12075
|
+
pattern: '^phx_[A-Za-z0-9]+$'
|
|
12076
|
+
example: phx_1PPf***************************k3D
|
|
12077
|
+
doc_section: '#step-2-finding-your-api-key'
|
|
11796
12078
|
|
|
11797
12079
|
prive:
|
|
11798
12080
|
display_name: Prive
|
|
@@ -12500,6 +12782,80 @@ replicate:
|
|
|
12500
12782
|
title: API Key
|
|
12501
12783
|
description: The API key for your Replicate account
|
|
12502
12784
|
|
|
12785
|
+
researchdesk:
|
|
12786
|
+
display_name: ResearchDesk
|
|
12787
|
+
categories:
|
|
12788
|
+
- other
|
|
12789
|
+
auth_mode: TWO_STEP
|
|
12790
|
+
body_format: json
|
|
12791
|
+
token_url: https://${connectionConfig.subdomain}.researchdesk.com/tokens
|
|
12792
|
+
token_params:
|
|
12793
|
+
email: ${credentials.email}
|
|
12794
|
+
password: ${credentials.password}
|
|
12795
|
+
token_headers:
|
|
12796
|
+
content-type: application/json
|
|
12797
|
+
token_response:
|
|
12798
|
+
token: token
|
|
12799
|
+
token_expiration: expires
|
|
12800
|
+
token_expiration_strategy: expireAt
|
|
12801
|
+
proxy:
|
|
12802
|
+
base_url: https://${connectionConfig.subdomain}.researchdesk.com
|
|
12803
|
+
headers:
|
|
12804
|
+
authorization: Bearer ${accessToken}
|
|
12805
|
+
docs: https://nango.dev/docs/api-integrations/researchdesk
|
|
12806
|
+
docs_connect: https://nango.dev/docs/api-integrations/researchdesk/connect
|
|
12807
|
+
connection_config:
|
|
12808
|
+
subdomain:
|
|
12809
|
+
type: string
|
|
12810
|
+
title: Subdomain
|
|
12811
|
+
description: The subdomain of the environment to which you want to connect to
|
|
12812
|
+
pattern: '^(demand|stage-demand)$'
|
|
12813
|
+
example: demand
|
|
12814
|
+
suffix: .researchdesk.com
|
|
12815
|
+
prefix: https://
|
|
12816
|
+
order: 1
|
|
12817
|
+
doc_section: '#step-1-choosing-your-subdomain'
|
|
12818
|
+
credentials:
|
|
12819
|
+
email:
|
|
12820
|
+
type: string
|
|
12821
|
+
title: Email
|
|
12822
|
+
description: Your ResearchDesk account email
|
|
12823
|
+
format: email
|
|
12824
|
+
doc_section: '#step-2-finding-your-credentials'
|
|
12825
|
+
password:
|
|
12826
|
+
type: string
|
|
12827
|
+
title: Password
|
|
12828
|
+
description: Your ResearchDesk account password
|
|
12829
|
+
secret: true
|
|
12830
|
+
doc_section: '#step-2-finding-your-credentials'
|
|
12831
|
+
|
|
12832
|
+
resend:
|
|
12833
|
+
display_name: Resend
|
|
12834
|
+
categories:
|
|
12835
|
+
- communication
|
|
12836
|
+
auth_mode: API_KEY
|
|
12837
|
+
proxy:
|
|
12838
|
+
base_url: https://api.resend.com
|
|
12839
|
+
headers:
|
|
12840
|
+
authorization: Bearer ${apiKey}
|
|
12841
|
+
retry:
|
|
12842
|
+
after:
|
|
12843
|
+
- 'retry-after'
|
|
12844
|
+
verification:
|
|
12845
|
+
method: GET
|
|
12846
|
+
endpoints:
|
|
12847
|
+
- /domains?limit=1
|
|
12848
|
+
docs: https://nango.dev/docs/api-integrations/resend
|
|
12849
|
+
docs_connect: https://nango.dev/docs/api-integrations/resend/connect
|
|
12850
|
+
credentials:
|
|
12851
|
+
apiKey:
|
|
12852
|
+
type: string
|
|
12853
|
+
title: API Key
|
|
12854
|
+
description: Your Resend API key.
|
|
12855
|
+
pattern: '^re_[A-Za-z0-9_]+$'
|
|
12856
|
+
example: 're_HW***************************65L'
|
|
12857
|
+
doc_section: '#step-1-getting-your-api-key'
|
|
12858
|
+
|
|
12503
12859
|
retell-ai:
|
|
12504
12860
|
display_name: Retell AI
|
|
12505
12861
|
categories:
|
|
@@ -12944,6 +13300,72 @@ salesforce:
|
|
|
12944
13300
|
prefix: https://
|
|
12945
13301
|
optional: true
|
|
12946
13302
|
|
|
13303
|
+
salesforce-jwt:
|
|
13304
|
+
display_name: Salesforce (JWT)
|
|
13305
|
+
categories:
|
|
13306
|
+
- crm
|
|
13307
|
+
auth_mode: TWO_STEP
|
|
13308
|
+
signature:
|
|
13309
|
+
protocol: RSA
|
|
13310
|
+
body_format: form
|
|
13311
|
+
token:
|
|
13312
|
+
signing_key: ${credentials.privateKey}
|
|
13313
|
+
expires_in_ms: 3600000
|
|
13314
|
+
header:
|
|
13315
|
+
alg: RS256
|
|
13316
|
+
typ: JWT
|
|
13317
|
+
payload:
|
|
13318
|
+
iss: ${credentials.clientId}
|
|
13319
|
+
aud: https://${credentials.authorizationUrl}
|
|
13320
|
+
sub: ${credentials.username}
|
|
13321
|
+
token_url: https://login.salesforce.com/services/oauth2/token
|
|
13322
|
+
token_params:
|
|
13323
|
+
grant_type: urn:ietf:params:oauth:grant-type:jwt-bearer
|
|
13324
|
+
assertion: ${token}
|
|
13325
|
+
token_response:
|
|
13326
|
+
token: access_token
|
|
13327
|
+
token_response_metadata:
|
|
13328
|
+
- instance_url
|
|
13329
|
+
proxy:
|
|
13330
|
+
base_url: ${connectionConfig.instance_url}
|
|
13331
|
+
token_expires_in_ms: 0
|
|
13332
|
+
docs: https://nango.dev/docs/api-integrations/salesforce-jwt
|
|
13333
|
+
docs_connect: https://nango.dev/docs/api-integrations/salesforce-jwt/connect
|
|
13334
|
+
credentials:
|
|
13335
|
+
clientId:
|
|
13336
|
+
type: string
|
|
13337
|
+
title: Consumer Key
|
|
13338
|
+
example: 3MVG9dAEux2v1sLsg0e52***************CJpGsXgqg8E
|
|
13339
|
+
description: The Consumer Key from your Salesforce Connected App.
|
|
13340
|
+
doc_section: '#step-4-get-consumer-key-and-consumer-secret'
|
|
13341
|
+
clientSecret:
|
|
13342
|
+
type: string
|
|
13343
|
+
title: Consumer Secret
|
|
13344
|
+
example: 954F73F4C234***************9D069B8FCF83B5
|
|
13345
|
+
pattern: '^[A-F0-9]{64}$'
|
|
13346
|
+
description: The Consumer Secret from your Salesforce Connected App.
|
|
13347
|
+
doc_section: '#step-4-get-consumer-key-and-consumer-secret'
|
|
13348
|
+
username:
|
|
13349
|
+
type: string
|
|
13350
|
+
title: Username
|
|
13351
|
+
description: The Salesforce username of the user the JWT will act on behalf of.
|
|
13352
|
+
format: email
|
|
13353
|
+
example: john@acme.com
|
|
13354
|
+
doc_section: '#step-7-finding-the-username'
|
|
13355
|
+
privateKey:
|
|
13356
|
+
type: string
|
|
13357
|
+
title: Private Key
|
|
13358
|
+
description: The private key that matches the certificate you uploaded to the Connected App.
|
|
13359
|
+
example: '-----BEGIN PRIVATE KEY-----\nMIIEvQIBADANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA\n-----END PRIVATE KEY-----'
|
|
13360
|
+
doc_section: '#step-1-create-a-private-key-and-self-signed-digital-certificate'
|
|
13361
|
+
authorizationUrl:
|
|
13362
|
+
type: string
|
|
13363
|
+
title: Authorization Server URL
|
|
13364
|
+
description: Your Salesforce authorization server URL.
|
|
13365
|
+
format: hostname
|
|
13366
|
+
example: 'login.salesforce.com'
|
|
13367
|
+
doc_section: '#step-6-finding-the-authorization-server-url'
|
|
13368
|
+
|
|
12947
13369
|
salesforce-sandbox:
|
|
12948
13370
|
display_name: Salesforce (Sandbox)
|
|
12949
13371
|
auth_mode: OAUTH2
|
|
@@ -13321,6 +13743,7 @@ schwab:
|
|
|
13321
13743
|
auth_mode: OAUTH2
|
|
13322
13744
|
authorization_url: https://api.schwabapi.com/v1/oauth/authorize
|
|
13323
13745
|
token_url: https://api.schwabapi.com/v1/oauth/token
|
|
13746
|
+
token_request_auth_method: basic
|
|
13324
13747
|
authorization_params:
|
|
13325
13748
|
response_type: code
|
|
13326
13749
|
token_params:
|
|
@@ -14435,7 +14858,8 @@ squareup:
|
|
|
14435
14858
|
grant_type: refresh_token
|
|
14436
14859
|
proxy:
|
|
14437
14860
|
base_url: https://connect.squareup.com
|
|
14438
|
-
docs: https://nango.dev/docs/integrations/
|
|
14861
|
+
docs: https://nango.dev/docs/api-integrations/squareup
|
|
14862
|
+
setup_guide_url: https://nango.dev/docs/api-integrations/squareup/how-to-register-your-own-squareup-oauth-app
|
|
14439
14863
|
|
|
14440
14864
|
squareup-sandbox:
|
|
14441
14865
|
display_name: Squareup (Sandbox)
|
|
@@ -14454,7 +14878,8 @@ squareup-sandbox:
|
|
|
14454
14878
|
grant_type: refresh_token
|
|
14455
14879
|
proxy:
|
|
14456
14880
|
base_url: https://connect.squareupsandbox.com
|
|
14457
|
-
docs: https://nango.dev/docs/integrations/
|
|
14881
|
+
docs: https://nango.dev/docs/api-integrations/squareup-sandbox
|
|
14882
|
+
setup_guide_url: https://nango.dev/docs/api-integrations/squareup-sandbox/how-to-register-your-own-squareup-sandbox-oauth-app
|
|
14458
14883
|
|
|
14459
14884
|
stackexchange:
|
|
14460
14885
|
display_name: Stack Exchange
|
|
@@ -16673,24 +17098,19 @@ zapier:
|
|
|
16673
17098
|
auth_mode: OAUTH2
|
|
16674
17099
|
authorization_url: https://api.zapier.com/v2/authorize
|
|
16675
17100
|
token_url: https://zapier.com/oauth/token
|
|
17101
|
+
disable_pkce: true
|
|
16676
17102
|
scope_separator: ' '
|
|
16677
|
-
default_scopes:
|
|
16678
|
-
- authentication
|
|
16679
|
-
- authentication:write
|
|
16680
|
-
- profile
|
|
16681
|
-
- zap
|
|
16682
|
-
- zap:write
|
|
16683
17103
|
proxy:
|
|
16684
17104
|
base_url: https://api.zapier.com
|
|
16685
17105
|
authorization_params:
|
|
16686
17106
|
response_type: code
|
|
16687
17107
|
response_mode: query
|
|
16688
|
-
state: N@nG0s%rinG
|
|
16689
17108
|
token_params:
|
|
16690
17109
|
grant_type: authorization_code
|
|
16691
17110
|
refresh_params:
|
|
16692
17111
|
grant_type: refresh_token
|
|
16693
|
-
docs: https://nango.dev/docs/integrations/
|
|
17112
|
+
docs: https://nango.dev/docs/api-integrations/zapier
|
|
17113
|
+
setup_guide_url: https://nango.dev/docs/api-integrations/zapier/how-to-register-your-own-zapier-oauth-app
|
|
16694
17114
|
|
|
16695
17115
|
zapier-nla:
|
|
16696
17116
|
display_name: Zapier NLA
|