Connection parameters reference

This reference contains the connection parameters required to configure connectors using Workato’s APIs.

Provider values

Every connector has a provider value which uniquely identifies the type of connector. For example, the Salesforce connector has a provider: salesforce value.

Provider values should be supplied when:

  • Creating a connection using the Platform API:

    $curl -X POST https://www.workato.com/api/connections \
    > -H 'Authorization: Bearer <api_token>' \
    > -H 'Content-Type: application/json' \
    > -d '{
    > "name": "Salesforce",
    > "provider": "salesforce"
    > }'
  • Defining App Access for customers. A connector’s provider value can be included in the whitelisted_apps parameter to define the list of connectors the customer can access.

    For example, the following request creates an account that only has access to Salesforce and NetSuite:

    $curl -X POST https://www.workato.com/api/managed_users \
    > -H 'Authorization: Bearer <api_token>' \
    > -H 'Content-Type: application/json' \
    > -d '{
    > "name": "Kevin Leary",
    > "notification_email": "kevinl@acme.com",
    > "external_id": "UU0239093498",
    > "whitelisted_apps": ["salesforce", "netsuite"],
    > "time_zone": "Central Time (US & Canada)"
    > }'

Connection parameters

The following parameters describe the configuration for a given connector:

FieldTypeDescription
oauthbooleanIf true, the connector requires OAuth.
personalizationbooleanIf true, the connection can be used as a personalized connection in Workbot use cases.
secure_tunnelbooleanIf true, the connection can be used to connect to on-premise systems.
inputarrayAn array of objects describing the connection parameters for the connector. When empty, no configuration is required.

Example: No configuration required

The following is an example of a connector that doesn’t require any configuration:

1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 []
6 }

Example: Configuration required

The following is an example of the configuration for the Airtable connector, which requires connection parameter configuration:

1{
2 "oauth": true,
3 "personalization": false,
4 "input": [
5 {
6 "name": "authentication_type",
7 "type": "select",
8 "options": [
9 "OAuth 2.0",
10 "Personal access token",
11 "API key (Deprecated)"
12 ],
13 "optional": false,
14 "label": "Authentication type",
15 "hint": "Select 'OAuth 2.0' or 'Personal access token' for current methods, 'API key' is unsupported."
16 },
17 {
18 "name": "personal_access_token",
19 "type": "string",
20 "optional": true,
21 "label": "Personal access token",
22 "hint": "Enter your personal access token here if 'Personal access token' is the selected authentication type.",
23 "conditional": {
24 "field": "authentication_type",
25 "value": "Personal access token"
26 }
27 }
28 ]
29}

OAuth authentication

The Workato API allows you to create OAuth 2.0 connections. However, authorization code grant connections require that you add an oauth_token_pair object, which contains both an access token and a refresh token as strings. For example:

1"oauth_token_pair": {
2 "label": "OAuth Token Pair",
3 "optional": true,
4 "type": "object",
5 "hint": "Allows you to create authorization code grant connections. You can create a shell connection in cases where you don't have an access token and refresh token.",
6 "properties": [
7 {
8 "label": "Access Token",
9 "name": "access_token",
10 "type": "string",
11 "optional": false
12 },
13 {
14 "label": "Refresh Token",
15 "name": "refresh_token",
16 "type": "string",
17 "optional": false
18 }
19 ]
20 }

You can create a shell connection in cases where you don’t have an access token and refresh token. This allows you to initialize the connection in a Disconnected state, and then complete authentication later in the Workato UI. Include "shell_connection": true in the request body or omit authorization fields to create a shell connection.

Complete the following steps to create and authenticate a shell connection:

1

Create a shell connection using the Create a connection endpoint. For example:

$curl -X POST https://www.workato.com/api/connections \
> -H 'Authorization: Bearer <api_token>' \
> -H 'Content-Type: application/json' \
> -d '{
> "name": "Snowflake shell",
> "provider": "snowflake",
> "folder_id": 1234567,
> "shell_connection": true,
> "input": {
> "authentication_type": ["OAuth 2.0", "oauth"],
> "warehouse": "Example warehouse",
> "host": "Example host",
> "database": "Example database",
> "role": "Example role",
> "user": "Example user",
> "schema_name": "Example schema",
> "db_timezone": ["American Samoa", "American Samoa"]
> }
> }'
2

Sign in to Workato.

3

Open the project where you stored the shell connection.

4

Select the shell connection.

Select the shell connection
5

Complete the remaining fields. Refer to the Connectors section of Workato’s documentation for connector-specific authentication steps.

Complete the remaining fields

Configuration parameters and provider values by connector

The following list contains the configuration parameters and provider values for each connector.

Note: Only connectors that require connections are listed.

2Checkout

Provider value:

1"provider": "two_checkout"

Active Directory

Provider value:

1"provider": "active_directory"
1 {
2 "oauth":false,
3 "personalization":false,
4 "input":[
5 {
6 "name":"company_identifier",
7 "type":"string",
8 "label":"Company identifier"
9 },
10 {
11 "name":"ftp_host",
12 "type":"string",
13 "label":"FTP host"
14 },
15 {
16 "name":"ftp_user",
17 "type":"string",
18 "label":"FTP user"
19 },
20 {
21 "name":"ftp_password",
22 "type":"string",
23 "label":"FTP password"
24 },
25 {
26 "name":"pgp_key",
27 "type":"string",
28 "label":"PGP public key"
29 }
30 ]
31 }

Adobe Experience Manager

Provider value:

1"provider": "adobe_experience_manager"

ADP 2

Provider value:

1"provider": "adp"
1 {
2 "oauth":false,
3 "personalization":false,
4 "input":[
5 {
6 "name":"company_identifier",
7 "type":"string",
8 "label":"Company identifier"
9 },
10 {
11 "name":"ftp_host",
12 "type":"string",
13 "label":"FTP host"
14 },
15 {
16 "name":"ftp_user",
17 "type":"string",
18 "label":"FTP user"
19 },
20 {
21 "name":"ftp_password",
22 "type":"string",
23 "label":"FTP password"
24 },
25 {
26 "name":"pgp_key",
27 "type":"string",
28 "label":"PGP public key"
29 }
30 ]
31 }

ADP Workforce Now

Provider value:

1"provider": "adp7"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "sandbox",
8 "type": "boolean",
9 "optional": true,
10 "label": "Sandbox",
11 "default": "false"
12 },
13 {
14 "name": "client_id",
15 "type": "string",
16 "label": "Client ID"
17 },
18 {
19 "name": "client_secret",
20 "type": "string",
21 "label": "Client secret"
22 },
23 {
24 "name": "ssl_client_cert",
25 "type": "string",
26 "label": "SSL client certificate"
27 },
28 {
29 "name": "ssl_client_key",
30 "type": "string",
31 "label": "SSL client key"
32 },
33 {
34 "name": "ssl_key_passphrase",
35 "type": "string",
36 "optional": true,
37 "label": "Custom CA certificate"
38 },
39 {
40 "name": "unmask",
41 "type": "boolean",
42 "optional": true,
43 "label": "Unmask sensitive information?",
44 "hint": "If Yes, sensitive information will be returned in the response. If No, it will not be returned.",
45 "default": "false"
46 }
47 ]
48 }

Airbrake

Provider value:

"provider": "airbrake"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "api_key",
8 "type": "string",
9 "optional": true,
10 "label": "Api key"
11 }
12 ]
13 }

AirREGI

Provider value:

1"provider": "air_regi"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 []
6 }

Airtable

Provider value:

1"provider": "airtable"
1 {
2 "oauth": true,
3 "personalization": false,
4 "input": [
5 {
6 "name": "authentication_type",
7 "type": "select",
8 "options": [
9 "OAuth 2.0",
10 "Personal access token",
11 "API key (Deprecated)"
12 ],
13 "optional": false,
14 "label": "Authentication type",
15 "hint": "Select 'OAuth 2.0' or 'Personal access token' for current methods, 'API key' is unsupported."
16 },
17 {
18 "name": "personal_access_token",
19 "type": "string",
20 "optional": true,
21 "label": "Personal access token",
22 "hint": "Enter your personal access token here if 'Personal access token' is the selected authentication type.",
23 "conditional": {
24 "field": "authentication_type",
25 "value": "Personal access token"
26 }
27 }
28 ]
29}

Amazon Cognito

Provider value:

1"provider": "aws_cognito"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "api_key",
8 "type": "string",
9 "optional": false,
10 "label": "API key",
11 "hint": "You can find the API Key on the <a href=\"https://airtable.com/account\"target=\"_blank\">account</a>.\n"
12 }
13 ]
14 }

Amazon Lex

Provider value:

1"provider": "amazon_lex_nlu"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "bot_name",
8 "type": "string",
9 "label": "Bot name",
10 "hint": "Amazon Lex Bot Name"
11 },
12 {
13 "name": "bot_alias",
14 "type": "string",
15 "label": "Bot alias",
16 "hint": "Amazon Lex Bot Alias"
17 },
18 {
19 "name": "region",
20 "type": "string",
21 "label": "Region",
22 "hint": "Region"
23 },
24 {
25 "name": "access_key_id",
26 "type": "string",
27 "label": "Access key ID",
28 "hint": "IAM User: Access Key Id (AWS managed policy \"AmazonLexRunBotsOnly\" should be attached to the user)"
29 },
30 {
31 "name": "secret_access_key",
32 "type": "string",
33 "label": "Secret access key",
34 "hint": "IAM User: Secret Access Key"
35 }
36 ]
37 }

Amazon S3

Provider value:

1"provider": "amazon_s3"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "auth_type",
8 "type": "string",
9 "optional": false,
10 "label": "Authorization type",
11 "hint": " Learn more about Amazon S3 authorization support <a href=\"http://docs.workato.com/en/connectors/s3.html#how-to-connect-to-amazon-s3-on-workato\" target=\"_blank\">here</a>.\n",
12 "pick_list":
13 [
14 [
15 "Access key",
16 "key_secret"
17 ],
18 [
19 "IAM role",
20 "role_based"
21 ]
22 ],
23 "default": "key_secret"
24 },
25 {
26 "name": "assume_role",
27 "type": "string",
28 "optional": false,
29 "label": "IAM role ARN",
30 "hint": "Follow <a href=\"http://docs.workato.com/en/connectors/s3.html#how-to-connect-to-amazon-s3-on-workato\" target=\"_blank\">this guide</a> to create an IAM role in your S3, then input the IAM ARN here.\nWorkato S3 account (ID: 484634596152) will assume this IAM role to access your instance.\n<a href=\"https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_create_for-user.html\" target=\"_blank\">Learn more</a>.\n"
31 },
32 {
33 "name": "api_key",
34 "type": "string",
35 "optional": false,
36 "label": "Access key ID",
37 "hint": "Go to <b>AWS account name</b> > <b>My Security Credentials</b> > <b>Users</b>. Get API key from existing user or create new user."
38 },
39 {
40 "name": "secret_key",
41 "type": "string",
42 "optional": false,
43 "label": "Secret access key",
44 "hint": "Go to <b>AWS account name</b> > <b>My Security Credentials</b> > <b>Users</b>. Get secret key from existing user or create new user."
45 },
46 {
47 "name": "external_id",
48 "type": "string",
49 "optional": true,
50 "label": "External ID",
51 "hint": "External ID was created when you first created the IAM role in S3.\n<a href=\"https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_create_for-user_externalid.html\" target=\"_blank\">Learn more</a>\n"
52 },
53 {
54 "name": "restrict_to_bucket",
55 "type": "string",
56 "optional": true,
57 "label": "Restrict to bucket",
58 "hint": "Use to restrict connection to specified bucket. Needed when this user has only limited\n<a href=\"http://docs.aws.amazon.com/AmazonS3/latest/dev/using-with-s3-actions.html#using-with-s3-actions-related-to-buckets\" target=\"_blank\">s3:ListBucket</a> access.\n"
59 },
60 {
61 "name": "restrict_to_path",
62 "type": "string",
63 "optional": true,
64 "label": "Restrict to path",
65 "hint": "Use to restrict connection to specified bucket and object or path. Needed when this user has only limited\n<a href=\"http://docs.aws.amazon.com/AmazonS3/latest/dev/using-with-s3-actions.html#using-with-s3-actions-related-to-buckets\" target=\"_blank\">s3:ListBucket</a> access.'\n"
66 },
67 {
68 "name": "region",
69 "type": "string",
70 "optional": false,
71 "label": "Region",
72 "hint": "Region is typically provided in the S3 account URL. If your account URL is <b>https://eu-west-1.console.s3.amazon.com</b>, use <b>eu-west-1</b> as the region."
73 },
74 {
75 "name": "download_threads",
76 "type": "string",
77 "optional": true,
78 "label": "Download threads",
79 "hint": "Use to boost download speed. One thread is used by default."
80 }
81 ]
82 }

Amazon S3 (Secondary)

Provider value:

1"provider": "amazon_s3_secondary"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "auth_type",
8 "type": "string",
9 "optional": false,
10 "label": "Authorization type",
11 "hint": " Learn more about Amazon S3 authorization support <a href=\"http://docs.workato.com/en/connectors/s3.html#how-to-connect-to-amazon-s3-on-workato\" target=\"_blank\">here</a>.\n",
12 "pick_list":
13 [
14 [
15 "Access key",
16 "key_secret"
17 ],
18 [
19 "IAM role",
20 "role_based"
21 ]
22 ],
23 "default": "key_secret"
24 },
25 {
26 "name": "assume_role",
27 "type": "string",
28 "optional": false,
29 "label": "IAM role ARN",
30 "hint": "Follow <a href=\"http://docs.workato.com/en/connectors/s3.html#how-to-connect-to-amazon-s3-on-workato\" target=\"_blank\">this guide</a> to create an IAM role in your S3, then input the IAM ARN here.\nWorkato S3 account (ID: <b>484634596152</b>) will assume this IAM role to access your instance.\n<a href=\"https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_create_for-user.html\" target=\"_blank\">Learn more</a>.\n"
31 },
32 {
33 "name": "api_key",
34 "type": "string",
35 "optional": false,
36 "label": "Access key ID",
37 "hint": "Go to <b>AWS account name</b> > <b>My Security Credentials</b> > <b>Users</b>. Get API key from existing user or create new user."
38 },
39 {
40 "name": "secret_key",
41 "type": "string",
42 "optional": false,
43 "label": "Secret access key",
44 "hint": "Go to <b>AWS account name</b> > <b>My Security Credentials</b> > <b>Users</b>. Get secret key from existing user or create new user."
45 },
46 {
47 "name": "external_id",
48 "type": "string",
49 "optional": true,
50 "label": "External ID",
51 "hint": "External ID was created when you first created the IAM role in S3.\n<a href=\"https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_create_for-user_externalid.html\" target=\"_blank\">Learn more</a>\n"
52 },
53 {
54 "name": "restrict_to_bucket",
55 "type": "string",
56 "optional": true,
57 "label": "Restrict to bucket",
58 "hint": "Use to restrict connection to specified bucket. Needed when this user has only limited\n<a href=\"http://docs.aws.amazon.com/AmazonS3/latest/dev/using-with-s3-actions.html#using-with-s3-actions-related-to-buckets\" target=\"_blank\">s3:ListBucket</a> access.\n"
59 },
60 {
61 "name": "restrict_to_path",
62 "type": "string",
63 "optional": true,
64 "label": "Restrict to path",
65 "hint": "Use to restrict connection to specified bucket and object or path. Needed when this user has only limited\n<a href=\"http://docs.aws.amazon.com/AmazonS3/latest/dev/using-with-s3-actions.html#using-with-s3-actions-related-to-buckets\" target=\"_blank\">s3:ListBucket</a> access.'\n"
66 },
67 {
68 "name": "region",
69 "type": "string",
70 "optional": false,
71 "label": "Region",
72 "hint": "Region is typically provided in the S3 account URL. If your account URL is <b>https://eu-west-1.console.s3.amazon.com</b>, use <b>eu-west-1</b> as the region."
73 },
74 {
75 "name": "download_threads",
76 "type": "string",
77 "optional": true,
78 "label": "Download threads",
79 "hint": "Use to boost download speed. One thread is used by default."
80 }
81 ]
82 }

Amazon SNS

Provider value:

1"provider": "aws_sns"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "access_key_id",
8 "type": "string",
9 "optional": false,
10 "label": "Access Key ID",
11 "hint": "Select your AWS account name > Security Credentials > Users. Get API key from existing user or create user"
12 },
13 {
14 "name": "secret_access_key",
15 "type": "string",
16 "optional": false,
17 "label": "Secret Access Key",
18 "hint": "Select your AWS account name > Security Credentials > Users. Get secret key from existing user or create user"
19 },
20 {
21 "name": "region",
22 "type": "string",
23 "optional": false,
24 "label": "Region",
25 "hint": "If your account url is https://eu-west-1.console.aws.amazon.com then use eu-west-1 as the region"
26 }
27 ]
28 }

Amazon SQS

Provider value:

1"provider": "aws_sqs"

Connection parameter configuration is not required for this connector.


AMcards

Provider value:

1"provider": "amcards"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "access_token",
8 "type": "string",
9 "optional": false,
10 "label": "Access token",
11 "hint": "Click <a href=\"https://amcards.com/profile/generate-access-token>here</a> to get access token"
12 }
13 ]
14 }

Anaplan

Provider value:

1"provider": "anaplan"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "authentication_type",
8 "type": "string",
9 "label": "Authentication type",
10 "pick_list":
11 [
12 [
13 "Certificate authentication",
14 "certificate_auth"
15 ],
16 [
17 "Username/password",
18 "basic_auth"
19 ]
20 ],
21 "default": "basic_auth"
22 },
23 {
24 "name": "username",
25 "type": "string",
26 "optional": false,
27 "label": "Username"
28 },
29 {
30 "name": "certificate",
31 "type": "string",
32 "optional": false,
33 "label": "Certificate",
34 "hint": "Enter a PEM-format certificate string. Learn how to obtain a CA certificate and convert to a PEM string\n<a href=\"https://help.anaplan.com/anapedia/Content/Administration_and_Security/Tenant_Administration/Security/ProcuringCACertificates.htm\" target=\"_blank\">here</a>.\n"
35 },
36 {
37 "name": "private_key",
38 "type": "string",
39 "optional": false,
40 "label": "Private key",
41 "hint": "Enter a PEM-format private key string."
42 },
43 {
44 "name": "password",
45 "type": "string",
46 "optional": false,
47 "label": "Password"
48 }
49 ]
50 }

Apache Kafka

Provider value:

1"provider": "kafka"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "profile",
8 "type": "string",
9 "label": "On-prem Kafka connection profile"
10 }
11 ]
12 }

Apttus

Provider value:

1"provider": "apttus"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "sandbox",
8 "type": "boolean",
9 "optional": true,
10 "label": "Sandbox",
11 "hint": "Is this connecting to a sandbox account?",
12 "default": "false"
13 }
14 ]
15 }

Apttus Intelligent Cloud

Provider value:

1"provider": "apttus_intelligent_cloud"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "subdomain",
8 "type": "string",
9 "optional": false,
10 "label": "Subdomain",
11 "hint": "Your AIC cloud name as found in your apttus AIC URL"
12 },
13 {
14 "name": "client_id",
15 "type": "string",
16 "optional": false,
17 "label": "Client ID"
18 },
19 {
20 "name": "client_secret",
21 "type": "string",
22 "optional": false,
23 "label": "Client secret"
24 },
25 {
26 "name": "directory_id",
27 "type": "string",
28 "optional": false,
29 "label": "Directory ID",
30 "hint": "Your directory ID can be found <a target=\"_blank\" href=\"https://portal.azure.com/#blade/Microsoft_AAD_IAM/ActiveDirectoryMenuBlade/Properties\">here</a>."
31 }
32 ]
33 }

Ariba

Provider value:

1"provider": "ariba"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "network_user_id",
8 "type": "string",
9 "label": "Network user ID"
10 },
11 {
12 "name": "shared_secret",
13 "type": "string",
14 "label": "Shared secret"
15 },
16 {
17 "name": "buyer_network_user_id",
18 "type": "string",
19 "label": "Buyer network user ID"
20 },
21 {
22 "name": "purchase_order_url",
23 "type": "string",
24 "label": "Purchase order URL",
25 "hint": "URL for submitting the purchase order cXML",
26 "default": "http://www.workato.com/ariba/purchase_order/1/78"
27 }
28 ]
29 }

Asana

Provider value:

1"provider": "asana"

Connection parameter configuration is not required for this connector.


AscentERP

Provider value:

1"provider": "ascent_erp"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "sandbox",
8 "type": "boolean",
9 "optional": true,
10 "label": "Sandbox",
11 "hint": "Is this connecting to a sandbox account?",
12 "default": "false"
13 }
14 ]
15 }

AWS Cognito

Provider value:

1"provider": "aws_cognito"

Connection parameter configuration is not required for this connector.


AWS Lambda

Provider value:

1"provider": "aws_lambda"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "api_key",
8 "type": "string",
9 "optional": false,
10 "label": "Access Key ID",
11 "hint": "Select your AWS account name > Security Credentials > Users. Get API key from existing user or create user (with AWSLambdaFullAccess permission) "
12 },
13 {
14 "name": "secret_key",
15 "type": "string",
16 "optional": false,
17 "label": "Secret Access Key",
18 "hint": "Select your AWS account name > Security Credentials > Users. Get secret key from existing user or create user (with AWSLambdaFullAccess permission) "
19 },
20 {
21 "name": "region",
22 "type": "string",
23 "optional": false,
24 "label": "Region",
25 "hint": "If your account url is https://eu-west-1.console.aws.amazon.com then use eu-west-1 as the region"
26 }
27 ]
28 }

AWS SNS

Provider value:

1"provider": "aws_sns"

Azure Blob Storage

Provider value:

1"provider": "azure_blob_storage"
1{
2 "oauth": true,
3 "personalization": true,
4 "oauth_token_pair": {
5 "label": "OAuth Token Pair",
6 "optional": true,
7 "type": "object",
8 "hint": "Allows you to create authorization code grant connections. You can create a shell connection in cases where you don't have an access token and refresh token.",
9 "properties": [
10 {
11 "label": "Access Token",
12 "name": "access_token",
13 "type": "string",
14 "optional": false
15 },
16 {
17 "label": "Refresh Token",
18 "name": "refresh_token",
19 "type": "string",
20 "optional": false
21 }
22 ]
23 },
24 "input": [
25 {
26 "label": "Storage account",
27 "optional": false,
28 "hint": "Enter the name of your storage account. Go to the Azure Portal and select your storage account to find this value.",
29 "type": "string",
30 "name": "storage_account"
31 },
32 {
33 "label": "Connection account type",
34 "default": "common",
35 "optional": true,
36 "hint": "Choose whether to sign in with a Common, Organization or Tenant-specific connection account type. Common supports personal, enterprise and multi-tenant accounts which are not tenant specific. Organization supports multi-tenant enterprise accounts. You must provide the Tenant ID/Domain for the Tenant specific option. The default setting is Common. Refer to the Microsoft Application configuration documentation for more information: https://learn.microsoft.com/en-us/entra/identity-platform/msal-client-application-configuration#authority",
37 "type": "string",
38 "name": "account_type",
39 "pick_list": [
40 [
41 "Common",
42 "common"
43 ],
44 [
45 "Organization",
46 "organization"
47 ],
48 [
49 "Tenant specific",
50 "tenant"
51 ]
52 ]
53 },
54 {
55 "label": "Authentication type",
56 "default": "oauth2_auth_code_grant",
57 "hint": "Select the authentication type. The default setting is Authorization code grant. You must provide the Client ID and Client secret and ensure that the app has sufficient permissions to access the Storage account provided in the connection if you select Client credentials grant.",
58 "optional": false,
59 "type": "string",
60 "name": "authentication_type",
61 "pick_list": [
62 [
63 "Authorization code grant",
64 "oauth2_auth_code_grant"
65 ],
66 [
67 "Client credentials",
68 "oauth2_client_credentials_grant"
69 ]
70 ]
71 },
72 {
73 "label": "Tenant ID/Domain",
74 "optional": false,
75 "hint": "Provide the tenant ID of the Azure Active Directory (Azure AD) tenant (a GUID), or the Azure AD tenant domain.",
76 "type": "string",
77 "name": "tenant_id"
78 }
79 ]
80}

Azure Monitor

Provider value:

1"provider": "azure_monitor"

BambooHR

Provider value:

1"provider": "bamboohr"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "api_token",
8 "type": "string",
9 "label": "API token",
10 "hint": "Can be found at https://[sub domain].bamboohr.com/settings/permissions/api.php"
11 },
12 {
13 "name": "subdomain",
14 "type": "string",
15 "label": "Sub-domain",
16 "hint": "Your Bamboo HR subdomain is most often your company name"
17 }
18 ]
19 }

Basecamp 2

Provider value:

1"provider": "basecamp"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "account_id",
8 "type": "integer",
9 "label": "Account ID",
10 "hint": "Your account ID is the numeric portion of the browser URL shown when you're logged in. <br />For example, If URL is https://basecamp.com/2551808/, your account ID is 2551808."
11 }
12 ]
13 }

Bigtincan

Provider value:

1"provider": "bigtincan"

Connection parameter configuration is not required for this connector.


Bill.com

Provider value:

1"provider": "bill"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "userName",
8 "type": "string",
9 "label": "User name",
10 "hint": "Email ID of the user"
11 },
12 {
13 "name": "password",
14 "type": "string",
15 "label": "Password",
16 "hint": "Password for login"
17 },
18 {
19 "name": "orgId",
20 "type": "string",
21 "label": "Organization ID",
22 "hint": "Log in to your Bill.com account, select gear icon, select settings then select profiles under your company.<br />The Organization ID is at the end of the URL, after 'https://www.bill.com/Organization?Id='"
23 }
24 ]
25 }

BIM 360

Provider value:

1"provider": "bim360"

Connection parameter configuration is not required for this connector.


Bitbucket

Provider value:

1"provider": "bitbucket"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "hostname",
8 "type": "string",
9 "optional": true,
10 "label": "Bitbucket hostname",
11 "hint": "Host (and optional port) of your server. Eg. http://localhost:7990/rest/api"
12 }
13 ]
14 }

Box

Provider value:

1"provider": "box"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "advanced_settings",
8 "type": "object",
9 "optional": true,
10 "label": "Advanced settings",
11 "properties":
12 [
13 {
14 "name": "api_scope",
15 "type": "string",
16 "optional": true,
17 "label": "Requested permissions (Oauth scopes)",
18 "hint": " Select <a href=\"https://developer.box.com/docs/scopes\" target=\"_blank\">permissions</a>\n to request for this connection. Minimum permissions that will always be requested are: Manage files and folders, groups, and webhooks.\n"
19 }
20 ]
21 }
22 ]
23 }

BrickFTP

Provider value:

1"provider": "brick_ftp"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "api_key",
8 "type": "string",
9 "label": "API Key",
10 "hint": "Enable REST and get key at https://<b>yoursite</b>.brickftp.com/sites/edit?group=api"
11 }
12 ]
13 }

Bynder

Provider value:

1"provider": "bynder"

Connection parameter configuration is not required for this connector.


Callable recipes by Workato

Provider value:

1"provider": "workato_service"

CandidateZip

Provider value:

1"provider": "candidate_zip"

Capsule CRM

Provider value:

1"provider": "capsulecrm"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "api_token",
8 "type": "string",
9 "label": "API token",
10 "hint": "Can be found at https://(your subdomain).capsulecrm.com/users/api"
11 },
12 {
13 "name": "subdomain",
14 "type": "string",
15 "label": "Sub-domain",
16 "hint": "Your Capsule CRM subdomain is most often your company name"
17 }
18 ]
19 }

Celonis

Provider value:

1"provider": "celonis"

Chargify

Provider value:

1"provider": "chargify"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "api_key",
8 "type": "string",
9 "label": "API Key",
10 "hint": "Can be generated from the “API Access” tab of your seller dashboard"
11 },
12 {
13 "name": "subdomain",
14 "type": "string",
15 "label": "Sub-domain",
16 "hint": "Your Chargify subdomain is most often your company name"
17 }
18 ]
19 }

Charts by Workato

Provider value:

1"provider": "graphs_and_charts"

Chatter

Provider value:

1"provider": "chatter"

Connection parameter configuration is not required for this connector.


Cisco Webex Teams

Provider value:

1"provider": "cisco_spark"

Connection parameter configuration is not required for this connector.


Clearbit

Provider value:

1"provider": "clearbit"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "api_key",
8 "type": "string",
9 "optional": true,
10 "label": "Api key",
11 "hint": "Can be found here: https://dashboard.clearbit.com/keys"
12 }
13 ]
14 }

Cloud Watch

Provider value:

1"provider": "cloud_watch"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "api_key",
8 "type": "string",
9 "optional": false,
10 "label": "Access Key ID",
11 "hint": "Select your AWS account name-> My Security Credentials-> Users. Get API key from existing user or create user (with Amazon CloudWatch permission) "
12 },
13 {
14 "name": "secret_key",
15 "type": "string",
16 "optional": false,
17 "label": "Secret Access Key",
18 "hint": "Select your AWS account name-> My Security Credentials-> Users. Get secret key from existing user or create user (with Amazon CloudWatch permission) "
19 },
20 {
21 "name": "region",
22 "type": "string",
23 "optional": false,
24 "label": "Region",
25 "hint": "If your account url is https://eu-west-1.console.aws.amazon.com then use eu-west-1 as the region"
26 }
27 ]
28 }

Codeship

Provider value:

1"provider": "codeship"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "api_key",
8 "type": "string",
9 "optional": false,
10 "label": "API key",
11 "hint": "Go to My Account->Account settings and get API key"
12 }
13 ]
14 }

Collection by Workato

Provider value:

1"provider": "workato_smart_list"

Concur

Provider value:

1"provider": "concur"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "sandbox",
8 "type": "boolean",
9 "optional": true,
10 "label": "Implementation instance",
11 "hint": "Is this connecting to an implementation instance? <a href=\"https://docs.workato.com/en/connectors/concur.html\">Learn more</a>.",
12 "default": "false"
13 },
14 {
15 "name": "user_name",
16 "type": "string",
17 "label": "Username",
18 "hint": "Specify the username or user ID."
19 },
20 {
21 "name": "password",
22 "type": "string",
23 "label": "Password",
24 "hint": "Password for login."
25 },
26 {
27 "name": "location",
28 "type": "string",
29 "label": "Location",
30 "hint": "Select the location of your implementation server.",
31 "pick_list":
32 [
33 [
34 "US Implementation",
35 "us-impl"
36 ],
37 [
38 "EU Implementation",
39 "emea-impl"
40 ]
41 ]
42 },
43 {
44 "name": "client_id",
45 "type": "string",
46 "label": "Client ID",
47 "hint": "Client ID of your implementation application."
48 },
49 {
50 "name": "client_secret",
51 "type": "string",
52 "label": "Client secret",
53 "hint": "Client secret of your implementation application."
54 }
55 ]
56 }

Confluence

Provider value:

1"provider": "confluence"
1{
2 "oauth": true,
3 "personalization": true,
4 "input": [
5 {
6 "label": "Auth type",
7 "type": "string",
8 "name": "auth_type",
9 "pick_list": [
10 [
11 "Basic",
12 "basic"
13 ],
14 [
15 "API token",
16 "api_token"
17 ],
18 [
19 "OAuth 2.0",
20 "oauth"
21 ]
22 ]
23 },
24 {
25 "label": "Confluence subdomain",
26 "hint": "Your Jira Service Desk name as found in your URL. Select an on-prem agent from the list or toggle to enter the on-premise Confluence URI for on-premise instances.",
27 "optional": false,
28 "type": "string",
29 "name": "subdomain"
30 },
31 {
32 "label": "Confluence root URI",
33 "optional": false,
34 "hint": "Root URI (protocol, optional port, hostname) of your Confluence host. For example: https://confluence.intranet.acme.com:7654",
35 "type": "string",
36 "name": "root_uri"
37 },
38 {
39 "label": "Email",
40 "type": "string",
41 "name": "email"
42 },
43 {
44 "label": "API token",
45 "hint": "Get/create API tokens by going to https://id.atlassian.com/manage/api-tokens.",
46 "type": "string",
47 "name": "apitoken"
48 },
49 {
50 "label": "Username",
51 "hint": "Your user name (not email)",
52 "type": "string",
53 "name": "username"
54 },
55 {
56 "label": "Password",
57 "type": "string",
58 "name": "password"
59 },
60 {
61 "label": "Client ID",
62 "optional": false,
63 "hint": "Your client id",
64 "type": "string",
65 "name": "client_id"
66 },
67 {
68 "label": "Client secret",
69 "optional": false,
70 "hint": "Your client secret",
71 "type": "string",
72 "name": "client_secret"
73 },
74 {
75 "label": "Advanced settings",
76 "optional": true,
77 "type": "object",
78 "name": "advanced_settings",
79 "properties": [
80 {
81 "label": "Scopes",
82 "hint": "Select scopes to request for this connection. Specify only the scopes that the client is authorized to use. Selected scopes are added to the default scope. Defaults to read:confluence-groups read:confluence-content.summary write:confluence-content search:confluence if left blank. Refer to the Atlassian Scopes for OAuth documentation for more information: https://developer.atlassian.com/cloud/confluence/scopes-for-oauth-2-3LO-and-forge-apps",
83 "type": "string",
84 "name": "scopes",
85 "optional": true,
86 "options": [
87 [
88 "Write Confluence content",
89 "write:confluence-content"
90 ],
91 [
92 "Read Confluence space summary",
93 "read:confluence-space.summary"
94 ],
95 [
96 "Manage Confluence space details",
97 "write:confluence-space"
98 ],
99 [
100 "Upload Confluence attachments",
101 "write:confluence-file"
102 ],
103 [
104 "Read Confluence content properties",
105 "read:confluence-props"
106 ],
107 [
108 "Write Confluence content properties",
109 "write:confluence-props"
110 ],
111 [
112 "Manage Confluence global settings",
113 "manage:confluence-configuration"
114 ],
115 [
116 "Read Confluence detailed content",
117 "read:confluence-content.all"
118 ],
119 [
120 "Read Confluence content summary",
121 "read:confluence-content.summary"
122 ],
123 [
124 "Search Confluence content and space summaries",
125 "search:confluence"
126 ],
127 [
128 "Read content permission in Confluence",
129 "read:confluence-content.permission"
130 ],
131 [
132 "Read user",
133 "read:confluence-user"
134 ],
135 [
136 "Read user groups",
137 "read:confluence-groups"
138 ],
139 [
140 "Create, remove and update user groups",
141 "write:confluence-groups"
142 ],
143 [
144 "Download content attachments",
145 "readonly:content.attachment:confluence"
146 ]
147 ]
148 },
149 {
150 "label": "Self hosted scopes",
151 "hint": "Select scopes to request for this connection. Specify only the scopes that the client is authorized to use. Selected scopes are added to the defaults scope. Defaults to READ, WRITE, ADMIN if left blank. Refer to the Atlassian Scopes for Incoming Links documentation for more information: https://confluence.atlassian.com/doc/oauth-2-0-scopes-for-incoming-links-1115674734.html",
152 "type": "string",
153 "name": "self_hosted_scopes",
154 "optional": true,
155 "options": [
156 [
157 "View content",
158 "READ"
159 ],
160 [
161 "Create, update, and delete content",
162 "WRITE"
163 ],
164 [
165 "Administer Confluence",
166 "ADMIN"
167 ],
168 [
169 "Administer Confluence system",
170 "SYSTEM_ADMIN"
171 ],
172 [
173 "Read all content",
174 "READ_ALL"
175 ],
176 [
177 "Manage subscriptions",
178 "MANAGE_SUBSCRIPTIONS"
179 ]
180 ]
181 }
182 ]
183 }
184 ]
185}

Confluence (Secondary)

Provider value:

1"provider": "confluence_secondary"
1{
2 "oauth": true,
3 "personalization": true,
4 "input": [
5 {
6 "label": "Auth type",
7 "type": "string",
8 "name": "auth_type",
9 "pick_list": [
10 [
11 "Basic",
12 "basic"
13 ],
14 [
15 "API token",
16 "api_token"
17 ],
18 [
19 "OAuth 2.0",
20 "oauth"
21 ]
22 ]
23 },
24 {
25 "label": "Confluence subdomain",
26 "hint": "Your Jira Service Desk name as found in your URL. Select an on-prem agent from the list or toggle to enter the on-premise Confluence URI for on-premise instances.",
27 "optional": false,
28 "type": "string",
29 "name": "subdomain"
30 },
31 {
32 "label": "Confluence root URI",
33 "optional": false,
34 "hint": "Root URI (protocol, optional port, hostname) of your Confluence host. For example: https://confluence.intranet.acme.com:7654",
35 "type": "string",
36 "name": "root_uri"
37 },
38 {
39 "label": "Email",
40 "type": "string",
41 "name": "email"
42 },
43 {
44 "label": "API token",
45 "hint": "Get/create API tokens by going to https://id.atlassian.com/manage/api-tokens.",
46 "type": "string",
47 "name": "apitoken"
48 },
49 {
50 "label": "Username",
51 "hint": "Your user name (not email)",
52 "type": "string",
53 "name": "username"
54 },
55 {
56 "label": "Password",
57 "type": "string",
58 "name": "password"
59 },
60 {
61 "label": "Client ID",
62 "optional": false,
63 "hint": "Your client id",
64 "type": "string",
65 "name": "client_id"
66 },
67 {
68 "label": "Client secret",
69 "optional": false,
70 "hint": "Your client secret",
71 "type": "string",
72 "name": "client_secret"
73 },
74 {
75 "label": "Advanced settings",
76 "optional": true,
77 "type": "object",
78 "name": "advanced_settings",
79 "properties": [
80 {
81 "label": "Scopes",
82 "hint": "Select scopes to request for this connection. Specify only the scopes that the client is authorized to use. Selected scopes are added to the default scope. Defaults to read:confluence-groups read:confluence-content.summary write:confluence-content search:confluence if left blank. Refer to the Atlassian Scopes for OAuth documentation for more information: https://developer.atlassian.com/cloud/confluence/scopes-for-oauth-2-3LO-and-forge-apps",
83 "type": "string",
84 "name": "scopes",
85 "optional": true,
86 "options": [
87 [
88 "Write Confluence content",
89 "write:confluence-content"
90 ],
91 [
92 "Read Confluence space summary",
93 "read:confluence-space.summary"
94 ],
95 [
96 "Manage Confluence space details",
97 "write:confluence-space"
98 ],
99 [
100 "Upload Confluence attachments",
101 "write:confluence-file"
102 ],
103 [
104 "Read Confluence content properties",
105 "read:confluence-props"
106 ],
107 [
108 "Write Confluence content properties",
109 "write:confluence-props"
110 ],
111 [
112 "Manage Confluence global settings",
113 "manage:confluence-configuration"
114 ],
115 [
116 "Read Confluence detailed content",
117 "read:confluence-content.all"
118 ],
119 [
120 "Read Confluence content summary",
121 "read:confluence-content.summary"
122 ],
123 [
124 "Search Confluence content and space summaries",
125 "search:confluence"
126 ],
127 [
128 "Read content permission in Confluence",
129 "read:confluence-content.permission"
130 ],
131 [
132 "Read user",
133 "read:confluence-user"
134 ],
135 [
136 "Read user groups",
137 "read:confluence-groups"
138 ],
139 [
140 "Create, remove and update user groups",
141 "write:confluence-groups"
142 ],
143 [
144 "Download content attachments",
145 "readonly:content.attachment:confluence"
146 ]
147 ]
148 },
149 {
150 "label": "Self hosted scopes",
151 "hint": "Select scopes to request for this connection. Specify only the scopes that the client is authorized to use. Selected scopes are added to the defaults scope. Defaults to READ, WRITE, ADMIN if left blank. Refer to the Atlassian Scopes for Incoming Links documentation for more information: https://confluence.atlassian.com/doc/oauth-2-0-scopes-for-incoming-links-1115674734.html",
152 "type": "string",
153 "name": "self_hosted_scopes",
154 "optional": true,
155 "options": [
156 [
157 "View content",
158 "READ"
159 ],
160 [
161 "Create, update, and delete content",
162 "WRITE"
163 ],
164 [
165 "Administer Confluence",
166 "ADMIN"
167 ],
168 [
169 "Administer Confluence system",
170 "SYSTEM_ADMIN"
171 ],
172 [
173 "Read all content",
174 "READ_ALL"
175 ],
176 [
177 "Manage subscriptions",
178 "MANAGE_SUBSCRIPTIONS"
179 ]
180 ]
181 }
182 ]
183 }
184 ]
185}

Confluent Cloud

Provider value:

1"provider": "confluent_cloud"

Coupa

Provider value:

1"provider": "coupa"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "host",
8 "type": "string",
9 "optional": false,
10 "label": "Host",
11 "hint": "Enter your Coupa URL.<br />Eg: https://<b>your-instance-name.coupacloud</b>.com"
12 },
13 {
14 "name": "api_key",
15 "type": "string",
16 "optional": false,
17 "label": "API key",
18 "hint": "Select the <b>Setup</b> tab and select <b>API Keys</b> under <b>Integrations</b> to generate API key.<br />Or go to <b>https://your-instance-name.coupacloud.com/api_keys</b> to generate API key."
19 }
20 ]
21 }

CSV by Workato

Provider value:

1"provider": "csv_parser"

cXML

Provider value:

1"provider": "cxml"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "network_user_id",
8 "type": "string",
9 "label": "Network user ID"
10 },
11 {
12 "name": "shared_secret",
13 "type": "string",
14 "label": "Shared secret"
15 },
16 {
17 "name": "buyer_network_user_id",
18 "type": "string",
19 "label": "Buyer network user ID"
20 },
21 {
22 "name": "purchase_order_url",
23 "type": "string",
24 "label": "Purchase order URL",
25 "hint": "URL for submitting the purchase order cXML",
26 "default": "http://www.workato.com/ariba/purchase_order/1/78"
27 }
28 ]
29 }

Deputy

Provider value:

1"provider": "deputy"

Connection parameter configuration is not required for this connector.


docparser

Provider value:

1"provider": "docparser"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "api_key",
8 "type": "string",
9 "optional": false,
10 "label": "API Key",
11 "hint": "Go to Account -> API Access to get the API key"
12 }
13 ]
14 }

DocuSign

Provider value:

1"provider": "docusign"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "demo",
8 "type": "boolean",
9 "optional": true,
10 "label": "Demo",
11 "hint": "Is this connecting to a demo account?",
12 "default": "false"
13 }
14 ]
15 }

DocuSign (Secondary)

Provider value:

1"provider": "docusign_secondary"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "demo",
8 "type": "boolean",
9 "optional": true,
10 "label": "Demo",
11 "hint": "Is this connecting to a demo account?",
12 "default": "false"
13 }
14 ]
15 }

Dropbox

Provider value:

1"provider": "dropbox"

Connection parameter configuration is not required for this connector.


Egnyte

Provider value:

1"provider": "egnyte"

Eloqua

Provider value:

1"provider": "eloqua"

Email by Workato

Provider value:

1"provider": "email"

eTapestry

Provider value:

1"provider": "etapestry"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "loginId",
8 "type": "string",
9 "label": "Login ID"
10 },
11 {
12 "name": "password",
13 "type": "string",
14 "label": "Password",
15 "hint": "Password for login"
16 }
17 ]
18 }

Eventbrite

Provider value:

1"provider": "event_brite"

Connection parameter configuration is not required for this connector.


Evernote

Provider value:

1"provider": "evernote"

Connection parameter configuration is not required for this connector.


everydayhero

Provider value:

1"provider": "everydayhero"

Connection parameter configuration is not required for this connector.


Expensify

Provider value:

1"provider": "expensify"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "partner_user_id",
8 "type": "string",
9 "label": "Partner user ID",
10 "hint": "Generate user ID and secret in Expensify <a href=\"https://www.expensify.com/tools/integrations/\" target=\"_blank\">integration settings</a>"
11 },
12 {
13 "name": "partner_user_secret",
14 "type": "string",
15 "label": "Partner user secret"
16 }
17 ]
18 }

Facebook

Provider value:

1"provider": "facebook"

Connection parameter configuration is not required for this connector.


Fairsail

Provider value:

1"provider": "fairsail"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "sandbox",
8 "type": "boolean",
9 "optional": true,
10 "label": "Sandbox",
11 "hint": "Is this connecting to a sandbox account?",
12 "default": "false"
13 }
14 ]
15 }

Feedly

Provider value:

1"provider": "feedly"

Connection parameter configuration is not required for this connector.


File tools by Workato

Provider value:

1"provider": "file_connector"

FinancialForce

Provider value:

1"provider": "financialforce"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "sandbox",
8 "type": "boolean",
9 "optional": true,
10 "label": "Sandbox",
11 "hint": "Is this connecting to a sandbox account?",
12 "default": "false"
13 }
14 ]
15 }

Force.com

Provider value:

1"provider": "forcecom"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "sandbox",
8 "type": "boolean",
9 "optional": true,
10 "label": "Sandbox",
11 "hint": "Is this connecting to a sandbox account?",
12 "default": "false"
13 }
14 ]
15 }

FreshBooks

Provider value:

1"provider": "fresh_books"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "auth_token",
8 "type": "string",
9 "label": "Authentication Token",
10 "hint": "From your FreshBooks page, My Account - FreshBooks API"
11 },
12 {
13 "name": "subdomain",
14 "type": "string",
15 "label": "Subdomain",
16 "hint": "Your account name as it appears in your FreshBooks web address, usually your company name"
17 }
18 ]
19 }

Freshdesk

Provider value:

1"provider": "fresh_desk"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "api_key",
8 "type": "string",
9 "label": "API key",
10 "hint": "You can find the API key under, \"User Profile\" drop-down (top right corner of your helpdesk) > Profile Settings > Your API Key"
11 },
12 {
13 "name": "help_desk_name",
14 "type": "string",
15 "label": "Helpdesk name",
16 "hint": "yourcompany.freshdesk.com"
17 }
18 ]
19 }

FTP/FTPS

Provider value:

1"provider": "ftps"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "servertype",
8 "type": "string",
9 "label": "Server type",
10 "hint": "Select secure/non-secure FTP as per your FTP server. Make sure you have whitelisted Workato IP addresses. <a href=\"http://docs.workato.com/en/security.html\" target=\"_blank\">Learn more</a>",
11 "pick_list":
12 [
13 [
14 "FTP-S",
15 "FTP-S"
16 ],
17 [
18 "FTP",
19 "FTP"
20 ]
21 ],
22 "default": "ftp-s"
23 },
24 {
25 "name": "verify_cert",
26 "type": "boolean",
27 "optional": true,
28 "label": "Verify cert",
29 "hint": "Verify FTPS server certificate"
30 },
31 {
32 "name": "ftps_conn",
33 "type": "string",
34 "optional": true,
35 "label": "Ftps conn",
36 "hint": "should be defined only for FTP-S",
37 "pick_list":
38 [
39 [
40 "Explicit",
41 "Explicit"
42 ],
43 [
44 "Implicit",
45 "Implicit"
46 ]
47 ]
48 },
49 {
50 "name": "hostname",
51 "type": "string",
52 "label": "Host name",
53 "hint": "For example, companyname.sampleftp.com"
54 },
55 {
56 "name": "username",
57 "type": "string",
58 "label": "Username"
59 },
60 {
61 "name": "password",
62 "type": "string",
63 "label": "Password"
64 }
65 ]
66 }

FTP/FTPS (Secondary)

Provider value:

1"provider": "ftps_secondary"

FullContact

Provider value:

1"provider": "fullcontact"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "apiKey",
8 "type": "string",
9 "label": "API key",
10 "hint": "<a href=\"https://portal.fullcontact.com/admin\" target=\"_blank\" rel=\"noopener\">How do I find my Fullcontact API key?</a>"
11 }
12 ]
13 }

Funraise

Provider value:

1"provider": "funraise"

G2

Provider value:

1"provider": "g2_crowd"

GitHub

Provider value:

1"provider": "github"

Connection parameter configuration is not required for this connector.


Gmail

Provider value:

1"provider": "gmail"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "read_email_permission",
8 "type": "boolean",
9 "optional": true,
10 "label": "Read email permission",
11 "hint": "Based on Google's updated security policies, Gmail triggers or download attachment\nactions can only be used by paid G Suite account. To use them, enable this setting\nand request your G Suite admin to whitelist the Workato Gmail Connector app and\ngrant it read email permission before linking your GMail account here.\n<a href=\"https://docs.workato.com/en/connectors/gmail.html\" target=\"_blank\">Learn more</a>\n"
12 }
13 ]
14 }

Gong.io

Provider value:

1"provider": "gong"

Google BigQuery

Provider value:

1"provider": "google_big_query"

Connection parameter configuration is not required for this connector.


Google Calendar

Provider value:

1"provider": "google_calendar"

Connection parameter configuration is not required for this connector.


Google Contacts

Provider value:

1"provider": "google_contacts"

Connection parameter configuration is not required for this connector.


Google Dialogflow

Provider value:

1"provider": "api_ai_nlu"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "project_name",
8 "type": "string",
9 "optional": true,
10 "label": "Project name",
11 "hint": "Can be found at the generated json file."
12 },
13 {
14 "name": "client_access_token",
15 "type": "string",
16 "label": "Client access token",
17 "hint": "Create a client access token using this <a href=\"https://docs.workato.com/en/connectors/dialogflow.html\"arget=\"_blank\">Link</a>\n"
18 }
19 ]
20 }

Google Drive

Provider value:

1"provider": "google_drive"

Connection parameter configuration is not required for this connector.


Google People

Provider value:

1"provider": "google_people"

Google Sheets

Provider value:

1"provider": "google_sheets"

Connection parameter configuration is not required for this connector.


Google Speech to Text

Provider value:

1"provider": "google_speech_to_text"

Connection parameter configuration is not required for this connector.


Google Text to Speech

Provider value:

1"provider": "google_text_to_speech"

Connection parameter configuration is not required for this connector.


Google Translate

Provider value:

1"provider": "google_translate"

Connection parameter configuration is not required for this connector.


Google Vision

Provider value:

1"provider": "google_vision"

Connection parameter configuration is not required for this connector.


Google Workspace

Provider value:

1"provider": "google_workspace"

Goombal

Provider value:

1"provider": "goombal"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "Email",
8 "type": "string",
9 "label": "Email"
10 },
11 {
12 "name": "Password",
13 "type": "string",
14 "label": "Password"
15 },
16 {
17 "name": "instance",
18 "type": "string",
19 "optional": true,
20 "label": "Instance",
21 "hint": "Leave empty to default to <b>app</b>"
22 }
23 ]
24 }

GotoWebinar

Provider value:

1"provider": "goto_webinar"

Connection parameter configuration is not required for this connector.


Greenhouse

Provider value:

1"provider": "greenhouse"

HipChat

Provider value:

1"provider": "hipchat"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "subdomain",
8 "type": "string",
9 "optional": false,
10 "label": "Subdomain",
11 "hint": "If your HipChat url is https://abc.hipchat.com, then subdomain is 'abc'"
12 },
13 {
14 "name": "auth_token",
15 "type": "string",
16 "optional": false,
17 "label": "Access token",
18 "hint": "Go to yourdomain.hipchat.com/account/api and create new token. Select \"View Group\" or \"View Room\" as one of the scopes"
19 }
20 ]
21 }

HTTP (OAuth2)

Provider value:

1"provider": "rest_oauth"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "oauth2_auth_url",
8 "type": "string",
9 "label": "OAuth2 auth URL",
10 "hint": "Use `<b>https://www.workato.com/oauth/callback</b>` as callback url. <a href=\"https://docs.workato.com/en/developing-connectors/http/connection-setup.html#authentication-type-oauth2-authorization-code-grant\" target=\"_blank\">Learn how to authenticate.</a>\n"
11 },
12 {
13 "name": "oauth2_token_url",
14 "type": "string",
15 "label": "OAuth2 token URL"
16 },
17 {
18 "name": "oauth2_client_id",
19 "type": "string",
20 "label": "OAuth2 client ID"
21 },
22 {
23 "name": "oauth2_client_secret",
24 "type": "string",
25 "label": "OAuth2 client secret"
26 }
27 ]
28 }

HTTP

Provider value:

1"provider": "rest"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "auth_type",
8 "type": "string",
9 "label": "Authentication type",
10 "hint": "Select an authentication method. <a href=\"https://docs.workato.com/en/developing-connectors/http/connection-setup.html\" target=\"_blank\">Learn how to authenticate</a>",
11 "pick_list":
12 [
13 [
14 "None",
15 "no_auth"
16 ],
17 [
18 "Basic",
19 "basic"
20 ],
21 [
22 "Header auth",
23 "headers"
24 ],
25 [
26 "Query params",
27 "query"
28 ],
29 [
30 "On-prem NTLM",
31 "ntlm"
32 ],
33 [
34 "OAuth 2 (authorization code grant)",
35 "oauth2_auth_code_grant"
36 ],
37 [
38 "OAuth 2 (client credentials grant)",
39 "oauth2_client_credentials_grant"
40 ],
41 [
42 "Custom",
43 "custom"
44 ]
45 ]
46 },
47 {
48 "name": "profile",
49 "type": "string",
50 "label": "On-prem NTLM profile",
51 "hint": "NTLM Profile name given in the on-prem agent's <b>config.yml</b> file."
52 },
53 {
54 "name": "basic_user",
55 "type": "string",
56 "optional": true,
57 "label": "Basic auth user"
58 },
59 {
60 "name": "basic_password",
61 "type": "string",
62 "optional": true,
63 "label": "Basic auth password"
64 },
65 {
66 "name": "header_pair",
67 "type": "string",
68 "optional": true,
69 "label": "Header authorization",
70 "hint": "Add custom auth headers, one per line, for example, <b>X-API-Token: secret42</b>"
71 },
72 {
73 "name": "url_param",
74 "type": "string",
75 "optional": true,
76 "label": "GET-params authorization",
77 "hint": "Add custom GET parameters, one per line, for example, <b>token=secret42</b>"
78 },
79 {
80 "name": "oauth2_auth_url",
81 "type": "string",
82 "label": "OAuth2 authorization URL",
83 "hint": "Use <b>https://www.workato.com/oauth/callback</b> as callback url. Use <b>response_type=code</b> as param, if needed. <a href=\"https://docs.workato.com/en/developing-connectors/http/connection-setup.html#authentication-type-oauth2-authorization-code-grant\" target=\"_blank\">Learn more</a>\n"
84 },
85 {
86 "name": "oauth2_token_url",
87 "type": "string",
88 "label": "OAuth2 token URL"
89 },
90 {
91 "name": "oauth2_client_id",
92 "type": "string",
93 "label": "OAuth2 client ID"
94 },
95 {
96 "name": "oauth2_client_secret",
97 "type": "string",
98 "label": "OAuth2 client secret"
99 },
100 {
101 "name": "param_type",
102 "type": "string",
103 "optional": true,
104 "label": "How does the API require credentials to be sent to request a token?",
105 "hint": "Send client ID and secret in token request body or as a base64 encoded string in the header?",
106 "pick_list":
107 [
108 [
109 "Header",
110 "basic"
111 ],
112 [
113 "Body",
114 "payload"
115 ]
116 ]
117 },
118 {
119 "name": "ssl_params",
120 "type": "boolean",
121 "optional": true,
122 "label": "Use client SSL certificate",
123 "default": "false"
124 },
125 {
126 "name": "ssl_client_cert",
127 "type": "string",
128 "optional": true,
129 "label": "SSL client certificate"
130 },
131 {
132 "name": "ssl_client_key",
133 "type": "string",
134 "optional": true,
135 "label": "SSL client key"
136 },
137 {
138 "name": "ssl_ca_cert",
139 "type": "string",
140 "optional": true,
141 "label": "Custom CA certificate"
142 }
143 ]
144 }

HTTP (Secondary)

Provider value:

1"provider": "rest_secondary"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "auth_type",
8 "type": "string",
9 "label": "Authentication type",
10 "hint": "Select an authentication method. <a href=\"https://docs.workato.com/en/developing-connectors/http/connection-setup.html\" target=\"_blank\">Learn how to authenticate</a>",
11 "pick_list":
12 [
13 [
14 "None",
15 "no_auth"
16 ],
17 [
18 "Basic",
19 "basic"
20 ],
21 [
22 "Header auth",
23 "headers"
24 ],
25 [
26 "Query params",
27 "query"
28 ],
29 [
30 "On-prem NTLM",
31 "ntlm"
32 ],
33 [
34 "OAuth 2 (authorization code grant)",
35 "oauth2_auth_code_grant"
36 ],
37 [
38 "OAuth 2 (client credentials grant)",
39 "oauth2_client_credentials_grant"
40 ],
41 [
42 "Custom",
43 "custom"
44 ]
45 ]
46 },
47 {
48 "name": "profile",
49 "type": "string",
50 "label": "On-prem NTLM profile",
51 "hint": "NTLM Profile name given in the on-prem agent's <b>config.yml</b> file."
52 },
53 {
54 "name": "basic_user",
55 "type": "string",
56 "optional": true,
57 "label": "Basic auth user"
58 },
59 {
60 "name": "basic_password",
61 "type": "string",
62 "optional": true,
63 "label": "Basic auth password"
64 },
65 {
66 "name": "header_pair",
67 "type": "string",
68 "optional": true,
69 "label": "Header authorization",
70 "hint": "Add custom auth headers, one per line, for example, <b>X-API-Token: secret42</b>"
71 },
72 {
73 "name": "url_param",
74 "type": "string",
75 "optional": true,
76 "label": "GET-params authorization",
77 "hint": "Add custom GET parameters, one per line, for example, <b>token=secret42</b>"
78 },
79 {
80 "name": "oauth2_auth_url",
81 "type": "string",
82 "label": "OAuth2 authorization URL",
83 "hint": "Use <b>https://www.workato.com/oauth/callback</b> as callback url. Use <b>response_type=code</b> as param, if needed."
84 },
85 {
86 "name": "oauth2_token_url",
87 "type": "string",
88 "label": "OAuth2 token URL"
89 },
90 {
91 "name": "oauth2_client_id",
92 "type": "string",
93 "label": "OAuth2 client ID"
94 },
95 {
96 "name": "oauth2_client_secret",
97 "type": "string",
98 "label": "OAuth2 client secret"
99 },
100 {
101 "name": "param_type",
102 "type": "string",
103 "optional": true,
104 "label": "How does the API require credentials to be sent to request a token?",
105 "hint": "Send client ID and secret in token request body or as a base64 encoded string in the header?",
106 "pick_list":
107 [
108 [
109 "Header",
110 "basic"
111 ],
112 [
113 "Body",
114 "payload"
115 ]
116 ]
117 },
118 {
119 "name": "ssl_params",
120 "type": "boolean",
121 "optional": true,
122 "label": "Use client SSL certificate",
123 "default": "false"
124 },
125 {
126 "name": "ssl_client_cert",
127 "type": "string",
128 "optional": true,
129 "label": "SSL client certificate"
130 },
131 {
132 "name": "ssl_client_key",
133 "type": "string",
134 "optional": true,
135 "label": "SSL client key"
136 },
137 {
138 "name": "ssl_ca_cert",
139 "type": "string",
140 "optional": true,
141 "label": "Custom CA certificate"
142 }
143 ]
144 }

HubSpot

Provider value:

1"provider": "hubspot"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "advanced_settings",
8 "type": "object",
9 "optional": true,
10 "label": "Advanced settings",
11 "properties":
12 [
13 {
14 "name": "scopes",
15 "type": "string",
16 "optional": true,
17 "label": "Scopes",
18 "hint": " Select the areas of HubSpot this connection will have access to. Selecting scopes which your HubSpot account does not have access to will result in an error. Our default selection should be enough when working with contacts, companies, and deals.\n",
19 "default": "contacts"
20 }
21 ]
22 }
23 ]
24 }

IBM Watson Workspace

Provider value:

1"provider": "ibm_workspace"

Connection parameter configuration is not required for this connector.


Infusionsoft

Provider value:

1"provider": "infusionsoft"

Connection parameter configuration is not required for this connector.


Insightly

Provider value:

1"provider": "insightly"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "api_key",
8 "type": "string",
9 "label": "Api key",
10 "hint": "Click the dropdown at the top right corner of the home page. API KEY found under the 'User settings'"
11 }
12 ]
13 }

Instagram

Provider value:

1"provider": "instagram"

Connection parameter configuration is not required for this connector.


Intercom

Provider value:

1"provider": "intercom"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "user_ids",
8 "type": "string",
9 "optional": true,
10 "label": "Example user IDs",
11 "hint": " Provide comma separated Intercom user IDs, for example, <b>54253</b>, for Workato to retrieve the custom fields set up for these users.\n Maximum of <b>3</b> user IDs can be provided.\n"
12 }
13 ]
14 }

JavaScript

Provider value:

1"provider": "js_eval"

JDBC

Provider value:

1"provider": "jdbc"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "profile",
8 "type": "string",
9 "label": "On-prem connection profile"
10 },
11 {
12 "name": "schema_name",
13 "type": "string",
14 "optional": true,
15 "label": "Schema"
16 }
17 ]
18 }

JDBC (Secondary)

Provider value:

1"provider": "jdbc_secondary"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "profile",
8 "type": "string",
9 "label": "On-prem connection profile"
10 },
11 {
12 "name": "schema_name",
13 "type": "string",
14 "optional": true,
15 "label": "Schema"
16 }
17 ]
18 }

Jenkins

Provider value:

1"provider": "jenkins"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "root_uri",
8 "type": "string",
9 "optional": false,
10 "label": "Jenkins root URI",
11 "hint": " Host (and optional port) of your Jenkins server. Eg. http://workato-jenkins.<br />\n Go to Manage Jenkins-> Configure Global Security. Uncheck <b>Prevent Cross Site Request Forgery exploits</b>.\n"
12 },
13 {
14 "name": "username",
15 "type": "string",
16 "optional": false,
17 "label": "Username"
18 },
19 {
20 "name": "password",
21 "type": "string",
22 "optional": false,
23 "label": "Password"
24 }
25 ]
26 }

Jira

Provider value:

1"provider": "jira"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "host_name",
8 "type": "string",
9 "label": "Host name",
10 "hint": "Refer to the URL of your Jira account and complete the above URL. For example, <b>workato.atlassian.net</b>"
11 },
12 {
13 "name": "host_url",
14 "type": "string",
15 "label": "Host name with protocol",
16 "hint": "Refer to the URL of your Jira account and specify the above URL.<br />for example, <b>http://workato.atlassian.net</b>"
17 },
18 {
19 "name": "auth_type",
20 "type": "string",
21 "label": "Authentication Type",
22 "hint": "Select an authentication method",
23 "pick_list":
24 [
25 [
26 "API Token",
27 "api_token"
28 ]
29 ]
30 },
31 {
32 "name": "email",
33 "type": "string",
34 "optional": true,
35 "label": "Email"
36 },
37 {
38 "name": "apitoken",
39 "type": "string",
40 "optional": true,
41 "label": "API token",
42 "hint": "Get/create API tokens by going to <a href=\"https://id.atlassian.com\" target=\"_blank\">Learn more</a>\n"
43 }
44 ]
45 }

Jira (Secondary)

Provider value:

1"provider": "jira_secondary"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "host_name",
8 "type": "string",
9 "label": "Host name",
10 "hint": "Refer to the URL of your Jira account and complete the above URL. For example, <b>workato.atlassian.net</b>"
11 },
12 {
13 "name": "host_url",
14 "type": "string",
15 "label": "Host name with protocol",
16 "hint": "Refer to the URL of your Jira account and specify the above URL.<br />for example, <b>http://workato.atlassian.net</b>"
17 },
18 {
19 "name": "auth_type",
20 "type": "string",
21 "label": "Authentication Type",
22 "hint": "Select an authentication method",
23 "pick_list":
24 [
25 [
26 "API Token",
27 "api_token"
28 ]
29 ]
30 },
31 {
32 "name": "email",
33 "type": "string",
34 "optional": true,
35 "label": "Email"
36 },
37 {
38 "name": "apitoken",
39 "type": "string",
40 "optional": true,
41 "label": "API token",
42 "hint": "Get/create API tokens by going to <a href=\"https://id.atlassian.com\" target=\"_blank\">Learn more</a>\n"
43 }
44 ]
45 }

JIRA Service Desk

Provider value:

1"provider": "jira_service_desk"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "host_name",
8 "type": "string",
9 "label": "Host name",
10 "hint": "Refer to the URL of your Jira account and complete the above URL. For example, <b>workato.atlassian.net</b>"
11 },
12 {
13 "name": "host_url",
14 "type": "string",
15 "label": "Host name with protocol",
16 "hint": "Refer to the URL of your Jira account and specify the above URL.<br />for example, <b>http://workato.atlassian.net</b>"
17 },
18 {
19 "name": "api_token_auth",
20 "type": "boolean",
21 "label": "API token authentication?",
22 "hint": "Is authentication based on API tokens? If Yes, provide <b>Email</b> & <b>API token</b>. If No, provide <b>Username</b> & <b>Password</b>.",
23 "default": "false"
24 },
25 {
26 "name": "email",
27 "type": "string",
28 "optional": true,
29 "label": "Email"
30 },
31 {
32 "name": "apitoken",
33 "type": "string",
34 "optional": true,
35 "label": "API token",
36 "hint": "Get/create API tokens by going to <a href=\"https://id.atlassian.comtlassian.com\" target=\"_blank\">Learn more</a>\n"
37 }
38 ]
39 }

JMS

Provider value:

1"provider": "jms"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "profile",
8 "type": "string",
9 "label": "On-prem JMS connection profile"
10 }
11 ]
12 }

JobScience

Provider value:

1"provider": "jobscience"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "sandbox",
8 "type": "boolean",
9 "optional": true,
10 "label": "Sandbox",
11 "hint": "Is this connecting to a sandbox account?",
12 "default": "false"
13 }
14 ]
15 }

Jobvite

Provider value:

1"provider": "jobvite"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "api_key",
8 "type": "string",
9 "label": "API Key",
10 "hint": "Enter the <b>Api Key</b> from jobvite."
11 },
12 {
13 "name": "secret",
14 "type": "string",
15 "label": "Secret",
16 "hint": "Enter the <b>Secret</b> from jobvite."
17 },
18 {
19 "name": "use_staging",
20 "type": "boolean",
21 "label": "Use Staging",
22 "hint": "If selected, staging jobvite instance will be used",
23 "default": "false"
24 },
25 {
26 "name": "use_v2",
27 "type": "boolean",
28 "optional": true,
29 "label": "Use V2 API",
30 "hint": "If selected, V2 version will be used",
31 "default": "false"
32 }
33 ]
34 }

JSON parser by Workato

Provider value:

1"provider": "json_parser"

JSON Web Token (JWT)

Provider value:

1"provider": "jwt"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "alg",
8 "type": "string",
9 "label": "Signing algorithm",
10 "hint": "Select the JWT signing algorithm",
11 "pick_list":
12 [
13 [
14 "HMAC using SHA-256",
15 "HS256"
16 ],
17 [
18 "HMAC using SHA-384",
19 "HS384"
20 ],
21 [
22 "HMAC using SHA-512",
23 "HS512"
24 ],
25 [
26 "RSA using SHA-256",
27 "RS256"
28 ],
29 [
30 "RSA using SHA-384",
31 "RS384"
32 ],
33 [
34 "RSA using SHA-512",
35 "RS512"
36 ]
37 ],
38 "default": "HS256"
39 },
40 {
41 "name": "hmac_secret",
42 "type": "string",
43 "optional": true,
44 "label": "HMAC shared secret",
45 "hint": "Enter the shared HMAC secret(min 32 characters)"
46 },
47 {
48 "name": "public_key",
49 "type": "string",
50 "optional": true,
51 "label": "Public key",
52 "hint": " Learn how to generate a pair of Public key and Private key\n<a href=\"https://docs.workato.com/en/features/pgp-encryption.html\" target=\"_blank\">here</a>.\n"
53 },
54 {
55 "name": "private_key",
56 "type": "string",
57 "optional": true,
58 "label": "Private key",
59 "hint": " Learn how to generate a pair of Public key and Private key\n <a href=\"https://docs.workato.com/en/features/pgp-encryption.html\" target=\"_blank\">here</a>.\n"
60 },
61 {
62 "name": "passphrase",
63 "type": "string",
64 "optional": true,
65 "label": "Passphrase",
66 "hint": "Passphrase for encrypted private key"
67 }
68 ]
69 }

JumpCloud

Provider value:

1"provider": "jump_cloud"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "api_key",
8 "type": "string",
9 "optional": false,
10 "label": "API key",
11 "hint": "Click <a href=\"https://docs.jumpcloud.com/2.0/authentication-and-authorization/authentication-and-authorization-overview#access-your-api-key\" target=\"_blank\">here</a> to get an API key."
12 },
13 {
14 "name": "org_id",
15 "type": "string",
16 "optional": true,
17 "label": "Organization ID",
18 "hint": "<span class='provider'>Organization ID </span> is required for all multi-tenant admins. Click <a href=\"https://docs.jumpcloud.com/2.0/authentication-and-authorization/multi-tenant-organization-api-headers#to-obtain-an-individual-organization-id-via-the-ui\" target=\"_blank\">here</a> to get an Organization ID."
19 }
20 ]
21 }

Kenandy

Provider value:

1"provider": "kenandy"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "sandbox",
8 "type": "boolean",
9 "optional": true,
10 "label": "Sandbox",
11 "hint": "Is this connecting to a sandbox account?",
12 "default": "false"
13 }
14 ]
15 }

Kizen

Provider value:

1"provider": "kizen"

Knack

Provider value:

1"provider": "knack"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "app_id",
8 "type": "string",
9 "optional": false,
10 "label": "Application ID",
11 "hint": "Hover over gear icon, Select API & Code -> get Application ID"
12 },
13 {
14 "name": "api_key",
15 "type": "string",
16 "optional": false,
17 "label": "API Key",
18 "hint": "Hover over gear icon, Select API & Code -> get API Key"
19 }
20 ]
21 }

Librato

Provider value:

1"provider": "librato"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "username",
8 "type": "string",
9 "optional": false,
10 "label": "Username",
11 "hint": "Go to Account Settings->API Token. GET token. eg: abc@efg.com"
12 },
13 {
14 "name": "password",
15 "type": "string",
16 "optional": false,
17 "label": "Password or personal API key",
18 "hint": "If its API key, Go to Account Settings->API Token. GET API Key"
19 }
20 ]
21 }

LinkedIn

Provider value:

1"provider": "linkedin"

Connection parameter configuration is not required for this connector.


Linked objects by Workato

Provider value:

1"provider": "linked_objects"

Lists by Workato

Provider value:

1"provider": "workato_list"

Logger by Workato

Provider value:

1"provider": "logger"

Lookup tables by Workato

Provider value:

1"provider": "lookup_table"

Magento 2

Provider value:

1"provider": "magento"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "server",
8 "type": "string",
9 "optional": false,
10 "label": "Server domain",
11 "hint": "Enter your full URL, for example, <b>http://mymagentostore.com</b>"
12 },
13 {
14 "name": "username",
15 "type": "string",
16 "optional": false,
17 "label": "Username",
18 "hint": "If account type is admin, enter username. Otherwise, enter email address"
19 },
20 {
21 "name": "account_type",
22 "type": "string",
23 "optional": false,
24 "label": "Account type",
25 "hint": "Select if your connected account is an admin or non-admin account",
26 "pick_list":
27 [
28 [
29 "admin",
30 "admin"
31 ],
32 [
33 "customer",
34 "customer"
35 ]
36 ]
37 },
38 {
39 "name": "password",
40 "type": "string",
41 "optional": false,
42 "label": "Password"
43 }
44 ]
45 }

MailChimp

Provider value:

1"provider": "mailchimp"

Connection parameter configuration is not required for this connector.


Mapper by Workato

Provider value:

1"provider": "workato_mapper"

Marketo

Provider value:

1"provider": "marketo"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "endpoint",
8 "type": "string",
9 "label": "REST Endpoint",
10 "hint": "Admin/Web Services/REST API - more <a href=\"http://developers.marketo.com/documentation/rest/endpoint-url/\">here</a>."
11 },
12 {
13 "name": "client_id",
14 "type": "string",
15 "label": "Custom Service client ID",
16 "hint": "To create a Marketo custom service see <a href=\"http://developers.marketo.com/documentation/rest/custom-service/\">this</a>."
17 },
18 {
19 "name": "client_secret",
20 "type": "string",
21 "label": "Custom Service client secret"
22 }
23 ]
24 }

Marketo (Secondary)

Provider value:

1"provider": "marketo_secondary"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "endpoint",
8 "type": "string",
9 "label": "REST Endpoint",
10 "hint": "Admin/Web Services/REST API - more <a href=\"http://developers.marketo.com/documentation/rest/endpoint-url/\">here</a>."
11 },
12 {
13 "name": "client_id",
14 "type": "string",
15 "label": "Custom Service client ID",
16 "hint": "To create a Marketo custom service see <a href=\"http://developers.marketo.com/documentation/rest/custom-service/\">this</a>."
17 },
18 {
19 "name": "client_secret",
20 "type": "string",
21 "label": "Custom Service client secret"
22 }
23 ]
24 }

Message template by Workato

Provider value:

1"provider": "workato_template"

Microsoft Dynamics 365

Provider value:

1"provider": "microsoft_dynamics_crm"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "subdomain",
8 "type": "string",
9 "label": "Subdomain",
10 "hint": " If your Dynamics CRM URL is <b>https://abc.crm.dynamics.com</b>,\n subdomain will be <b>abc.crm.dynamics.com</b>\n"
11 },
12 {
13 "name": "account_type",
14 "type": "string",
15 "label": "Account type",
16 "pick_list":
17 [
18 [
19 "On premise",
20 "onpremises"
21 ],
22 [
23 "Cloud",
24 "online"
25 ]
26 ]
27 },
28 {
29 "name": "adfs_name",
30 "type": "string",
31 "optional": true,
32 "label": "AD domain name",
33 "hint": " Requires, if the account type is 'On premise'.\n If your AD server is <b>https://abc.adfs.dynamics.com/adfs</b>, AD domain name will be <b>abc.adfs.dynamics.com</b>\n"
34 },
35 {
36 "name": "client_id",
37 "type": "string",
38 "label": "Client ID",
39 "hint": "Click <a href=\"http://docs.workato.com/en/connectors/dynamics-crm.html\" target=\"_blank\">here</a> to get a client ID."
40 },
41 {
42 "name": "client_secret",
43 "type": "string",
44 "optional": true,
45 "label": "Client secret"
46 }
47 ]
48 }

Microsoft Sharepoint

Provider value:

1"provider": "microsoft_sharepoint"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "subdomain",
8 "type": "string",
9 "optional": false,
10 "label": "Subdomain",
11 "hint": "Enter your SharePoint subdomain as found in your SharePoint URL. If your SharePoint URL is <b>https://abc.sharepoint.com</b>, then subdomain is <b>abc</b>"
12 },
13 {
14 "name": "domain",
15 "type": "string",
16 "label": "Domain",
17 "hint": "Enter full URL of your SharePoint domain. <b>for example, https://company-name.sharepoint.com</b>."
18 },
19 {
20 "name": "client_id",
21 "type": "string",
22 "optional": true,
23 "label": "Client ID",
24 "hint": "<a href=\"https://docs.workato.com/en/connectors/sharepoint.html\" target=\"_blank\">Click here</a> to learn how to generate Client ID and Client secret."
25 },
26 {
27 "name": "client_secret",
28 "type": "string",
29 "optional": true,
30 "label": "Client secret",
31 "hint": "<a href=\"https://docs.workato.com/en/connectors/sharepoint.html\" target='_blank'>Click here</a> to learn how to generate Client ID and Client secret."
32 },
33 {
34 "name": "connection_siteurl",
35 "type": "string",
36 "optional": true,
37 "label": "Site name",
38 "hint": " The name of the SharePoint site you want to connect to. Use this field if you only have access to that specific site, but not the home site.\n If left blank, Workato will connect to your default home site.\n Use the site name as found in the URL of site page. eg. If the URL is <b>https://company-name.sharepoint.com/sites/product</b>, then use <b>product</b>.\n"
39 }
40 ]
41 }

Miro

Provider value:

1"provider": "miro_board"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "client_id",
8 "type": "string",
9 "optional": false,
10 "label": "Client ID"
11 },
12 {
13 "name": "client_secret",
14 "type": "string",
15 "optional": false,
16 "label": "Client secret"
17 }
18 ]
19 }

Mixpanel

Provider value:

1"provider": "mixpanel"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "api_key",
8 "type": "string",
9 "label": "Api key",
10 "hint": "Can be found in your account menu within the projects tab"
11 },
12 {
13 "name": "api_secret",
14 "type": "string",
15 "label": "Api secret",
16 "hint": "Can be found in your account menu within the projects tab"
17 }
18 ]
19 }

MySQL

Provider value:

1"provider": "mysql"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "profile",
8 "type": "string",
9 "label": "On-prem connection profile"
10 },
11 {
12 "name": "username",
13 "type": "string",
14 "label": "Username"
15 },
16 {
17 "name": "password",
18 "type": "string",
19 "label": "Password"
20 },
21 {
22 "name": "host",
23 "type": "string",
24 "label": "Host"
25 },
26 {
27 "name": "port",
28 "type": "string",
29 "label": "Port"
30 },
31 {
32 "name": "database",
33 "type": "string",
34 "label": "Database"
35 }
36 ]
37 }

MySQL (Secondary)

Provider value:

1"provider": "mysql_secondary"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "profile",
8 "type": "string",
9 "label": "On-prem connection profile"
10 },
11 {
12 "name": "username",
13 "type": "string",
14 "label": "Username"
15 },
16 {
17 "name": "password",
18 "type": "string",
19 "label": "Password"
20 },
21 {
22 "name": "host",
23 "type": "string",
24 "label": "Host"
25 },
26 {
27 "name": "port",
28 "type": "string",
29 "label": "Port"
30 },
31 {
32 "name": "database",
33 "type": "string",
34 "label": "Database"
35 }
36 ]
37 }

Namely

Provider value:

1"provider": "namely"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "company",
8 "type": "string",
9 "label": "Company",
10 "hint": "If your Namely url is https://acme.namely.com then use <b>acme</b> as value."
11 }
12 ]
13 }

NationBuilder

Provider value:

1"provider": "nationbuilder"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "slug",
8 "type": "string",
9 "label": "Nation",
10 "hint": "Your NationBuilder \"nation\", for example, <b>voteforpedro</b>.nationbuilder.com"
11 }
12 ]
13 }

NetSuite

Provider value:

1"provider": "netsuite"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "account",
8 "type": "string",
9 "label": "Account ID",
10 "hint": "Login as Administrator, then in <b>Setup Menu</b>, find in <b>Integration</b> > <b>Web Services Preferences</b>"
11 },
12 {
13 "name": "tokenId",
14 "type": "string",
15 "label": "Token ID"
16 },
17 {
18 "name": "tokenSecret",
19 "type": "string",
20 "label": "Token secret"
21 },
22 {
23 "name": "timezone",
24 "type": "string",
25 "optional": true,
26 "label": "Account timezone",
27 "hint": "Needed for consistency with NetSuite - pick same as your NetSuite profile",
28 "pick_list":
29 [
30 [
31 "American Samoa (-11:00)",
32 "American Samoa"
33 ],
34 [
35 "International Date Line West (-11:00)",
36 "International Date Line West"
37 ],
38 [
39 "Midway Island (-11:00)",
40 "Midway Island"
41 ],
42 [
43 "Hawaii (-10:00)",
44 "Hawaii"
45 ],
46 [
47 "Alaska (-9:00)",
48 "Alaska"
49 ],
50 [
51 "Pacific Time (US & Canada) (-8:00)",
52 "Pacific Time (US & Canada)"
53 ],
54 [
55 "Tijuana (-8:00)",
56 "Tijuana"
57 ],
58 [
59 "Arizona (-7:00)",
60 "Arizona"
61 ],
62 [
63 "Chihuahua (-7:00)",
64 "Chihuahua"
65 ],
66 [
67 "Mazatlan (-7:00)",
68 "Mazatlan"
69 ],
70 [
71 "Mountain Time (US & Canada) (-7:00)",
72 "Mountain Time (US & Canada)"
73 ],
74 [
75 "Central America (-6:00)",
76 "Central America"
77 ],
78 [
79 "Central Time (US & Canada) (-6:00)",
80 "Central Time (US & Canada)"
81 ],
82 [
83 "Guadalajara (-6:00)",
84 "Guadalajara"
85 ],
86 [
87 "Mexico City (-6:00)",
88 "Mexico City"
89 ],
90 [
91 "Monterrey (-6:00)",
92 "Monterrey"
93 ],
94 [
95 "Saskatchewan (-6:00)",
96 "Saskatchewan"
97 ],
98 [
99 "Bogota (-5:00)",
100 "Bogota"
101 ],
102 [
103 "Eastern Time (US & Canada) (-5:00)",
104 "Eastern Time (US & Canada)"
105 ],
106 [
107 "Indiana (East) (-5:00)",
108 "Indiana (East)"
109 ],
110 [
111 "Lima (-5:00)",
112 "Lima"
113 ],
114 [
115 "Quito (-5:00)",
116 "Quito"
117 ],
118 [
119 "Atlantic Time (Canada) (-4:00)",
120 "Atlantic Time (Canada)"
121 ],
122 [
123 "Caracas (-4:00)",
124 "Caracas"
125 ],
126 [
127 "Georgetown (-4:00)",
128 "Georgetown"
129 ],
130 [
131 "La Paz (-4:00)",
132 "La Paz"
133 ],
134 [
135 "Santiago (-4:00)",
136 "Santiago"
137 ],
138 [
139 "Newfoundland (-4:30)",
140 "Newfoundland"
141 ],
142 [
143 "Brasilia (-3:00)",
144 "Brasilia"
145 ],
146 [
147 "Buenos Aires (-3:00)",
148 "Buenos Aires"
149 ],
150 [
151 "Greenland (-3:00)",
152 "Greenland"
153 ],
154 [
155 "Montevideo (-3:00)",
156 "Montevideo"
157 ],
158 [
159 "Mid-Atlantic (-2:00)",
160 "Mid-Atlantic"
161 ],
162 [
163 "Azores (-1:00)",
164 "Azores"
165 ],
166 [
167 "Cape Verde Is. (-1:00)",
168 "Cape Verde Is."
169 ],
170 [
171 "Casablanca (+0:00)",
172 "Casablanca"
173 ],
174 [
175 "Dublin (+0:00)",
176 "Dublin"
177 ],
178 [
179 "Edinburgh (+0:00)",
180 "Edinburgh"
181 ],
182 [
183 "Lisbon (+0:00)",
184 "Lisbon"
185 ],
186 [
187 "London (+0:00)",
188 "London"
189 ],
190 [
191 "Monrovia (+0:00)",
192 "Monrovia"
193 ],
194 [
195 "UTC (+0:00)",
196 "UTC"
197 ],
198 [
199 "Amsterdam (+1:00)",
200 "Amsterdam"
201 ],
202 [
203 "Belgrade (+1:00)",
204 "Belgrade"
205 ],
206 [
207 "Berlin (+1:00)",
208 "Berlin"
209 ],
210 [
211 "Bern (+1:00)",
212 "Bern"
213 ],
214 [
215 "Bratislava (+1:00)",
216 "Bratislava"
217 ],
218 [
219 "Brussels (+1:00)",
220 "Brussels"
221 ],
222 [
223 "Budapest (+1:00)",
224 "Budapest"
225 ],
226 [
227 "Copenhagen (+1:00)",
228 "Copenhagen"
229 ],
230 [
231 "Ljubljana (+1:00)",
232 "Ljubljana"
233 ],
234 [
235 "Madrid (+1:00)",
236 "Madrid"
237 ],
238 [
239 "Paris (+1:00)",
240 "Paris"
241 ],
242 [
243 "Prague (+1:00)",
244 "Prague"
245 ],
246 [
247 "Rome (+1:00)",
248 "Rome"
249 ],
250 [
251 "Sarajevo (+1:00)",
252 "Sarajevo"
253 ],
254 [
255 "Skopje (+1:00)",
256 "Skopje"
257 ],
258 [
259 "Stockholm (+1:00)",
260 "Stockholm"
261 ],
262 [
263 "Vienna (+1:00)",
264 "Vienna"
265 ],
266 [
267 "Warsaw (+1:00)",
268 "Warsaw"
269 ],
270 [
271 "West Central Africa (+1:00)",
272 "West Central Africa"
273 ],
274 [
275 "Zagreb (+1:00)",
276 "Zagreb"
277 ],
278 [
279 "Athens (+2:00)",
280 "Athens"
281 ],
282 [
283 "Bucharest (+2:00)",
284 "Bucharest"
285 ],
286 [
287 "Cairo (+2:00)",
288 "Cairo"
289 ],
290 [
291 "Harare (+2:00)",
292 "Harare"
293 ],
294 [
295 "Helsinki (+2:00)",
296 "Helsinki"
297 ],
298 [
299 "Jerusalem (+2:00)",
300 "Jerusalem"
301 ],
302 [
303 "Kaliningrad (+2:00)",
304 "Kaliningrad"
305 ],
306 [
307 "Kyiv (+2:00)",
308 "Kyiv"
309 ],
310 [
311 "Pretoria (+2:00)",
312 "Pretoria"
313 ],
314 [
315 "Riga (+2:00)",
316 "Riga"
317 ],
318 [
319 "Sofia (+2:00)",
320 "Sofia"
321 ],
322 [
323 "Tallinn (+2:00)",
324 "Tallinn"
325 ],
326 [
327 "Vilnius (+2:00)",
328 "Vilnius"
329 ],
330 [
331 "Baghdad (+3:00)",
332 "Baghdad"
333 ],
334 [
335 "Istanbul (+3:00)",
336 "Istanbul"
337 ],
338 [
339 "Kuwait (+3:00)",
340 "Kuwait"
341 ],
342 [
343 "Minsk (+3:00)",
344 "Minsk"
345 ],
346 [
347 "Moscow (+3:00)",
348 "Moscow"
349 ],
350 [
351 "Nairobi (+3:00)",
352 "Nairobi"
353 ],
354 [
355 "Riyadh (+3:00)",
356 "Riyadh"
357 ],
358 [
359 "St. Petersburg (+3:00)",
360 "St. Petersburg"
361 ],
362 [
363 "Tehran (+3:30)",
364 "Tehran"
365 ],
366 [
367 "Abu Dhabi (+4:00)",
368 "Abu Dhabi"
369 ],
370 [
371 "Baku (+4:00)",
372 "Baku"
373 ],
374 [
375 "Muscat (+4:00)",
376 "Muscat"
377 ],
378 [
379 "Samara (+4:00)",
380 "Samara"
381 ],
382 [
383 "Tbilisi (+4:00)",
384 "Tbilisi"
385 ],
386 [
387 "Volgograd (+4:00)",
388 "Volgograd"
389 ],
390 [
391 "Yerevan (+4:00)",
392 "Yerevan"
393 ],
394 [
395 "Kabul (+4:30)",
396 "Kabul"
397 ],
398 [
399 "Ekaterinburg (+5:00)",
400 "Ekaterinburg"
401 ],
402 [
403 "Islamabad (+5:00)",
404 "Islamabad"
405 ],
406 [
407 "Karachi (+5:00)",
408 "Karachi"
409 ],
410 [
411 "Tashkent (+5:00)",
412 "Tashkent"
413 ],
414 [
415 "Chennai (+5:30)",
416 "Chennai"
417 ],
418 [
419 "Kolkata (+5:30)",
420 "Kolkata"
421 ],
422 [
423 "Mumbai (+5:30)",
424 "Mumbai"
425 ],
426 [
427 "New Delhi (+5:30)",
428 "New Delhi"
429 ],
430 [
431 "Sri Jayawardenepura (+5:30)",
432 "Sri Jayawardenepura"
433 ],
434 [
435 "Kathmandu (+5:45)",
436 "Kathmandu"
437 ],
438 [
439 "Almaty (+6:00)",
440 "Almaty"
441 ],
442 [
443 "Astana (+6:00)",
444 "Astana"
445 ],
446 [
447 "Dhaka (+6:00)",
448 "Dhaka"
449 ],
450 [
451 "Urumqi (+6:00)",
452 "Urumqi"
453 ],
454 [
455 "Rangoon (+6:30)",
456 "Rangoon"
457 ],
458 [
459 "Bangkok (+7:00)",
460 "Bangkok"
461 ],
462 [
463 "Hanoi (+7:00)",
464 "Hanoi"
465 ],
466 [
467 "Jakarta (+7:00)",
468 "Jakarta"
469 ],
470 [
471 "Krasnoyarsk (+7:00)",
472 "Krasnoyarsk"
473 ],
474 [
475 "Novosibirsk (+7:00)",
476 "Novosibirsk"
477 ],
478 [
479 "Beijing (+8:00)",
480 "Beijing"
481 ],
482 [
483 "Chongqing (+8:00)",
484 "Chongqing"
485 ],
486 [
487 "Hong Kong (+8:00)",
488 "Hong Kong"
489 ],
490 [
491 "Irkutsk (+8:00)",
492 "Irkutsk"
493 ],
494 [
495 "Kuala Lumpur (+8:00)",
496 "Kuala Lumpur"
497 ],
498 [
499 "Perth (+8:00)",
500 "Perth"
501 ],
502 [
503 "Singapore (+8:00)",
504 "Singapore"
505 ],
506 [
507 "Taipei (+8:00)",
508 "Taipei"
509 ],
510 [
511 "Ulaanbaatar (+8:00)",
512 "Ulaanbaatar"
513 ],
514 [
515 "Osaka (+9:00)",
516 "Osaka"
517 ],
518 [
519 "Sapporo (+9:00)",
520 "Sapporo"
521 ],
522 [
523 "Seoul (+9:00)",
524 "Seoul"
525 ],
526 [
527 "Tokyo (+9:00)",
528 "Tokyo"
529 ],
530 [
531 "Yakutsk (+9:00)",
532 "Yakutsk"
533 ],
534 [
535 "Adelaide (+9:30)",
536 "Adelaide"
537 ],
538 [
539 "Darwin (+9:30)",
540 "Darwin"
541 ],
542 [
543 "Brisbane (+10:00)",
544 "Brisbane"
545 ],
546 [
547 "Canberra (+10:00)",
548 "Canberra"
549 ],
550 [
551 "Guam (+10:00)",
552 "Guam"
553 ],
554 [
555 "Hobart (+10:00)",
556 "Hobart"
557 ],
558 [
559 "Melbourne (+10:00)",
560 "Melbourne"
561 ],
562 [
563 "Port Moresby (+10:00)",
564 "Port Moresby"
565 ],
566 [
567 "Sydney (+10:00)",
568 "Sydney"
569 ],
570 [
571 "Vladivostok (+10:00)",
572 "Vladivostok"
573 ],
574 [
575 "Magadan (+11:00)",
576 "Magadan"
577 ],
578 [
579 "New Caledonia (+11:00)",
580 "New Caledonia"
581 ],
582 [
583 "Solomon Is. (+11:00)",
584 "Solomon Is."
585 ],
586 [
587 "Srednekolymsk (+11:00)",
588 "Srednekolymsk"
589 ],
590 [
591 "Auckland (+12:00)",
592 "Auckland"
593 ],
594 [
595 "Fiji (+12:00)",
596 "Fiji"
597 ],
598 [
599 "Kamchatka (+12:00)",
600 "Kamchatka"
601 ],
602 [
603 "Marshall Is. (+12:00)",
604 "Marshall Is."
605 ],
606 [
607 "Wellington (+12:00)",
608 "Wellington"
609 ],
610 [
611 "Chatham Is. (+12:45)",
612 "Chatham Is."
613 ],
614 [
615 "Nuku'alofa (+13:00)",
616 "Nuku'alofa"
617 ],
618 [
619 "Samoa (+13:00)",
620 "Samoa"
621 ],
622 [
623 "Tokelau Is. (+13:00)",
624 "Tokelau Is."
625 ]
626 ]
627 },
628 {
629 "name": "ignoreReadOnlyFields",
630 "type": "boolean",
631 "optional": true,
632 "label": "Ignore read-only fields",
633 "hint": "Ignore read-only fields in add and update operation? If set to <b>No</b>, the action will throw error on trying to write to read-only fields.",
634 "default": "false"
635 },
636 {
637 "name": "advanced_settings",
638 "type": "object",
639 "properties": [
640 {
641 "name": "consumerKey",
642 "type": "string",
643 "label": "Consumer key"
644 },
645 {
646 "name": "consumerSecret",
647 "type": "string",
648 "label": "Consumer secret"
649 },
650 ]
651 }
652 ]
653 }

NetSuite (Secondary)

Provider values:

1"provider": "netsuite_secondary"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "account",
8 "type": "string",
9 "label": "Account ID",
10 "hint": "Login as Administrator, then in <b>Setup Menu</b>, find in <b>Integration</b> > <b>Web Services Preferences</b>"
11 },
12 {
13 "name": "tokenId",
14 "type": "string",
15 "label": "Token ID"
16 },
17 {
18 "name": "tokenSecret",
19 "type": "string",
20 "label": "Token secret"
21 },
22 {
23 "name": "timezone",
24 "type": "string",
25 "optional": true,
26 "label": "Account timezone",
27 "hint": "Needed for consistency with NetSuite - pick same as your NetSuite profile",
28 "pick_list":
29 [
30 [
31 "American Samoa (-11:00)",
32 "American Samoa"
33 ],
34 [
35 "International Date Line West (-11:00)",
36 "International Date Line West"
37 ],
38 [
39 "Midway Island (-11:00)",
40 "Midway Island"
41 ],
42 [
43 "Hawaii (-10:00)",
44 "Hawaii"
45 ],
46 [
47 "Alaska (-9:00)",
48 "Alaska"
49 ],
50 [
51 "Pacific Time (US & Canada) (-8:00)",
52 "Pacific Time (US & Canada)"
53 ],
54 [
55 "Tijuana (-8:00)",
56 "Tijuana"
57 ],
58 [
59 "Arizona (-7:00)",
60 "Arizona"
61 ],
62 [
63 "Chihuahua (-7:00)",
64 "Chihuahua"
65 ],
66 [
67 "Mazatlan (-7:00)",
68 "Mazatlan"
69 ],
70 [
71 "Mountain Time (US & Canada) (-7:00)",
72 "Mountain Time (US & Canada)"
73 ],
74 [
75 "Central America (-6:00)",
76 "Central America"
77 ],
78 [
79 "Central Time (US & Canada) (-6:00)",
80 "Central Time (US & Canada)"
81 ],
82 [
83 "Guadalajara (-6:00)",
84 "Guadalajara"
85 ],
86 [
87 "Mexico City (-6:00)",
88 "Mexico City"
89 ],
90 [
91 "Monterrey (-6:00)",
92 "Monterrey"
93 ],
94 [
95 "Saskatchewan (-6:00)",
96 "Saskatchewan"
97 ],
98 [
99 "Bogota (-5:00)",
100 "Bogota"
101 ],
102 [
103 "Eastern Time (US & Canada) (-5:00)",
104 "Eastern Time (US & Canada)"
105 ],
106 [
107 "Indiana (East) (-5:00)",
108 "Indiana (East)"
109 ],
110 [
111 "Lima (-5:00)",
112 "Lima"
113 ],
114 [
115 "Quito (-5:00)",
116 "Quito"
117 ],
118 [
119 "Atlantic Time (Canada) (-4:00)",
120 "Atlantic Time (Canada)"
121 ],
122 [
123 "Caracas (-4:00)",
124 "Caracas"
125 ],
126 [
127 "Georgetown (-4:00)",
128 "Georgetown"
129 ],
130 [
131 "La Paz (-4:00)",
132 "La Paz"
133 ],
134 [
135 "Santiago (-4:00)",
136 "Santiago"
137 ],
138 [
139 "Newfoundland (-4:30)",
140 "Newfoundland"
141 ],
142 [
143 "Brasilia (-3:00)",
144 "Brasilia"
145 ],
146 [
147 "Buenos Aires (-3:00)",
148 "Buenos Aires"
149 ],
150 [
151 "Greenland (-3:00)",
152 "Greenland"
153 ],
154 [
155 "Montevideo (-3:00)",
156 "Montevideo"
157 ],
158 [
159 "Mid-Atlantic (-2:00)",
160 "Mid-Atlantic"
161 ],
162 [
163 "Azores (-1:00)",
164 "Azores"
165 ],
166 [
167 "Cape Verde Is. (-1:00)",
168 "Cape Verde Is."
169 ],
170 [
171 "Casablanca (+0:00)",
172 "Casablanca"
173 ],
174 [
175 "Dublin (+0:00)",
176 "Dublin"
177 ],
178 [
179 "Edinburgh (+0:00)",
180 "Edinburgh"
181 ],
182 [
183 "Lisbon (+0:00)",
184 "Lisbon"
185 ],
186 [
187 "London (+0:00)",
188 "London"
189 ],
190 [
191 "Monrovia (+0:00)",
192 "Monrovia"
193 ],
194 [
195 "UTC (+0:00)",
196 "UTC"
197 ],
198 [
199 "Amsterdam (+1:00)",
200 "Amsterdam"
201 ],
202 [
203 "Belgrade (+1:00)",
204 "Belgrade"
205 ],
206 [
207 "Berlin (+1:00)",
208 "Berlin"
209 ],
210 [
211 "Bern (+1:00)",
212 "Bern"
213 ],
214 [
215 "Bratislava (+1:00)",
216 "Bratislava"
217 ],
218 [
219 "Brussels (+1:00)",
220 "Brussels"
221 ],
222 [
223 "Budapest (+1:00)",
224 "Budapest"
225 ],
226 [
227 "Copenhagen (+1:00)",
228 "Copenhagen"
229 ],
230 [
231 "Ljubljana (+1:00)",
232 "Ljubljana"
233 ],
234 [
235 "Madrid (+1:00)",
236 "Madrid"
237 ],
238 [
239 "Paris (+1:00)",
240 "Paris"
241 ],
242 [
243 "Prague (+1:00)",
244 "Prague"
245 ],
246 [
247 "Rome (+1:00)",
248 "Rome"
249 ],
250 [
251 "Sarajevo (+1:00)",
252 "Sarajevo"
253 ],
254 [
255 "Skopje (+1:00)",
256 "Skopje"
257 ],
258 [
259 "Stockholm (+1:00)",
260 "Stockholm"
261 ],
262 [
263 "Vienna (+1:00)",
264 "Vienna"
265 ],
266 [
267 "Warsaw (+1:00)",
268 "Warsaw"
269 ],
270 [
271 "West Central Africa (+1:00)",
272 "West Central Africa"
273 ],
274 [
275 "Zagreb (+1:00)",
276 "Zagreb"
277 ],
278 [
279 "Athens (+2:00)",
280 "Athens"
281 ],
282 [
283 "Bucharest (+2:00)",
284 "Bucharest"
285 ],
286 [
287 "Cairo (+2:00)",
288 "Cairo"
289 ],
290 [
291 "Harare (+2:00)",
292 "Harare"
293 ],
294 [
295 "Helsinki (+2:00)",
296 "Helsinki"
297 ],
298 [
299 "Jerusalem (+2:00)",
300 "Jerusalem"
301 ],
302 [
303 "Kaliningrad (+2:00)",
304 "Kaliningrad"
305 ],
306 [
307 "Kyiv (+2:00)",
308 "Kyiv"
309 ],
310 [
311 "Pretoria (+2:00)",
312 "Pretoria"
313 ],
314 [
315 "Riga (+2:00)",
316 "Riga"
317 ],
318 [
319 "Sofia (+2:00)",
320 "Sofia"
321 ],
322 [
323 "Tallinn (+2:00)",
324 "Tallinn"
325 ],
326 [
327 "Vilnius (+2:00)",
328 "Vilnius"
329 ],
330 [
331 "Baghdad (+3:00)",
332 "Baghdad"
333 ],
334 [
335 "Istanbul (+3:00)",
336 "Istanbul"
337 ],
338 [
339 "Kuwait (+3:00)",
340 "Kuwait"
341 ],
342 [
343 "Minsk (+3:00)",
344 "Minsk"
345 ],
346 [
347 "Moscow (+3:00)",
348 "Moscow"
349 ],
350 [
351 "Nairobi (+3:00)",
352 "Nairobi"
353 ],
354 [
355 "Riyadh (+3:00)",
356 "Riyadh"
357 ],
358 [
359 "St. Petersburg (+3:00)",
360 "St. Petersburg"
361 ],
362 [
363 "Tehran (+3:30)",
364 "Tehran"
365 ],
366 [
367 "Abu Dhabi (+4:00)",
368 "Abu Dhabi"
369 ],
370 [
371 "Baku (+4:00)",
372 "Baku"
373 ],
374 [
375 "Muscat (+4:00)",
376 "Muscat"
377 ],
378 [
379 "Samara (+4:00)",
380 "Samara"
381 ],
382 [
383 "Tbilisi (+4:00)",
384 "Tbilisi"
385 ],
386 [
387 "Volgograd (+4:00)",
388 "Volgograd"
389 ],
390 [
391 "Yerevan (+4:00)",
392 "Yerevan"
393 ],
394 [
395 "Kabul (+4:30)",
396 "Kabul"
397 ],
398 [
399 "Ekaterinburg (+5:00)",
400 "Ekaterinburg"
401 ],
402 [
403 "Islamabad (+5:00)",
404 "Islamabad"
405 ],
406 [
407 "Karachi (+5:00)",
408 "Karachi"
409 ],
410 [
411 "Tashkent (+5:00)",
412 "Tashkent"
413 ],
414 [
415 "Chennai (+5:30)",
416 "Chennai"
417 ],
418 [
419 "Kolkata (+5:30)",
420 "Kolkata"
421 ],
422 [
423 "Mumbai (+5:30)",
424 "Mumbai"
425 ],
426 [
427 "New Delhi (+5:30)",
428 "New Delhi"
429 ],
430 [
431 "Sri Jayawardenepura (+5:30)",
432 "Sri Jayawardenepura"
433 ],
434 [
435 "Kathmandu (+5:45)",
436 "Kathmandu"
437 ],
438 [
439 "Almaty (+6:00)",
440 "Almaty"
441 ],
442 [
443 "Astana (+6:00)",
444 "Astana"
445 ],
446 [
447 "Dhaka (+6:00)",
448 "Dhaka"
449 ],
450 [
451 "Urumqi (+6:00)",
452 "Urumqi"
453 ],
454 [
455 "Rangoon (+6:30)",
456 "Rangoon"
457 ],
458 [
459 "Bangkok (+7:00)",
460 "Bangkok"
461 ],
462 [
463 "Hanoi (+7:00)",
464 "Hanoi"
465 ],
466 [
467 "Jakarta (+7:00)",
468 "Jakarta"
469 ],
470 [
471 "Krasnoyarsk (+7:00)",
472 "Krasnoyarsk"
473 ],
474 [
475 "Novosibirsk (+7:00)",
476 "Novosibirsk"
477 ],
478 [
479 "Beijing (+8:00)",
480 "Beijing"
481 ],
482 [
483 "Chongqing (+8:00)",
484 "Chongqing"
485 ],
486 [
487 "Hong Kong (+8:00)",
488 "Hong Kong"
489 ],
490 [
491 "Irkutsk (+8:00)",
492 "Irkutsk"
493 ],
494 [
495 "Kuala Lumpur (+8:00)",
496 "Kuala Lumpur"
497 ],
498 [
499 "Perth (+8:00)",
500 "Perth"
501 ],
502 [
503 "Singapore (+8:00)",
504 "Singapore"
505 ],
506 [
507 "Taipei (+8:00)",
508 "Taipei"
509 ],
510 [
511 "Ulaanbaatar (+8:00)",
512 "Ulaanbaatar"
513 ],
514 [
515 "Osaka (+9:00)",
516 "Osaka"
517 ],
518 [
519 "Sapporo (+9:00)",
520 "Sapporo"
521 ],
522 [
523 "Seoul (+9:00)",
524 "Seoul"
525 ],
526 [
527 "Tokyo (+9:00)",
528 "Tokyo"
529 ],
530 [
531 "Yakutsk (+9:00)",
532 "Yakutsk"
533 ],
534 [
535 "Adelaide (+9:30)",
536 "Adelaide"
537 ],
538 [
539 "Darwin (+9:30)",
540 "Darwin"
541 ],
542 [
543 "Brisbane (+10:00)",
544 "Brisbane"
545 ],
546 [
547 "Canberra (+10:00)",
548 "Canberra"
549 ],
550 [
551 "Guam (+10:00)",
552 "Guam"
553 ],
554 [
555 "Hobart (+10:00)",
556 "Hobart"
557 ],
558 [
559 "Melbourne (+10:00)",
560 "Melbourne"
561 ],
562 [
563 "Port Moresby (+10:00)",
564 "Port Moresby"
565 ],
566 [
567 "Sydney (+10:00)",
568 "Sydney"
569 ],
570 [
571 "Vladivostok (+10:00)",
572 "Vladivostok"
573 ],
574 [
575 "Magadan (+11:00)",
576 "Magadan"
577 ],
578 [
579 "New Caledonia (+11:00)",
580 "New Caledonia"
581 ],
582 [
583 "Solomon Is. (+11:00)",
584 "Solomon Is."
585 ],
586 [
587 "Srednekolymsk (+11:00)",
588 "Srednekolymsk"
589 ],
590 [
591 "Auckland (+12:00)",
592 "Auckland"
593 ],
594 [
595 "Fiji (+12:00)",
596 "Fiji"
597 ],
598 [
599 "Kamchatka (+12:00)",
600 "Kamchatka"
601 ],
602 [
603 "Marshall Is. (+12:00)",
604 "Marshall Is."
605 ],
606 [
607 "Wellington (+12:00)",
608 "Wellington"
609 ],
610 [
611 "Chatham Is. (+12:45)",
612 "Chatham Is."
613 ],
614 [
615 "Nuku'alofa (+13:00)",
616 "Nuku'alofa"
617 ],
618 [
619 "Samoa (+13:00)",
620 "Samoa"
621 ],
622 [
623 "Tokelau Is. (+13:00)",
624 "Tokelau Is."
625 ]
626 ]
627 },
628 {
629 "name": "ignoreReadOnlyFields",
630 "type": "boolean",
631 "optional": true,
632 "label": "Ignore read-only fields",
633 "hint": "Ignore read-only fields in add and update operation? If set to <b>No</b>, the action will throw error on trying to write to read-only fields.",
634 "default": "false"
635 },
636 {
637 "name": "advanced_settings",
638 "type": "object",
639 "properties": [
640 {
641 "name": "consumerKey",
642 "type": "string",
643 "label": "Consumer key"
644 },
645 {
646 "name": "consumerSecret",
647 "type": "string",
648 "label": "Consumer secret"
649 },
650 ]
651 }
652 ]
653 }

New Relic

Provider values:

1"provider": "new_relic"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "api_key",
8 "type": "string",
9 "optional": false,
10 "label": "API Key",
11 "hint": "Go to Account settings->API Keys and get API key"
12 }
13 ]
14 }

Nimble CRM

Provider values:

1"provider": "nimblecrm"

Connection parameter configuration is not required for this connector.


Okta

Provider values:

1"provider": "okta"
1{
2 "oauth": true,
3 "personalization": true,
4 "oauth_token_pair": {
5 "label": "OAuth Token Pair",
6 "optional": true,
7 "type": "object",
8 "hint": "Allows you to create authorization code grant connections. You can create a shell connection in cases where you don't have an access token and refresh token.",
9 "properties": [
10 {
11 "label": "Access Token",
12 "name": "access_token",
13 "type": "string",
14 "optional": false
15 },
16 {
17 "label": "Refresh Token",
18 "name": "refresh_token",
19 "type": "string",
20 "optional": false
21 }
22 ]
23 },
24 "input": [
25 {
26 "label": "Authentication type",
27 "optional": false,
28 "hint": "Select the authentication type to connect with Okta.",
29 "type": "string",
30 "name": "authentication_type",
31 "default": "api_key",
32 "pick_list": [
33 [
34 "Authorization code grant",
35 "oauth2_auth_code_grant"
36 ],
37 [
38 "Client credentials",
39 "oauth2_client_credentials_grant"
40 ],
41 [
42 "API key",
43 "api_key"
44 ]
45 ]
46 },
47 {
48 "label": "Okta domain",
49 "hint": "Your Okta domain name as found in your Okta URL. For example: mycompany.okta.com, mytest.oktapreview.com.",
50 "optional": false,
51 "type": "string",
52 "name": "subdomain"
53 },
54 {
55 "label": "Client ID",
56 "optional": false,
57 "hint": "Refer to the following Okta documentation to obtain a client ID and client secret: https://developer.okta.com/docs/guides/implement-oauth-for-okta/main/#create-an-oauth-2-0-app-in-okta.",
58 "type": "string",
59 "name": "client_id"
60 },
61 {
62 "label": "Client secret",
63 "optional": false,
64 "hint": "Refer to the following Okta documentation to obtain a client ID and client secret: https://developer.okta.com/docs/guides/implement-oauth-for-okta/main/#create-an-oauth-2-0-app-in-okta.",
65 "type": "string",
66 "name": "client_secret"
67 },
68 {
69 "label": "Private key",
70 "optional": false,
71 "hint": "Enter the private key in PEM format. Refer to the Okta private key information to generate this value: https://developer.okta.com/docs/guides/implement-oauth-for-okta-serviceapp/main/#generate-the-jwk-using-the-admin-console",
72 "type": "string",
73 "name": "private_key"
74 },
75 {
76 "label": "API Key",
77 "optional": false,
78 "hint": "Sign in to the Okta admin console as an administrator and go to Security > API > Create Token to create an API key.",
79 "type": "string",
80 "name": "api_key"
81 },
82 {
83 "label": "Advanced settings",
84 "optional": true,
85 "type": "object",
86 "name": "advanced_settings",
87 "properties": [
88 {
89 "label": "OAuth 2.0 scopes",
90 "optional": true,
91 "hint": "Select OAuth 2.0 Scopes to request for this connection. Make sure to specify the required scopes based on the ones defined in Okta > Applications > Applications > Okta API Scopes. The selected scopes are added with okta.logs.read, okta.schemas.read, offline_access, openid which are minimal scopes required to establish connection with Okta. Ensure that okta.users.read is selected to connect using a custom role. The following default scopes are set if left blank: okta.logs.read, okta.schemas.read, offline_access, openid, okta.eventHooks.manage, okta.users.manage, okta.groups.manage, okta.apps.read. Refer to the Okta OAuth 2.0 documentation for more information: https://developer.okta.com/docs/api/oauth2/#oauth-20-scopes",
92 "type": "string",
93 "name": "scopes",
94 "options": [
95 [
96 "okta.users.manage",
97 "OKTA_USERS_MANAGE"
98 ],
99 [
100 "okta.users.read",
101 "OKTA_USERS_READ"
102 ],
103 [
104 "okta.linkedObjects.manage",
105 "OKTA_LINKEDOBJECTS_MANAGE"
106 ],
107 [
108 "okta.linkedObjects.read",
109 "OKTA_LINKEDOBJECTS_READ"
110 ],
111 [
112 "okta.profileMappings.manage",
113 "OKTA_PROFILEMAPPINGS_MANAGE"
114 ],
115 [
116 "okta.profileMappings.read",
117 "OKTA_PROFILEMAPPINGS_READ"
118 ],
119 [
120 "okta.userTypes.manage",
121 "OKTA_USERTYPES_MANAGE"
122 ],
123 [
124 "okta.userTypes.read",
125 "OKTA_USERTYPES_READ"
126 ],
127 [
128 "okta.clients.manage",
129 "OKTA_CLIENTS_MANAGE"
130 ],
131 [
132 "okta.clients.register",
133 "OKTA_CLIENTS_REGISTER"
134 ],
135 [
136 "okta.clients.read",
137 "OKTA_CLIENTS_READ"
138 ],
139 [
140 "okta.appGrants.manage",
141 "OKTA_APPGRANTS_MANAGE"
142 ],
143 [
144 "okta.appGrants.read",
145 "OKTA_APPGRANTS_READ"
146 ],
147 [
148 "okta.policies.manage",
149 "OKTA_POLICIES_MANAGE"
150 ],
151 [
152 "okta.policies.read",
153 "OKTA_POLICIES_READ"
154 ],
155 [
156 "okta.groups.manage",
157 "OKTA_GROUPS_MANAGE"
158 ],
159 [
160 "okta.groups.read",
161 "OKTA_GROUPS_READ"
162 ],
163 [
164 "okta.inlineHooks.manage",
165 "OKTA_INLINEHOOKS_MANAGE"
166 ],
167 [
168 "okta.inlineHooks.read",
169 "OKTA_INLINEHOOKS_READ"
170 ],
171 [
172 "okta.eventHooks.manage",
173 "OKTA_EVENTHOOKS_MANAGE"
174 ],
175 [
176 "okta.eventHooks.read",
177 "OKTA_EVENTHOOKS_READ"
178 ],
179 [
180 "okta.events.read",
181 "OKTA_EVENTS_READ"
182 ],
183 [
184 "okta.apps.manage",
185 "OKTA_APPS_MANAGE"
186 ],
187 [
188 "okta.apps.read",
189 "OKTA_APPS_READ"
190 ],
191 [
192 "okta.schemas.manage",
193 "OKTA_SCHEMAS_MANAGE"
194 ],
195 [
196 "okta.idps.manage",
197 "OKTA_IDPS_MANAGE"
198 ],
199 [
200 "okta.idps.read",
201 "OKTA_IDPS_READ"
202 ],
203 [
204 "okta.factors.manage",
205 "OKTA_FACTORS_MANAGE"
206 ],
207 [
208 "okta.factors.read",
209 "OKTA_FACTORS_READ"
210 ],
211 [
212 "okta.riskProviders.manage",
213 "OKTA_RISKPROVIDERS_MANAGE"
214 ],
215 [
216 "okta.riskProviders.read",
217 "OKTA_RISKPROVIDERS_READ"
218 ],
219 [
220 "okta.roles.manage",
221 "OKTA_ROLES_MANAGE"
222 ],
223 [
224 "okta.roles.read",
225 "OKTA_ROLES_READ"
226 ],
227 [
228 "okta.domains.manage",
229 "OKTA_DOMAINS_MANAGE"
230 ],
231 [
232 "okta.domains.read",
233 "OKTA_DOMAINS_READ"
234 ],
235 [
236 "okta.brands.manage",
237 "OKTA_BRANDS_MANAGE"
238 ],
239 [
240 "okta.brands.read",
241 "OKTA_BRANDS_READ"
242 ],
243 [
244 "okta.sessions.manage",
245 "OKTA_SESSIONS_MANAGE"
246 ],
247 [
248 "okta.sessions.read",
249 "OKTA_SESSIONS_READ"
250 ],
251 [
252 "okta.templates.manage",
253 "OKTA_TEMPLATES_MANAGE"
254 ],
255 [
256 "okta.templates.read",
257 "OKTA_TEMPLATES_READ"
258 ],
259 [
260 "okta.trustedOrigins.manage",
261 "OKTA_TRUSTEDORIGINS_MANAGE"
262 ],
263 [
264 "okta.trustedOrigins.read",
265 "OKTA_TRUSTEDORIGINS_READ"
266 ],
267 [
268 "okta.threatInsights.manage",
269 "OKTA_THREATINSIGHTS_MANAGE"
270 ],
271 [
272 "okta.threatInsights.read",
273 "OKTA_THREATINSIGHTS_READ"
274 ],
275 [
276 "okta.behaviors.manage",
277 "OKTA_BEHAVIORS_MANAGE"
278 ],
279 [
280 "okta.behaviors.read",
281 "OKTA_BEHAVIORS_READ"
282 ],
283 [
284 "okta.networkZones.manage",
285 "OKTA_NETWORKZONES_MANAGE"
286 ],
287 [
288 "okta.networkZones.read",
289 "OKTA_NETWORKZONES_READ"
290 ],
291 [
292 "okta.agentPools.manage",
293 "OKTA_AGENTPOOLS_MANAGE"
294 ],
295 [
296 "okta.agentPools.read",
297 "OKTA_AGENTPOOLS_READ"
298 ],
299 [
300 "okta.reports.read",
301 "OKTA_REPORTS_READ"
302 ],
303 [
304 "okta.features.manage",
305 "OKTA_FEATURES_MANAGE"
306 ],
307 [
308 "okta.features.read",
309 "OKTA_FEATURES_READ"
310 ],
311 [
312 "okta.certificateAuthorities.manage",
313 "OKTA_CERTIFICATEAUTHORITIES_MANAGE"
314 ],
315 [
316 "okta.certificateAuthorities.read",
317 "OKTA_CERTIFICATEAUTHORITIES_READ"
318 ],
319 [
320 "okta.principalRateLimits.manage",
321 "OKTA_PRINCIPALRATELIMITS_MANAGE"
322 ],
323 [
324 "okta.principalRateLimits.read",
325 "OKTA_PRINCIPALRATELIMITS_READ"
326 ],
327 [
328 "okta.rateLimits.manage",
329 "OKTA_RATELIMITS_MANAGE"
330 ],
331 [
332 "okta.rateLimits.read",
333 "OKTA_RATELIMITS_READ"
334 ],
335 [
336 "okta.apiTokens.manage",
337 "OKTA_APITOKENS_MANAGE"
338 ],
339 [
340 "okta.apiTokens.read",
341 "OKTA_APITOKENS_READ"
342 ],
343 [
344 "okta.users.manage.self",
345 "OKTA_USERS_MANAGE_SELF"
346 ],
347 [
348 "okta.users.read.self",
349 "OKTA_USERS_READ_SELF"
350 ],
351 [
352 "email",
353 "EMAIL"
354 ],
355 [
356 "profile",
357 "PROFILE"
358 ],
359 [
360 "address",
361 "ADDRESS"
362 ],
363 [
364 "phone",
365 "PHONE"
366 ],
367 [
368 "groups",
369 "GROUPS"
370 ]
371 ]
372 },
373 {
374 "label": "Client credential scopes",
375 "optional": true,
376 "hint": "Select client credential scopes to request for this connection. Make sure to specify the required scopes based on the ones defined in Okta > Applications > Applications > Okta API Scopes. The selected scopes are added with okta.logs.read, okta.schemas.read which are minimal scopes required to establish connection with Okta. Ensure that okta.users.read is selected to connect using a custom role. The following default scopes are set if left blank: okta.logs.read, okta.schemas.read, okta.eventHooks.manage, okta.users.manage, okta.groups.manage, okta.apps.read. Refer to the Okta OAuth 2.0 documentation for more information: https://developer.okta.com/docs/api/oauth2/#oauth-20-scopes",
377 "type": "string",
378 "name": "client_credential_scopes",
379 "options": [
380 [
381 "okta.users.manage",
382 "OKTA_USERS_MANAGE"
383 ],
384 [
385 "okta.users.read",
386 "OKTA_USERS_READ"
387 ],
388 [
389 "okta.linkedObjects.manage",
390 "OKTA_LINKEDOBJECTS_MANAGE"
391 ],
392 [
393 "okta.linkedObjects.read",
394 "OKTA_LINKEDOBJECTS_READ"
395 ],
396 [
397 "okta.profileMappings.manage",
398 "OKTA_PROFILEMAPPINGS_MANAGE"
399 ],
400 [
401 "okta.profileMappings.read",
402 "OKTA_PROFILEMAPPINGS_READ"
403 ],
404 [
405 "okta.userTypes.manage",
406 "OKTA_USERTYPES_MANAGE"
407 ],
408 [
409 "okta.userTypes.read",
410 "OKTA_USERTYPES_READ"
411 ],
412 [
413 "okta.clients.manage",
414 "OKTA_CLIENTS_MANAGE"
415 ],
416 [
417 "okta.clients.register",
418 "OKTA_CLIENTS_REGISTER"
419 ],
420 [
421 "okta.clients.read",
422 "OKTA_CLIENTS_READ"
423 ],
424 [
425 "okta.appGrants.manage",
426 "OKTA_APPGRANTS_MANAGE"
427 ],
428 [
429 "okta.appGrants.read",
430 "OKTA_APPGRANTS_READ"
431 ],
432 [
433 "okta.policies.manage",
434 "OKTA_POLICIES_MANAGE"
435 ],
436 [
437 "okta.policies.read",
438 "OKTA_POLICIES_READ"
439 ],
440 [
441 "okta.groups.manage",
442 "OKTA_GROUPS_MANAGE"
443 ],
444 [
445 "okta.groups.read",
446 "OKTA_GROUPS_READ"
447 ],
448 [
449 "okta.inlineHooks.manage",
450 "OKTA_INLINEHOOKS_MANAGE"
451 ],
452 [
453 "okta.inlineHooks.read",
454 "OKTA_INLINEHOOKS_READ"
455 ],
456 [
457 "okta.eventHooks.manage",
458 "OKTA_EVENTHOOKS_MANAGE"
459 ],
460 [
461 "okta.eventHooks.read",
462 "OKTA_EVENTHOOKS_READ"
463 ],
464 [
465 "okta.events.read",
466 "OKTA_EVENTS_READ"
467 ],
468 [
469 "okta.apps.manage",
470 "OKTA_APPS_MANAGE"
471 ],
472 [
473 "okta.apps.read",
474 "OKTA_APPS_READ"
475 ],
476 [
477 "okta.schemas.manage",
478 "OKTA_SCHEMAS_MANAGE"
479 ],
480 [
481 "okta.idps.manage",
482 "OKTA_IDPS_MANAGE"
483 ],
484 [
485 "okta.idps.read",
486 "OKTA_IDPS_READ"
487 ],
488 [
489 "okta.factors.manage",
490 "OKTA_FACTORS_MANAGE"
491 ],
492 [
493 "okta.factors.read",
494 "OKTA_FACTORS_READ"
495 ],
496 [
497 "okta.riskProviders.manage",
498 "OKTA_RISKPROVIDERS_MANAGE"
499 ],
500 [
501 "okta.riskProviders.read",
502 "OKTA_RISKPROVIDERS_READ"
503 ],
504 [
505 "okta.roles.manage",
506 "OKTA_ROLES_MANAGE"
507 ],
508 [
509 "okta.roles.read",
510 "OKTA_ROLES_READ"
511 ],
512 [
513 "okta.domains.manage",
514 "OKTA_DOMAINS_MANAGE"
515 ],
516 [
517 "okta.domains.read",
518 "OKTA_DOMAINS_READ"
519 ],
520 [
521 "okta.brands.manage",
522 "OKTA_BRANDS_MANAGE"
523 ],
524 [
525 "okta.brands.read",
526 "OKTA_BRANDS_READ"
527 ],
528 [
529 "okta.sessions.manage",
530 "OKTA_SESSIONS_MANAGE"
531 ],
532 [
533 "okta.sessions.read",
534 "OKTA_SESSIONS_READ"
535 ],
536 [
537 "okta.templates.manage",
538 "OKTA_TEMPLATES_MANAGE"
539 ],
540 [
541 "okta.templates.read",
542 "OKTA_TEMPLATES_READ"
543 ],
544 [
545 "okta.trustedOrigins.manage",
546 "OKTA_TRUSTEDORIGINS_MANAGE"
547 ],
548 [
549 "okta.trustedOrigins.read",
550 "OKTA_TRUSTEDORIGINS_READ"
551 ],
552 [
553 "okta.threatInsights.manage",
554 "OKTA_THREATINSIGHTS_MANAGE"
555 ],
556 [
557 "okta.threatInsights.read",
558 "OKTA_THREATINSIGHTS_READ"
559 ],
560 [
561 "okta.behaviors.manage",
562 "OKTA_BEHAVIORS_MANAGE"
563 ],
564 [
565 "okta.behaviors.read",
566 "OKTA_BEHAVIORS_READ"
567 ],
568 [
569 "okta.networkZones.manage",
570 "OKTA_NETWORKZONES_MANAGE"
571 ],
572 [
573 "okta.networkZones.read",
574 "OKTA_NETWORKZONES_READ"
575 ],
576 [
577 "okta.agentPools.manage",
578 "OKTA_AGENTPOOLS_MANAGE"
579 ],
580 [
581 "okta.agentPools.read",
582 "OKTA_AGENTPOOLS_READ"
583 ],
584 [
585 "okta.reports.read",
586 "OKTA_REPORTS_READ"
587 ],
588 [
589 "okta.features.manage",
590 "OKTA_FEATURES_MANAGE"
591 ],
592 [
593 "okta.features.read",
594 "OKTA_FEATURES_READ"
595 ],
596 [
597 "okta.certificateAuthorities.manage",
598 "OKTA_CERTIFICATEAUTHORITIES_MANAGE"
599 ],
600 [
601 "okta.certificateAuthorities.read",
602 "OKTA_CERTIFICATEAUTHORITIES_READ"
603 ],
604 [
605 "okta.principalRateLimits.manage",
606 "OKTA_PRINCIPALRATELIMITS_MANAGE"
607 ],
608 [
609 "okta.principalRateLimits.read",
610 "OKTA_PRINCIPALRATELIMITS_READ"
611 ],
612 [
613 "okta.rateLimits.manage",
614 "OKTA_RATELIMITS_MANAGE"
615 ],
616 [
617 "okta.rateLimits.read",
618 "OKTA_RATELIMITS_READ"
619 ],
620 [
621 "okta.apiTokens.manage",
622 "OKTA_APITOKENS_MANAGE"
623 ],
624 [
625 "okta.apiTokens.read",
626 "OKTA_APITOKENS_READ"
627 ]
628 ]
629 }
630 ]
631 }
632 ]
633}

Okta (Secondary)

Provider values:

1"provider": "okta_secondary"
1{
2 "oauth": true,
3 "personalization": true,
4 "oauth_token_pair": {
5 "label": "OAuth Token Pair",
6 "optional": true,
7 "type": "object",
8 "hint": "Allows you to create authorization code grant connections. You can create a shell connection in cases where you don't have an access token and refresh token.",
9 "properties": [
10 {
11 "label": "Access Token",
12 "name": "access_token",
13 "type": "string",
14 "optional": false
15 },
16 {
17 "label": "Refresh Token",
18 "name": "refresh_token",
19 "type": "string",
20 "optional": false
21 }
22 ]
23 },
24 "input": [
25 {
26 "label": "Authentication type",
27 "optional": false,
28 "hint": "Select the authentication type to connect with Okta.",
29 "type": "string",
30 "name": "authentication_type",
31 "default": "api_key",
32 "pick_list": [
33 [
34 "Authorization code grant",
35 "oauth2_auth_code_grant"
36 ],
37 [
38 "Client credentials",
39 "oauth2_client_credentials_grant"
40 ],
41 [
42 "API key",
43 "api_key"
44 ]
45 ]
46 },
47 {
48 "label": "Okta domain",
49 "hint": "Your Okta domain name as found in your Okta URL. For example: mycompany.okta.com, mytest.oktapreview.com.",
50 "optional": false,
51 "type": "string",
52 "name": "subdomain"
53 },
54 {
55 "label": "Client ID",
56 "optional": false,
57 "hint": "Refer to the following Okta documentation to obtain a client ID and client secret: https://developer.okta.com/docs/guides/implement-oauth-for-okta/main/#create-an-oauth-2-0-app-in-okta.",
58 "type": "string",
59 "name": "client_id"
60 },
61 {
62 "label": "Client secret",
63 "optional": false,
64 "hint": "Refer to the following Okta documentation to obtain a client ID and client secret: https://developer.okta.com/docs/guides/implement-oauth-for-okta/main/#create-an-oauth-2-0-app-in-okta.",
65 "type": "string",
66 "name": "client_secret"
67 },
68 {
69 "label": "Private key",
70 "optional": false,
71 "hint": "Enter the private key in PEM format. Refer to the Okta private key information to generate this value: https://developer.okta.com/docs/guides/implement-oauth-for-okta-serviceapp/main/#generate-the-jwk-using-the-admin-console",
72 "type": "string",
73 "name": "private_key"
74 },
75 {
76 "label": "API Key",
77 "optional": false,
78 "hint": "Sign in to the Okta admin console as an administrator and go to Security > API > Create Token to create an API key.",
79 "type": "string",
80 "name": "api_key"
81 },
82 {
83 "label": "Advanced settings",
84 "optional": true,
85 "type": "object",
86 "name": "advanced_settings",
87 "properties": [
88 {
89 "label": "OAuth 2.0 scopes",
90 "optional": true,
91 "hint": "Select OAuth 2.0 Scopes to request for this connection. Make sure to specify the required scopes based on the ones defined in Okta > Applications > Applications > Okta API Scopes. The selected scopes are added with okta.logs.read, okta.schemas.read, offline_access, openid which are minimal scopes required to establish connection with Okta. Ensure that okta.users.read is selected to connect using a custom role. The following default scopes are set if left blank: okta.logs.read, okta.schemas.read, offline_access, openid, okta.eventHooks.manage, okta.users.manage, okta.groups.manage, okta.apps.read. Refer to the Okta OAuth 2.0 documentation for more information: https://developer.okta.com/docs/api/oauth2/#oauth-20-scopes",
92 "type": "string",
93 "name": "scopes",
94 "options": [
95 [
96 "okta.users.manage",
97 "OKTA_USERS_MANAGE"
98 ],
99 [
100 "okta.users.read",
101 "OKTA_USERS_READ"
102 ],
103 [
104 "okta.linkedObjects.manage",
105 "OKTA_LINKEDOBJECTS_MANAGE"
106 ],
107 [
108 "okta.linkedObjects.read",
109 "OKTA_LINKEDOBJECTS_READ"
110 ],
111 [
112 "okta.profileMappings.manage",
113 "OKTA_PROFILEMAPPINGS_MANAGE"
114 ],
115 [
116 "okta.profileMappings.read",
117 "OKTA_PROFILEMAPPINGS_READ"
118 ],
119 [
120 "okta.userTypes.manage",
121 "OKTA_USERTYPES_MANAGE"
122 ],
123 [
124 "okta.userTypes.read",
125 "OKTA_USERTYPES_READ"
126 ],
127 [
128 "okta.clients.manage",
129 "OKTA_CLIENTS_MANAGE"
130 ],
131 [
132 "okta.clients.register",
133 "OKTA_CLIENTS_REGISTER"
134 ],
135 [
136 "okta.clients.read",
137 "OKTA_CLIENTS_READ"
138 ],
139 [
140 "okta.appGrants.manage",
141 "OKTA_APPGRANTS_MANAGE"
142 ],
143 [
144 "okta.appGrants.read",
145 "OKTA_APPGRANTS_READ"
146 ],
147 [
148 "okta.policies.manage",
149 "OKTA_POLICIES_MANAGE"
150 ],
151 [
152 "okta.policies.read",
153 "OKTA_POLICIES_READ"
154 ],
155 [
156 "okta.groups.manage",
157 "OKTA_GROUPS_MANAGE"
158 ],
159 [
160 "okta.groups.read",
161 "OKTA_GROUPS_READ"
162 ],
163 [
164 "okta.inlineHooks.manage",
165 "OKTA_INLINEHOOKS_MANAGE"
166 ],
167 [
168 "okta.inlineHooks.read",
169 "OKTA_INLINEHOOKS_READ"
170 ],
171 [
172 "okta.eventHooks.manage",
173 "OKTA_EVENTHOOKS_MANAGE"
174 ],
175 [
176 "okta.eventHooks.read",
177 "OKTA_EVENTHOOKS_READ"
178 ],
179 [
180 "okta.events.read",
181 "OKTA_EVENTS_READ"
182 ],
183 [
184 "okta.apps.manage",
185 "OKTA_APPS_MANAGE"
186 ],
187 [
188 "okta.apps.read",
189 "OKTA_APPS_READ"
190 ],
191 [
192 "okta.schemas.manage",
193 "OKTA_SCHEMAS_MANAGE"
194 ],
195 [
196 "okta.idps.manage",
197 "OKTA_IDPS_MANAGE"
198 ],
199 [
200 "okta.idps.read",
201 "OKTA_IDPS_READ"
202 ],
203 [
204 "okta.factors.manage",
205 "OKTA_FACTORS_MANAGE"
206 ],
207 [
208 "okta.factors.read",
209 "OKTA_FACTORS_READ"
210 ],
211 [
212 "okta.riskProviders.manage",
213 "OKTA_RISKPROVIDERS_MANAGE"
214 ],
215 [
216 "okta.riskProviders.read",
217 "OKTA_RISKPROVIDERS_READ"
218 ],
219 [
220 "okta.roles.manage",
221 "OKTA_ROLES_MANAGE"
222 ],
223 [
224 "okta.roles.read",
225 "OKTA_ROLES_READ"
226 ],
227 [
228 "okta.domains.manage",
229 "OKTA_DOMAINS_MANAGE"
230 ],
231 [
232 "okta.domains.read",
233 "OKTA_DOMAINS_READ"
234 ],
235 [
236 "okta.brands.manage",
237 "OKTA_BRANDS_MANAGE"
238 ],
239 [
240 "okta.brands.read",
241 "OKTA_BRANDS_READ"
242 ],
243 [
244 "okta.sessions.manage",
245 "OKTA_SESSIONS_MANAGE"
246 ],
247 [
248 "okta.sessions.read",
249 "OKTA_SESSIONS_READ"
250 ],
251 [
252 "okta.templates.manage",
253 "OKTA_TEMPLATES_MANAGE"
254 ],
255 [
256 "okta.templates.read",
257 "OKTA_TEMPLATES_READ"
258 ],
259 [
260 "okta.trustedOrigins.manage",
261 "OKTA_TRUSTEDORIGINS_MANAGE"
262 ],
263 [
264 "okta.trustedOrigins.read",
265 "OKTA_TRUSTEDORIGINS_READ"
266 ],
267 [
268 "okta.threatInsights.manage",
269 "OKTA_THREATINSIGHTS_MANAGE"
270 ],
271 [
272 "okta.threatInsights.read",
273 "OKTA_THREATINSIGHTS_READ"
274 ],
275 [
276 "okta.behaviors.manage",
277 "OKTA_BEHAVIORS_MANAGE"
278 ],
279 [
280 "okta.behaviors.read",
281 "OKTA_BEHAVIORS_READ"
282 ],
283 [
284 "okta.networkZones.manage",
285 "OKTA_NETWORKZONES_MANAGE"
286 ],
287 [
288 "okta.networkZones.read",
289 "OKTA_NETWORKZONES_READ"
290 ],
291 [
292 "okta.agentPools.manage",
293 "OKTA_AGENTPOOLS_MANAGE"
294 ],
295 [
296 "okta.agentPools.read",
297 "OKTA_AGENTPOOLS_READ"
298 ],
299 [
300 "okta.reports.read",
301 "OKTA_REPORTS_READ"
302 ],
303 [
304 "okta.features.manage",
305 "OKTA_FEATURES_MANAGE"
306 ],
307 [
308 "okta.features.read",
309 "OKTA_FEATURES_READ"
310 ],
311 [
312 "okta.certificateAuthorities.manage",
313 "OKTA_CERTIFICATEAUTHORITIES_MANAGE"
314 ],
315 [
316 "okta.certificateAuthorities.read",
317 "OKTA_CERTIFICATEAUTHORITIES_READ"
318 ],
319 [
320 "okta.principalRateLimits.manage",
321 "OKTA_PRINCIPALRATELIMITS_MANAGE"
322 ],
323 [
324 "okta.principalRateLimits.read",
325 "OKTA_PRINCIPALRATELIMITS_READ"
326 ],
327 [
328 "okta.rateLimits.manage",
329 "OKTA_RATELIMITS_MANAGE"
330 ],
331 [
332 "okta.rateLimits.read",
333 "OKTA_RATELIMITS_READ"
334 ],
335 [
336 "okta.apiTokens.manage",
337 "OKTA_APITOKENS_MANAGE"
338 ],
339 [
340 "okta.apiTokens.read",
341 "OKTA_APITOKENS_READ"
342 ],
343 [
344 "okta.users.manage.self",
345 "OKTA_USERS_MANAGE_SELF"
346 ],
347 [
348 "okta.users.read.self",
349 "OKTA_USERS_READ_SELF"
350 ],
351 [
352 "email",
353 "EMAIL"
354 ],
355 [
356 "profile",
357 "PROFILE"
358 ],
359 [
360 "address",
361 "ADDRESS"
362 ],
363 [
364 "phone",
365 "PHONE"
366 ],
367 [
368 "groups",
369 "GROUPS"
370 ]
371 ]
372 },
373 {
374 "label": "Client credential scopes",
375 "optional": true,
376 "hint": "Select client credential scopes to request for this connection. Make sure to specify the required scopes based on the ones defined in Okta > Applications > Applications > Okta API Scopes. The selected scopes are added with okta.logs.read, okta.schemas.read which are minimal scopes required to establish connection with Okta. Ensure that okta.users.read is selected to connect using a custom role. The following default scopes are set if left blank: okta.logs.read, okta.schemas.read, okta.eventHooks.manage, okta.users.manage, okta.groups.manage, okta.apps.read. Refer to the Okta OAuth 2.0 documentation for more information: https://developer.okta.com/docs/api/oauth2/#oauth-20-scopes",
377 "type": "string",
378 "name": "client_credential_scopes",
379 "options": [
380 [
381 "okta.users.manage",
382 "OKTA_USERS_MANAGE"
383 ],
384 [
385 "okta.users.read",
386 "OKTA_USERS_READ"
387 ],
388 [
389 "okta.linkedObjects.manage",
390 "OKTA_LINKEDOBJECTS_MANAGE"
391 ],
392 [
393 "okta.linkedObjects.read",
394 "OKTA_LINKEDOBJECTS_READ"
395 ],
396 [
397 "okta.profileMappings.manage",
398 "OKTA_PROFILEMAPPINGS_MANAGE"
399 ],
400 [
401 "okta.profileMappings.read",
402 "OKTA_PROFILEMAPPINGS_READ"
403 ],
404 [
405 "okta.userTypes.manage",
406 "OKTA_USERTYPES_MANAGE"
407 ],
408 [
409 "okta.userTypes.read",
410 "OKTA_USERTYPES_READ"
411 ],
412 [
413 "okta.clients.manage",
414 "OKTA_CLIENTS_MANAGE"
415 ],
416 [
417 "okta.clients.register",
418 "OKTA_CLIENTS_REGISTER"
419 ],
420 [
421 "okta.clients.read",
422 "OKTA_CLIENTS_READ"
423 ],
424 [
425 "okta.appGrants.manage",
426 "OKTA_APPGRANTS_MANAGE"
427 ],
428 [
429 "okta.appGrants.read",
430 "OKTA_APPGRANTS_READ"
431 ],
432 [
433 "okta.policies.manage",
434 "OKTA_POLICIES_MANAGE"
435 ],
436 [
437 "okta.policies.read",
438 "OKTA_POLICIES_READ"
439 ],
440 [
441 "okta.groups.manage",
442 "OKTA_GROUPS_MANAGE"
443 ],
444 [
445 "okta.groups.read",
446 "OKTA_GROUPS_READ"
447 ],
448 [
449 "okta.inlineHooks.manage",
450 "OKTA_INLINEHOOKS_MANAGE"
451 ],
452 [
453 "okta.inlineHooks.read",
454 "OKTA_INLINEHOOKS_READ"
455 ],
456 [
457 "okta.eventHooks.manage",
458 "OKTA_EVENTHOOKS_MANAGE"
459 ],
460 [
461 "okta.eventHooks.read",
462 "OKTA_EVENTHOOKS_READ"
463 ],
464 [
465 "okta.events.read",
466 "OKTA_EVENTS_READ"
467 ],
468 [
469 "okta.apps.manage",
470 "OKTA_APPS_MANAGE"
471 ],
472 [
473 "okta.apps.read",
474 "OKTA_APPS_READ"
475 ],
476 [
477 "okta.schemas.manage",
478 "OKTA_SCHEMAS_MANAGE"
479 ],
480 [
481 "okta.idps.manage",
482 "OKTA_IDPS_MANAGE"
483 ],
484 [
485 "okta.idps.read",
486 "OKTA_IDPS_READ"
487 ],
488 [
489 "okta.factors.manage",
490 "OKTA_FACTORS_MANAGE"
491 ],
492 [
493 "okta.factors.read",
494 "OKTA_FACTORS_READ"
495 ],
496 [
497 "okta.riskProviders.manage",
498 "OKTA_RISKPROVIDERS_MANAGE"
499 ],
500 [
501 "okta.riskProviders.read",
502 "OKTA_RISKPROVIDERS_READ"
503 ],
504 [
505 "okta.roles.manage",
506 "OKTA_ROLES_MANAGE"
507 ],
508 [
509 "okta.roles.read",
510 "OKTA_ROLES_READ"
511 ],
512 [
513 "okta.domains.manage",
514 "OKTA_DOMAINS_MANAGE"
515 ],
516 [
517 "okta.domains.read",
518 "OKTA_DOMAINS_READ"
519 ],
520 [
521 "okta.brands.manage",
522 "OKTA_BRANDS_MANAGE"
523 ],
524 [
525 "okta.brands.read",
526 "OKTA_BRANDS_READ"
527 ],
528 [
529 "okta.sessions.manage",
530 "OKTA_SESSIONS_MANAGE"
531 ],
532 [
533 "okta.sessions.read",
534 "OKTA_SESSIONS_READ"
535 ],
536 [
537 "okta.templates.manage",
538 "OKTA_TEMPLATES_MANAGE"
539 ],
540 [
541 "okta.templates.read",
542 "OKTA_TEMPLATES_READ"
543 ],
544 [
545 "okta.trustedOrigins.manage",
546 "OKTA_TRUSTEDORIGINS_MANAGE"
547 ],
548 [
549 "okta.trustedOrigins.read",
550 "OKTA_TRUSTEDORIGINS_READ"
551 ],
552 [
553 "okta.threatInsights.manage",
554 "OKTA_THREATINSIGHTS_MANAGE"
555 ],
556 [
557 "okta.threatInsights.read",
558 "OKTA_THREATINSIGHTS_READ"
559 ],
560 [
561 "okta.behaviors.manage",
562 "OKTA_BEHAVIORS_MANAGE"
563 ],
564 [
565 "okta.behaviors.read",
566 "OKTA_BEHAVIORS_READ"
567 ],
568 [
569 "okta.networkZones.manage",
570 "OKTA_NETWORKZONES_MANAGE"
571 ],
572 [
573 "okta.networkZones.read",
574 "OKTA_NETWORKZONES_READ"
575 ],
576 [
577 "okta.agentPools.manage",
578 "OKTA_AGENTPOOLS_MANAGE"
579 ],
580 [
581 "okta.agentPools.read",
582 "OKTA_AGENTPOOLS_READ"
583 ],
584 [
585 "okta.reports.read",
586 "OKTA_REPORTS_READ"
587 ],
588 [
589 "okta.features.manage",
590 "OKTA_FEATURES_MANAGE"
591 ],
592 [
593 "okta.features.read",
594 "OKTA_FEATURES_READ"
595 ],
596 [
597 "okta.certificateAuthorities.manage",
598 "OKTA_CERTIFICATEAUTHORITIES_MANAGE"
599 ],
600 [
601 "okta.certificateAuthorities.read",
602 "OKTA_CERTIFICATEAUTHORITIES_READ"
603 ],
604 [
605 "okta.principalRateLimits.manage",
606 "OKTA_PRINCIPALRATELIMITS_MANAGE"
607 ],
608 [
609 "okta.principalRateLimits.read",
610 "OKTA_PRINCIPALRATELIMITS_READ"
611 ],
612 [
613 "okta.rateLimits.manage",
614 "OKTA_RATELIMITS_MANAGE"
615 ],
616 [
617 "okta.rateLimits.read",
618 "OKTA_RATELIMITS_READ"
619 ],
620 [
621 "okta.apiTokens.manage",
622 "OKTA_APITOKENS_MANAGE"
623 ],
624 [
625 "okta.apiTokens.read",
626 "OKTA_APITOKENS_READ"
627 ]
628 ]
629 }
630 ]
631 }
632 ]
633}

On-prem command-line scripts

Provider values:

1"provider": "onprem_command_line_scripts"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "profile",
8 "type": "string",
9 "label": "On-prem command-line scripts profile",
10 "hint": "Profile name given in the <b>config.yml</b> file"
11 }
12 ]
13 }

On-prem files

Provider values:

1"provider": "onprem_files"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "profile",
8 "type": "string",
9 "label": "On-prem connection profile",
10 "hint": "Profile name given in the <b>config.yml</b> file"
11 }
12 ]
13 }

On-prem files (Secondary)

Provider values:

1"provider": "onprem_files_secondary"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "profile",
8 "type": "string",
9 "label": "On-prem connection profile",
10 "hint": "Profile name given in the <b>config.yml</b> file"
11 }
12 ]
13 }

OneDrive

Provider values:

1"provider": "onedrive"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "account_type",
8 "type": "string",
9 "optional": false,
10 "label": "Account type",
11 "hint": "Select your Onedrive account type",
12 "pick_list":
13 [
14 [
15 "Personal",
16 "personal"
17 ],
18 [
19 "Business",
20 "business"
21 ]
22 ],
23 "default": "personal"
24 }
25 ]
26 }

Oracle

Provider values:

1"provider": "oracle"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "profile",
8 "type": "string",
9 "label": "On-prem connection profile"
10 },
11 {
12 "name": "host",
13 "type": "string",
14 "label": "Database host"
15 },
16 {
17 "name": "port",
18 "type": "string",
19 "optional": true,
20 "label": "Database port",
21 "hint": "Port number, default is 1521",
22 "default": 1521
23 },
24 {
25 "name": "user",
26 "type": "string",
27 "label": "User name"
28 },
29 {
30 "name": "password",
31 "type": "string",
32 "optional": true,
33 "label": "Password"
34 },
35 {
36 "name": "dbname",
37 "type": "string",
38 "label": "Database name"
39 }
40 ]
41 }

Oracle (Secondary)

Provider values:

1"provider": "oracle_secondary"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "profile",
8 "type": "string",
9 "label": "On-prem connection profile"
10 },
11 {
12 "name": "host",
13 "type": "string",
14 "label": "Database host"
15 },
16 {
17 "name": "port",
18 "type": "string",
19 "optional": true,
20 "label": "Database port",
21 "hint": "Port number, default is 1521",
22 "default": 1521
23 },
24 {
25 "name": "user",
26 "type": "string",
27 "label": "User name"
28 },
29 {
30 "name": "password",
31 "type": "string",
32 "optional": true,
33 "label": "Password"
34 },
35 {
36 "name": "dbname",
37 "type": "string",
38 "label": "Database name"
39 }
40 ]
41 }

Oracle E-Business Suite

Provider values:

1"provider": "oracle_ebs"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "instance_url",
8 "type": "string",
9 "label": "Instance URL",
10 "hint": "URL of the instance. Eg: 'https://oracleebs.mycompany.com:8000/'. <br />\nDeploy User PL/SQL service (internal name: FND_USER_PKG) with service name as 'user'\n"
11 },
12 {
13 "name": "username",
14 "type": "string",
15 "label": "Username"
16 },
17 {
18 "name": "password",
19 "type": "string",
20 "label": "Password"
21 },
22 {
23 "name": "user_service_name",
24 "type": "string",
25 "label": "User service name",
26 "hint": "Name of the PL/SQL REST service name used while deployment"
27 }
28 ]
29 }

Oracle Fusion

Provider values:

1"provider": "oracle_fusion"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "user",
8 "type": "string",
9 "label": "User"
10 },
11 {
12 "name": "password",
13 "type": "string",
14 "label": "Password"
15 }
16 ]
17 }

Outlook

Provider values:

1"provider": "outlook"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "advanced_settings",
8 "type": "object",
9 "optional": true,
10 "label": "Advanced settings",
11 "properties":
12 [
13 {
14 "name": "api_scope",
15 "type": "string",
16 "optional": true,
17 "label": "Requested permissions (Oauth scopes)",
18 "hint": " Select <a href=\"https://docs.microsoft.com/en-us/graph/permissions-reference#mail-permissions\" target=\"_blank\">permissions</a>\n to request for this connection. Defaults to minimum permissions if left blank.\n Minimum permissions required are <b>mail.read</b>, <b>mail.send</b>, <b>calendars.readwrite</b>, <b>offline_access</b>, <b>mail.Read.Shared</b>;\n these are always requested in addition to selected permissions.\n"
19 }
20 ]
21 }
22 ]
23 }

Outreach

Provider values:

1"provider": "outreach"

OutSystems

Provider values:

1"provider": "out_systems"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "API_key",
8 "type": "string",
9 "optional": false,
10 "label": "API key",
11 "hint": "Type in an API key generated using the security configuration page, on the <b>OutSystems Workato Connector</b>. If you don't have the <b>OutSystems Workato Connector</b> installed on your server, please get it from the <a href=\"https://www.outsystems.com/forge/\" target=\"_blank\">OutSystems Forge</a>."
12 },
13 {
14 "name": "EnvironmentURL",
15 "type": "string",
16 "optional": false,
17 "label": "Environment URL",
18 "hint": "Your OutSystems environment URL (eg: YOUR_PERSONAL.outsystemscloud.com)."
19 }
20 ]
21 }

Pagerduty

Provider values:

1"provider": "pagerduty"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "api_key",
8 "type": "string",
9 "optional": false,
10 "label": "API key",
11 "hint": "Go to Configuration -> API Access and get API Key"
12 }
13 ]
14 }

ParseHub

Provider values:

1"provider": "parsehub"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "api_key",
8 "type": "string",
9 "optional": false,
10 "label": "Api key",
11 "hint": "Select your ParseHub account name-> Select Account-> Get your api key"
12 }
13 ]
14 }

People Task by Workato

Provider values:

1"provider": "workflow"

Percolate

Provider values:

1"provider": "percolate"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "client_id",
8 "type": "string",
9 "optional": false,
10 "label": "Client ID",
11 "hint": "To create client ID, the system admin or manager can click <a href=\"https://percolate.com/app/settings/developer/apps/new\" target=\"_blank\">here</a> to register a new client application."
12 },
13 {
14 "name": "client_secret",
15 "type": "string",
16 "optional": false,
17 "label": "Client secret",
18 "hint": "To create client secret, the system admin or manager can click <a href=\"https://percolate.com/app/settings/developer/apps/new\" target=\"_blank\">here</a> to register a new client application."
19 },
20 {
21 "name": "environment",
22 "type": "string",
23 "optional": false,
24 "label": "Environment",
25 "pick_list":
26 [
27 [
28 "Production",
29 "production"
30 ],
31 [
32 "Sandbox",
33 "sandbox"
34 ],
35 [
36 "Internal",
37 "internal"
38 ]
39 ]
40 }
41 ]
42 }

PGP

Provider values:

1"provider": "pgp"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "public_key",
8 "type": "string",
9 "optional": true,
10 "label": "Public key (deprecated)",
11 "hint": "Provide the public key in Encrypt and Verify action input."
12 },
13 {
14 "name": "private_key",
15 "type": "string",
16 "optional": true,
17 "label": "Private key",
18 "hint": "Private is required for decrypt and sign actions. Learn how to generate a pair of Public key and Private key\n<a href=\"https://docs.workato.com/en/features/pgp-encryption.html\" target=\"_blank\">here</a>.\n"
19 },
20 {
21 "name": "passphrase",
22 "type": "string",
23 "optional": true,
24 "label": "Passphrase",
25 "hint": "Passphrase of the keys you have generated."
26 }
27 ]
28 }

Pingdom

Provider value:

1"provider": "pingdom"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "app_key",
8 "type": "string",
9 "optional": false,
10 "label": "Application key"
11 },
12 {
13 "name": "username",
14 "type": "string",
15 "optional": false,
16 "label": "Username",
17 "hint": "Your username"
18 },
19 {
20 "name": "password",
21 "type": "string",
22 "optional": false,
23 "label": "Password"
24 }
25 ]
26 }

Pipedrive

Provider value:

1"provider": "pipedrive"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "api_token",
8 "type": "string",
9 "label": "Api token",
10 "hint": "API token is found in the API tab under Personal settings (Settings > Personal > API)"
11 }
12 ]
13 }

Pivotal Tracker

Provider value:

1"provider": "pivotal_tracker"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "api_key",
8 "type": "string",
9 "optional": true,
10 "label": "API key",
11 "hint": "Select your account name -> Profile. Scroll down to end of the page to get API token"
12 }
13 ]
14 }

PlanGrid

Provider value:

1"provider": "plan_grid"

Connection parameter configuration is not required for this connector.


Podio

Provider value:

1"provider": "podio"

Connection parameter configuration is not required for this connector.


PostgreSQL

Provider value:

1"provider": "postgresql"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "profile",
8 "type": "string",
9 "label": "On-prem connection profile"
10 },
11 {
12 "name": "host",
13 "type": "string",
14 "label": "Database host"
15 },
16 {
17 "name": "port",
18 "type": "string",
19 "label": "Database port"
20 },
21 {
22 "name": "user",
23 "type": "string",
24 "label": "User name"
25 },
26 {
27 "name": "password",
28 "type": "string",
29 "optional": true,
30 "label": "Password"
31 },
32 {
33 "name": "dbname",
34 "type": "string",
35 "label": "Database name"
36 },
37 {
38 "name": "schema_name",
39 "type": "string",
40 "optional": true,
41 "label": "Schema",
42 "hint": "\"public\" schema by default"
43 }
44 ]
45 }

PostgreSQL (Secondary)

Provider value:

1"provider": "postgresql_secondary"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "profile",
8 "type": "string",
9 "label": "On-prem connection profile"
10 },
11 {
12 "name": "host",
13 "type": "string",
14 "label": "Database host"
15 },
16 {
17 "name": "port",
18 "type": "string",
19 "label": "Database port"
20 },
21 {
22 "name": "user",
23 "type": "string",
24 "label": "User name"
25 },
26 {
27 "name": "password",
28 "type": "string",
29 "optional": true,
30 "label": "Password"
31 },
32 {
33 "name": "dbname",
34 "type": "string",
35 "label": "Database name"
36 },
37 {
38 "name": "schema_name",
39 "type": "string",
40 "optional": true,
41 "label": "Schema",
42 "hint": "\"public\" schema by default"
43 }
44 ]
45 }

Product Hunt

Provider value:

1"provider": "product_hunt"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "username",
8 "type": "string",
9 "optional": false,
10 "label": "Username",
11 "hint": "Your Product Hunt Username. Remove \"@\" prefix."
12 }
13 ]
14 }

Prontoforms

Provider value:

1"provider": "prontoforms"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "api_key",
8 "type": "string",
9 "label": "Api key"
10 },
11 {
12 "name": "api_secret",
13 "type": "string",
14 "label": "Api secret"
15 }
16 ]
17 }

Propel

Provider value:

1"provider": "propel"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "sandbox",
8 "type": "boolean",
9 "optional": true,
10 "label": "Sandbox",
11 "hint": "Is this connecting to a sandbox account?",
12 "default": "false"
13 }
14 ]
15 }

PubSub by Workato

Provider value:

1"provider": "workato_pub_sub"

Quick Base

Provider value:

1"provider": "quickbase"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "subdomain",
8 "type": "string",
9 "label": "Sub-domain",
10 "hint": "Your Quick Base subdomain is most often your company name"
11 },
12 {
13 "name": "user_token_auth",
14 "type": "boolean",
15 "label": "User-token authentication?",
16 "hint": "Is authentication based on user tokens? If yes, provide <b>User token</b>. If no, provide <b>Username</b> & <b>Password</b>.",
17 "default": "false"
18 },
19 {
20 "name": "usertoken",
21 "type": "string",
22 "optional": true,
23 "label": "User token",
24 "hint": "Get/create user token by clicking on <b>Your profile > My preferences > Manage User Tokens</b>. <a href=\"https://help.quickbase.com/api-guide/manage_user_tokens.html\" target=\"_blank\">Learn more</a>"
25 },
26 {
27 "name": "username",
28 "type": "string",
29 "optional": true,
30 "label": "Username"
31 },
32 {
33 "name": "password",
34 "type": "string",
35 "optional": true,
36 "label": "Password"
37 }
38 ]
39 }

Quick Base (Secondary)

Provider value:

1"provider": "quickbase_secondary"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "subdomain",
8 "type": "string",
9 "label": "Sub-domain",
10 "hint": "Your Quick Base subdomain is most often your company name"
11 },
12 {
13 "name": "user_token_auth",
14 "type": "boolean",
15 "label": "User-token authentication?",
16 "hint": "Is authentication based on user tokens? If yes, provide <b>User token</b>. If no, provide <b>Username</b> & <b>Password</b>.",
17 "default": "false"
18 },
19 {
20 "name": "usertoken",
21 "type": "string",
22 "optional": true,
23 "label": "User token",
24 "hint": "Get/create user token by clicking on <b>Your profile > My preferences > Manage User Tokens</b>. <a href=\"https://help.quickbase.com/api-guide/manage_user_tokens.html\" target=\"_blank\">Learn more</a>"
25 },
26 {
27 "name": "username",
28 "type": "string",
29 "optional": true,
30 "label": "Username"
31 },
32 {
33 "name": "password",
34 "type": "string",
35 "optional": true,
36 "label": "Password"
37 }
38 ]
39 }

QuickBooks Online

Provider value:

1"provider": "quickbooks"

Connection parameter configuration is not required for this connector.


Quip

Provider value:

1"provider": "quip"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "api_key",
8 "type": "string",
9 "label": "Personal API token",
10 "hint": "Personal API token. Click <a href=\"https://quip.com/api/personal-token\">here</a> to generate API token"
11 }
12 ]
13 }

Raiser’s Edge NXT

Provider value:

1"provider": "raisers_edge"

Connection parameter configuration is not required for this connector.


RecipeOps by Workato

Provider value:

1"provider": "workato_app"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "connecting_to_account",
8 "type": "boolean",
9 "label": "Whose account are you managing?",
10 "pick_list":
11 [
12 [
13 "My account",
14 "current"
15 ],
16 [
17 "Someone else's account",
18 "other"
19 ]
20 ],
21 "default": "nil"
22 },
23 {
24 "name": "email",
25 "type": "string",
26 "label": "Email",
27 "hint": "The email address of the managed account."
28 },
29 {
30 "name": "api_key",
31 "type": "string",
32 "label": "API key",
33 "hint": "Ask the account holder to provide the API key found here: <a href=\"http://localhost:3000/users/current/edit#api_key\" target=\"_blank\">http://localhost:3000/users/current/edit#api_key</a>"
34 }
35 ]
36 }

Redshift

Provider value:

1"provider": "redshift"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "url",
8 "type": "string",
9 "label": "URL",
10 "hint": "Redshift JDBC URL."
11 },
12 {
13 "name": "username",
14 "type": "string",
15 "label": "Username"
16 },
17 {
18 "name": "password",
19 "type": "string",
20 "label": "Password"
21 },
22 {
23 "name": "schema_name",
24 "type": "string",
25 "optional": true,
26 "label": "Schema",
27 "hint": "\"public\" schema by default"
28 }
29 ]
30 }

Redshift (Secondary)

Provider value:

1"provider": "redshift_secondary"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "url",
8 "type": "string",
9 "label": "URL",
10 "hint": "Redshift JDBC URL."
11 },
12 {
13 "name": "username",
14 "type": "string",
15 "label": "Username"
16 },
17 {
18 "name": "password",
19 "type": "string",
20 "label": "Password"
21 },
22 {
23 "name": "schema_name",
24 "type": "string",
25 "optional": true,
26 "label": "Schema",
27 "hint": "\"public\" schema by default"
28 }
29 ]
30 }

RegOnline® by Lanyon

Provider value:

1"provider": "active_reg_online"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "api_token",
8 "type": "string",
9 "label": "API Token",
10 "hint": "API token is found at the bottom of the RegOnline 'Edit User' screen."
11 }
12 ]
13 }

Replicon

Provider value:

1"provider": "replicon"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "company",
8 "type": "string",
9 "label": "Company",
10 "hint": "The company name associated with your login"
11 },
12 {
13 "name": "user_token_auth",
14 "type": "boolean",
15 "label": "User-token authentication?",
16 "hint": "Is authentication based on user tokens? If <b>Yes</b>, provide <b>User token</b>. Is <b>No</b>, provide <b>Username</b> & <b>Password</b>.",
17 "default": "false"
18 },
19 {
20 "name": "usertoken",
21 "type": "string",
22 "optional": true,
23 "label": "User token",
24 "hint": "Use this API https://<b>region</b>.replicon.com/<b>Company name</b>/services/AuthenticationService1.svc/help/test/CreateAccessToken to get user token"
25 },
26 {
27 "name": "username",
28 "type": "string",
29 "label": "Login name"
30 },
31 {
32 "name": "password",
33 "type": "string",
34 "optional": true,
35 "label": "Password"
36 },
37 {
38 "name": "subdomain",
39 "type": "string",
40 "optional": true,
41 "label": "Subdomain",
42 "hint": "Leave to default (global) for production instances",
43 "default": "global"
44 }
45 ]
46 }

Revel Systems

Provider value:

1"provider": "revel_systems"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "subdomain",
8 "type": "string",
9 "label": "Subdomain",
10 "hint": "Your revel systems subdomain, usually a company name; for example, the <b>api-playground</b> part in https://api-playground.revelup.com"
11 },
12 {
13 "name": "api_key",
14 "type": "string",
15 "label": "Api key"
16 },
17 {
18 "name": "api_secret",
19 "type": "string",
20 "label": "Api secret"
21 }
22 ]
23 }

RingCentral

Provider value:

1"provider": "ringcentral"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "development",
8 "type": "number",
9 "optional": true,
10 "label": "Development",
11 "hint": "Leave empty to connect production account. Provide <b>true</b> for development account <b>false</b> for production account."
12 }
13 ]
14 }

Rollbar

Provider value:

1"provider": "rollbar"

Ruby

Provider value:

1"provider": "workato_custom_code"

Sage Intacct

Provider value:

1"provider": "intacct"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "login_username",
8 "type": "string",
9 "label": "Login username"
10 },
11 {
12 "name": "login_password",
13 "type": "string",
14 "label": "Login password"
15 },
16 {
17 "name": "company_id",
18 "type": "string",
19 "label": "Company ID"
20 },
21 {
22 "name": "location_id",
23 "type": "string",
24 "optional": true,
25 "label": "Location ID",
26 "hint": "If not specified, it takes the top level(all entities)"
27 }
28 ]
29 }

Sage Live

Provider value:

1"provider": "sagelive"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "sandbox",
8 "type": "boolean",
9 "optional": true,
10 "label": "Sandbox",
11 "hint": "Is this connecting to a sandbox account?",
12 "default": "false"
13 }
14 ]
15 }

Salesforce

Provider value:

1"provider": "salesforce"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "sandbox",
8 "type": "boolean",
9 "optional": true,
10 "label": "Sandbox",
11 "hint": "Is this connecting to a sandbox account?",
12 "default": "false"
13 },
14 {
15 "name": "advanced_settings",
16 "type": "object",
17 "optional": true,
18 "label": "Advanced settings",
19 "properties":
20 [
21 {
22 "name": "custom_login_url",
23 "type": "string",
24 "optional": true,
25 "label": "Salesforce community custom domain URL",
26 "hint": " Enter your Salesforce community's custom domain URL, eg. <b>acme-domain.force.com</b>.\n <a href=\"https://docs.workato.com/en/connectors/salesforce.html#connecting-to-custom-domains\" target=\"_blank\">Learn more</a>\n"
27 },
28 {
29 "name": "api_scope",
30 "type": "string",
31 "optional": true,
32 "label": "Requested permissions (Oauth scopes)",
33 "hint": " Select <a href=\"https://help.salesforce.com/articleView?id=remoteaccess_oauth_scopes.htm&type=5\" target=\"_blank\">permissions</a>\n to request for this connection. Defaults to <b>full</b> (all permissions) if left blank.\n <br />Minimum permissions required are <b>basic info</b>, <b>manage data</b> and <b>make\n requests at any time</b>;\n those are always requested in addition to selected permissions.\n"
34 }
35 ]
36 }
37 ]
38 }

Salesforce (Secondary)

Provider value:

1"provider": "salesforce_secondary"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "sandbox",
8 "type": "boolean",
9 "optional": true,
10 "label": "Sandbox",
11 "hint": "Is this connecting to a sandbox account?",
12 "default": "false"
13 },
14 {
15 "name": "advanced_settings",
16 "type": "object",
17 "optional": true,
18 "label": "Advanced settings",
19 "properties":
20 [
21 {
22 "name": "custom_login_url",
23 "type": "string",
24 "optional": true,
25 "label": "Salesforce community custom domain URL",
26 "hint": " Enter your Salesforce community's custom domain URL, eg. <b>acme-domain.force.com</b>.\n <a href=\"https://docs.workato.com/en/connectors/salesforce.html#connecting-to-custom-domains\" target=\"_blank\">Learn more</a>\n"
27 },
28 {
29 "name": "api_scope",
30 "type": "string",
31 "optional": true,
32 "label": "Requested permissions (Oauth scopes)",
33 "hint": " Select <a href=\"https://help.salesforce.com/articleView?id=remoteaccess_oauth_scopes.htm&type=5\" target=\"_blank\">permissions</a>\n to request for this connection. Defaults to <b>full</b> (all permissions) if left blank.\n <br />Minimum permissions required are <b>basic info</b>, <b>manage data</b> and <b>make\n requests at any time</b>;\n those are always requested in addition to selected permissions.\n"
34 }
35 ]
36 }
37 ]
38 }

Salesforce CPQ

Provider value:

1"provider": "steelbrick"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "sandbox",
8 "type": "boolean",
9 "optional": true,
10 "label": "Sandbox",
11 "hint": "Is this connecting to a sandbox account?",
12 "default": "false"
13 }
14 ]
15 }

SalesforceIQ

Provider value:

1"provider": "relateiq"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "api_key",
8 "type": "string",
9 "label": "API Key",
10 "hint": "Create in your SalesforceIQ account: Organization > settings > integrations"
11 },
12 {
13 "name": "api_secret",
14 "type": "string",
15 "label": "API Secret"
16 }
17 ]
18 }

Salesforce Marketing Cloud

Provider value:

1"provider": "salesforce_marketing_cloud"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "flag",
8 "type": "boolean",
9 "label": "Are you using a new installed package?",
10 "hint": "Legacy packages (created before 1st August 2019) uses a different set of fields to connect.",
11 "default": "false"
12 },
13 {
14 "name": "instance",
15 "type": "string",
16 "label": "Instance",
17 "hint": "Select the instance of your account. Eg: Select <b>s7</b>, if the instance URL is <b>https://mc.s7.exacttarget.com</b>.",
18 "pick_list":
19 [
20 [
21 "s1",
22 "s1"
23 ],
24 [
25 "s4",
26 "s4"
27 ],
28 [
29 "s6",
30 "s6"
31 ],
32 [
33 "s7",
34 "s7"
35 ],
36 [
37 "s10",
38 "s10"
39 ],
40 [
41 "test",
42 "test"
43 ]
44 ]
45 },
46 {
47 "name": "instance_name",
48 "type": "string",
49 "label": "Instance name",
50 "hint": "Enter the instance of your account. Eg: Enter <b>s7</b>, if the instance URL is <b>https://mc.s7.exacttarget.com</b>."
51 },
52 {
53 "name": "subdomain",
54 "type": "string",
55 "label": "Subdomain",
56 "hint": "Enter the sub-domain of your account."
57 },
58 {
59 "name": "client_id",
60 "type": "string",
61 "label": "Client ID",
62 "hint": " Create client credentials with read and write access for <b>channels</b>, <b>assets</b>, <b>contacts</b>, <b>data</b>. To access shared content, use\n credentials of business unit where content belongs.\n To create client credentials refer\n <a href=\"https://developer.salesforce.com/docs/atlas.en-us.mc-getting-started.meta/mc-getting-started/app-center-types.htm\" target=\"_blank\">here</a>.\n"
63 },
64 {
65 "name": "client_secret",
66 "type": "string",
67 "label": "Client secret"
68 }
69 ]
70 }

SAP D4C

Provider value:

1"provider": "sap_d4c"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "username",
8 "type": "string",
9 "label": "Username"
10 },
11 {
12 "name": "password",
13 "type": "string",
14 "label": "Password"
15 },
16 {
17 "name": "endpoint",
18 "type": "string",
19 "label": "Endpoint",
20 "hint": "Eg. 'my123456.vlab.sapbydesign.com'"
21 }
22 ]
23 }

SAP OData

Provider value:

1"provider": "sap_s4_hana_cloud"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "domain",
8 "type": "string",
9 "label": "Service URL",
10 "hint": "Your SAP Service URL to validate authentication. For example, <b>http://sap.intranet.acme.com:7654/sap/opu/odata/sap/ZEMPLOYEE_SRV</b>."
11 },
12 {
13 "name": "username",
14 "type": "string",
15 "label": "Username"
16 },
17 {
18 "name": "password",
19 "type": "string",
20 "label": "Password"
21 },
22 {
23 "name": "client",
24 "type": "string",
25 "optional": true,
26 "label": "Client",
27 "hint": "SAP client ID. Leave blank to use the default logon client."
28 }
29 ]
30 }

SAP RFC

Provider value:

1"provider": "sap"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "profile",
8 "type": "string",
9 "label": "On-prem agent connection profile",
10 "hint": "<a href=\"https://docs.workato.com/en/connectors/sap.html\" target=\"_blank\">Click here</a> to learn how to configure SAP connection."
11 }
12 ]
13 }

Scheduler by Workato

Provider value:

1"provider": "clock"

SendGrid

Provider value:

1"provider": "sendgrid"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "api_key",
8 "type": "string",
9 "optional": false,
10 "label": "API key",
11 "hint": "Go to settings -> API keys -> create API key"
12 }
13 ]
14 }

ServiceM8

Provider value:

1"provider": "servicem8"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "user",
8 "type": "string",
9 "label": "User"
10 },
11 {
12 "name": "password",
13 "type": "string",
14 "label": "Password"
15 }
16 ]
17 }

ServiceMax

Provider value:

1"provider": "service_max"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "sandbox",
8 "type": "boolean",
9 "optional": true,
10 "label": "Sandbox",
11 "hint": "Is this connecting to a sandbox account?",
12 "default": "false"
13 }
14 ]
15 }

ServiceNow

Provider value:

1"provider": "service_now"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "authentication_type",
8 "type": "string",
9 "label": "Authentication type",
10 "hint": "Only Istanbul version or later supports OAuth 2.0. <a href=\"http://docs.workato.com/en/connectors/servicenow.html\" target=\"_blank\">Learn more</a> about the authentication types.",
11 "pick_list":
12 [
13 [
14 "Username/Password",
15 "basic"
16 ],
17 [
18 "OAuth 2.0",
19 "oauth"
20 ]
21 ],
22 "default": "basic"
23 },
24 {
25 "name": "subdomain",
26 "type": "string",
27 "label": "Instance name",
28 "hint": "If your ServiceNow url is <b>https://acme.service-now.com</b>, then instance name is <b>'acme'</b>."
29 },
30 {
31 "name": "username",
32 "type": "string",
33 "label": "Username",
34 "hint": "Make sure that you have sufficient access control to all the tables you wish to work with. <a href=\"http://docs.workato.com/en/connectors/servicenow.html#roles-and-permissions-required-to-connect\" target=\"_blank\">Learn more</a>."
35 },
36 {
37 "name": "password",
38 "type": "string",
39 "label": "Password"
40 },
41 {
42 "name": "client_id",
43 "type": "string",
44 "label": "Client ID",
45 "hint": "<a href=\"http://docs.workato.com/en/connectors/servicenow.html#oauth-20\" target=\"_blank\">Learn more</a> about setting up OAuth in your ServiceNow instance."
46 },
47 {
48 "name": "client_secret",
49 "type": "string",
50 "label": "Client secret"
51 }
52 ]
53 }

ServiceNow (Secondary)

Provider value:

1"provider": "service_now_secondary"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "authentication_type",
8 "type": "string",
9 "label": "Authentication type",
10 "hint": "Only Istanbul version or later supports OAuth 2.0. <a href=\"http://docs.workato.com/en/connectors/servicenow.html\" target=\"_blank\">Learn more</a> about the authentication types.",
11 "pick_list":
12 [
13 [
14 "Username/Password",
15 "basic"
16 ],
17 [
18 "OAuth 2.0",
19 "oauth"
20 ]
21 ],
22 "default": "basic"
23 },
24 {
25 "name": "subdomain",
26 "type": "string",
27 "label": "Instance name",
28 "hint": "If your ServiceNow url is <b>https://acme.service-now.com</b>, then instance name is <b>'acme'</b>."
29 },
30 {
31 "name": "username",
32 "type": "string",
33 "label": "Username",
34 "hint": "Make sure that you have sufficient access control to all the tables you wish to work with. <a href=\"http://docs.workato.com/en/connectors/servicenow.html#roles-and-permissions-required-to-connect\" target=\"_blank\">Learn more</a>."
35 },
36 {
37 "name": "password",
38 "type": "string",
39 "label": "Password"
40 },
41 {
42 "name": "client_id",
43 "type": "string",
44 "label": "Client ID",
45 "hint": "<a href=\"http://docs.workato.com/en/connectors/servicenow.html#oauth-20\" target=\"_blank\">Learn more</a> about setting up OAuth in your ServiceNow instance."
46 },
47 {
48 "name": "client_secret",
49 "type": "string",
50 "label": "Client secret"
51 }
52 ]
53 }

SFTP

Provider value:

1"provider": "sftp"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "auth_type",
8 "type": "string",
9 "label": "Auth type",
10 "pick_list":
11 [
12 [
13 "Username/password",
14 "username_password"
15 ],
16 [
17 "Public/private key pair",
18 "pubkey"
19 ]
20 ],
21 "default": "username_password"
22 },
23 {
24 "name": "username",
25 "type": "string",
26 "label": "Username"
27 },
28 {
29 "name": "password",
30 "type": "string",
31 "label": "Password"
32 },
33 {
34 "name": "private_key",
35 "type": "string",
36 "label": "Private key",
37 "hint": "Please use an OpenSSH private key, without password protection. <a href=\"https://www.ssh.com/ssh/keygen/\" target=\"_blank\">Learn more</a>"
38 },
39 {
40 "name": "hostname",
41 "type": "string",
42 "label": "Hostname",
43 "hint": "Contact your SFTP server administrator to whitelist Workato IP addresses. <a href=\"http://docs.workato.com/en/security.html\" target=\"_blank\">Learn more</a>"
44 },
45 {
46 "name": "port",
47 "type": "integer",
48 "label": "Port",
49 "hint": "The standard port is 22, contact your SFTP server administrator for the correct port.",
50 },
51 {
52 "name": "host_key_fingerprint",
53 "type": "string",
54 "optional": true,
55 "label": "Host key fingerprint",
56 "hint": "The connection will still be encrypted without this, but without protection against <a href=\"https://en.wikipedia.org/wiki/Man-in-the-middle_attack\">MITM</a><br />Contact SFTP server administrator for the key fingerprint."
57 },
58 {
59 "name": "transfer_buffer_size",
60 "type": "integer",
61 "label": "Transfer buffer size",
62 "hint": "Size of the buffer used to transfer files. Minimum is 32768.\nLarger sizes, if supported by the SFTP server, generally speed up transfers.\nMaximum is 327680.\n",
63 },
64 {
65 "name": "force_close",
66 "type": "boolean",
67 "optional": true,
68 "label": "Force close",
69 "hint": "Shuts down the underlying SSH connection at the end of the transaction.\nOnly needed for servers where the connection attempt seems to hang, should\nbe left unset otherwise to allow a clean connection close.\n"
70 }
71 ]
72 }

SFTP - Secondary

Provider value:

1"provider": "sftp secondary"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "auth_type",
8 "type": "string",
9 "label": "Auth type",
10 "pick_list":
11 [
12 [
13 "Username/password",
14 "username_password"
15 ],
16 [
17 "Public/private key pair",
18 "pubkey"
19 ]
20 ],
21 "default": "username_password"
22 },
23 {
24 "name": "username",
25 "type": "string",
26 "label": "Username"
27 },
28 {
29 "name": "password",
30 "type": "string",
31 "label": "Password"
32 },
33 {
34 "name": "private_key",
35 "type": "string",
36 "label": "Private key",
37 "hint": "Please use an OpenSSH private key, without password protection."
38 },
39 {
40 "name": "hostname",
41 "type": "string",
42 "label": "Hostname",
43 "hint": "Contact your SFTP server administrator to whitelist Workato IP addresses. <a href=\"http://docs.workato.com/en/security.html\" target=\"_blank\">Learn more</a>"
44 },
45 {
46 "name": "port",
47 "type": "integer",
48 "label": "Port",
49 "hint": "The standard port is 22, contact your SFTP server administrator for the correct port.",
50 },
51 {
52 "name": "host_key_fingerprint",
53 "type": "string",
54 "optional": true,
55 "label": "Host key fingerprint",
56 "hint": "The connection will still be encrypted without this, but without protection against <a href=\"https://en.wikipedia.org/wiki/Man-in-the-middle_attack\">MITM</a><br />Contact SFTP server administrator for the key fingerprint."
57 },
58 {
59 "name": "transfer_buffer_size",
60 "type": "integer",
61 "label": "Transfer buffer size",
62 "hint": "Size of the buffer used to transfer files. Minimum is 32768.\nLarger sizes, if supported by the SFTP server, generally speed up transfers.\nMaximum is 327680.\n",
63 },
64 {
65 "name": "force_close",
66 "type": "boolean",
67 "optional": true,
68 "label": "Force close",
69 "hint": "Shuts down the underlying SSH connection at the end of the transaction.\nOnly needed for servers where the connection attempt seems to hang, should\nbe left unset otherwise to allow a clean connection close.\n"
70 }
71 ]
72 }

Shopify

Provider value:

1"provider": "shopify"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "shop_name",
8 "type": "string",
9 "label": "Shop Name",
10 "hint": "Your shop name Eg. <b>shopname</b>.myshopify.com/admin"
11 }
12 ]
13 }

Showpad

Provider value:

1"provider": "showpad"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "subdomain",
8 "type": "string",
9 "label": "Subdomain",
10 "hint": "Your Showpad subdomain, usually a company name; for example, the <b>acme</b> part in https://acme.showpad.biz"
11 }
12 ]
13 }

Slack

Provider value:

1"provider": "slack"

Connection parameter configuration is not required for this connector.


Slack (Secondary)

Provider value:

1"provider": "slack_secondary"

Connection parameter configuration is not required for this connector.


Smartsheet

Provider value:

1"provider": "smartsheet"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "advanced_settings",
8 "type": "object",
9 "optional": true,
10 "label": "Advanced settings",
11 "properties":
12 [
13 {
14 "name": "api_scope",
15 "type": "string",
16 "optional": true,
17 "label": "Requested permissions (Oauth scopes)",
18 "hint": " Select <a href=\"https://smartsheet-platform.github.io/api-docs/#access-scopes\" target=\"_blank\">permissions</a>\n to request for this connection. Defaults to minimum permissions, if left blank.\n <br />Minimum permissions required are <b>READ_SHEETS</b>, <b>WRITE_SHEETS</b>, <b>ADMIN_WEBHOOKS</b> and <b>CREATE_SHEETS</b>;\n those are always requested in addition to selected permissions.\n"
19 }
20 ]
21 }
22 ]
23 }

SMS by Workato

Provider value:

1"provider": "sms"

Snowflake

Provider value:

1"provider": "snowflake"
1{
2 "oauth": true,
3 "personalization": true,
4 "input": [
5 {
6 "label": "Account identifier",
7 "optional": false,
8 "hint": "Account identifier of your Snowflake instance. This depends on the cloud platform, such as AWS, Azure, or GCP, and region where your Snowflake instance is hosted. Refer to the Snowflake connector documentation for more information: https://docs.workato.com/connectors/snowflake.html#how-to-connect-to-snowflake-on-workato",
9 "type": "string",
10 "name": "host"
11 },
12 {
13 "label": "Warehouse",
14 "hint": "Full name of warehouse to perform all operations for this connection. Refer to the Snowflake connector documentation for more information: https://docs.workato.com/connectors/snowflake.html#warehouse-considerations",
15 "type": "string",
16 "name": "warehouse"
17 },
18 {
19 "label": "Database name",
20 "type": "string",
21 "name": "database"
22 },
23 {
24 "label": "Authentication type",
25 "default": "key_pair",
26 "type": "string",
27 "name": "authentication_type",
28 "pick_list": [
29 [
30 "OAuth 2.0",
31 "oauth"
32 ],
33 [
34 "Key-pair authentication",
35 "key_pair"
36 ],
37 [
38 "Username/Password (Deprecated)",
39 "basic"
40 ]
41 ]
42 },
43 {
44 "label": "User name",
45 "type": "string",
46 "name": "user"
47 },
48 {
49 "label": "Password",
50 "hint": "Snowflake plans to deprecate single-factor password authentication for users by November 2025. Refer to the Snowflake connector documentation for more information: https://docs.workato.com/connectors/snowflake.html#configure-username-password-authentication",
51 "optional": true,
52 "type": "string",
53 "name": "password"
54 },
55 {
56 "label": "Private key",
57 "optional": true,
58 "hint": "Paste your private key in PKCS 8 format. Use '\n' characters sequence to join all pem lines into one json string. The Private key field is ignored by the connection when the Password field is provided. Refer to the Snowflake Key Pair Authentication documentation for more information: https://docs.snowflake.com/en/user-guide/key-pair-auth",
59 "type": "string",
60 "name": "private_key"
61 },
62 {
63 "label": "Private key passphrase",
64 "optional": true,
65 "hint": "You must enter the passphrase if the private key is encrypted.",
66 "type": "string",
67 "name": "private_key_passphrase"
68 },
69 {
70 "label": "Client ID",
71 "hint": "Refer to the Snowflake connector documentation to obtain a Client ID and Client secret: https://docs.workato.com/connectors/snowflake.html#configuring-oauth-2-0",
72 "type": "string",
73 "name": "client_id"
74 },
75 {
76 "label": "Client secret",
77 "hint": "Refer to the Snowflake connector documentation to obtain a Client ID and Client secret: https://docs.workato.com/connectors/snowflake.html#configuring-oauth-2-0",
78 "type": "string",
79 "name": "client_secret"
80 },
81 {
82 "label": "Role",
83 "optional": true,
84 "hint": "Specify the role for requests using this connection. This role must be an existing role assigned to the user. Leave blank to use the default role of the user.",
85 "type": "string",
86 "name": "role"
87 },
88 {
89 "label": "Schema",
90 "optional": true,
91 "hint": "PUBLIC schema by default",
92 "type": "string",
93 "name": "schema_name"
94 },
95 {
96 "label": "Use improved datetime handling (Recommended)",
97 "optional": true,
98 "hint": "Defaults to true. Enable this if you plan to specify the timezone for timestamp columns during insertion and retrieval. Make sure you specify the timezone in the next field.",
99 "type": "boolean",
100 "name": "improved_datetime_handling"
101 },
102 {
103 "label": "Database timezone",
104 "optional": true,
105 "hint": "Highly recommended if your database contains timestamps with timezone values. This timezone will be applied to all timestamps inserted to the database. Refer to the Snowflake connector documentation for more information: https://docs.workato.com/connectors/snowflake.html#database-timezone",
106 "type": "string",
107 "name": "db_timezone",
108 "pick_list": [
109 [
110 "American Samoa",
111 "American Samoa"
112 ],
113 [
114 "International Date Line West",
115 "International Date Line West"
116 ],
117 [
118 "Midway Island",
119 "Midway Island"
120 ],
121 [
122 "Hawaii",
123 "Hawaii"
124 ],
125 [
126 "Alaska",
127 "Alaska"
128 ],
129 [
130 "Pacific Time (US & Canada)",
131 "Pacific Time (US & Canada)"
132 ],
133 [
134 "Tijuana",
135 "Tijuana"
136 ],
137 [
138 "Arizona",
139 "Arizona"
140 ],
141 [
142 "Chihuahua",
143 "Chihuahua"
144 ],
145 [
146 "Mazatlan",
147 "Mazatlan"
148 ],
149 [
150 "Mountain Time (US & Canada)",
151 "Mountain Time (US & Canada)"
152 ],
153 [
154 "Central America",
155 "Central America"
156 ],
157 [
158 "Central Time (US & Canada)",
159 "Central Time (US & Canada)"
160 ],
161 [
162 "Guadalajara",
163 "Guadalajara"
164 ],
165 [
166 "Mexico City",
167 "Mexico City"
168 ],
169 [
170 "Monterrey",
171 "Monterrey"
172 ],
173 [
174 "Saskatchewan",
175 "Saskatchewan"
176 ],
177 [
178 "Bogota",
179 "Bogota"
180 ],
181 [
182 "Eastern Time (US & Canada)",
183 "Eastern Time (US & Canada)"
184 ],
185 [
186 "Indiana (East)",
187 "Indiana (East)"
188 ],
189 [
190 "Lima",
191 "Lima"
192 ],
193 [
194 "Quito",
195 "Quito"
196 ],
197 [
198 "Atlantic Time (Canada)",
199 "Atlantic Time (Canada)"
200 ],
201 [
202 "Caracas",
203 "Caracas"
204 ],
205 [
206 "Georgetown",
207 "Georgetown"
208 ],
209 [
210 "La Paz",
211 "La Paz"
212 ],
213 [
214 "Santiago",
215 "Santiago"
216 ],
217 [
218 "Newfoundland",
219 "Newfoundland"
220 ],
221 [
222 "Brasilia",
223 "Brasilia"
224 ],
225 [
226 "Buenos Aires",
227 "Buenos Aires"
228 ],
229 [
230 "Greenland",
231 "Greenland"
232 ],
233 [
234 "Montevideo",
235 "Montevideo"
236 ],
237 [
238 "Mid-Atlantic",
239 "Mid-Atlantic"
240 ],
241 [
242 "Azores",
243 "Azores"
244 ],
245 [
246 "Cape Verde Is.",
247 "Cape Verde Is."
248 ],
249 [
250 "Casablanca",
251 "Casablanca"
252 ],
253 [
254 "Dublin",
255 "Dublin"
256 ],
257 [
258 "Edinburgh",
259 "Edinburgh"
260 ],
261 [
262 "Lisbon",
263 "Lisbon"
264 ],
265 [
266 "London",
267 "London"
268 ],
269 [
270 "Monrovia",
271 "Monrovia"
272 ],
273 [
274 "UTC",
275 "UTC"
276 ],
277 [
278 "Amsterdam",
279 "Amsterdam"
280 ],
281 [
282 "Belgrade",
283 "Belgrade"
284 ],
285 [
286 "Berlin",
287 "Berlin"
288 ],
289 [
290 "Bern",
291 "Bern"
292 ],
293 [
294 "Bratislava",
295 "Bratislava"
296 ],
297 [
298 "Brussels",
299 "Brussels"
300 ],
301 [
302 "Budapest",
303 "Budapest"
304 ],
305 [
306 "Copenhagen",
307 "Copenhagen"
308 ],
309 [
310 "Ljubljana",
311 "Ljubljana"
312 ],
313 [
314 "Madrid",
315 "Madrid"
316 ],
317 [
318 "Paris",
319 "Paris"
320 ],
321 [
322 "Prague",
323 "Prague"
324 ],
325 [
326 "Rome",
327 "Rome"
328 ],
329 [
330 "Sarajevo",
331 "Sarajevo"
332 ],
333 [
334 "Skopje",
335 "Skopje"
336 ],
337 [
338 "Stockholm",
339 "Stockholm"
340 ],
341 [
342 "Vienna",
343 "Vienna"
344 ],
345 [
346 "Warsaw",
347 "Warsaw"
348 ],
349 [
350 "West Central Africa",
351 "West Central Africa"
352 ],
353 [
354 "Zagreb",
355 "Zagreb"
356 ],
357 [
358 "Athens",
359 "Athens"
360 ],
361 [
362 "Bucharest",
363 "Bucharest"
364 ],
365 [
366 "Cairo",
367 "Cairo"
368 ],
369 [
370 "Harare",
371 "Harare"
372 ],
373 [
374 "Helsinki",
375 "Helsinki"
376 ],
377 [
378 "Jerusalem",
379 "Jerusalem"
380 ],
381 [
382 "Kaliningrad",
383 "Kaliningrad"
384 ],
385 [
386 "Kyiv",
387 "Kyiv"
388 ],
389 [
390 "Pretoria",
391 "Pretoria"
392 ],
393 [
394 "Riga",
395 "Riga"
396 ],
397 [
398 "Sofia",
399 "Sofia"
400 ],
401 [
402 "Tallinn",
403 "Tallinn"
404 ],
405 [
406 "Vilnius",
407 "Vilnius"
408 ],
409 [
410 "Baghdad",
411 "Baghdad"
412 ],
413 [
414 "Istanbul",
415 "Istanbul"
416 ],
417 [
418 "Kuwait",
419 "Kuwait"
420 ],
421 [
422 "Minsk",
423 "Minsk"
424 ],
425 [
426 "Moscow",
427 "Moscow"
428 ],
429 [
430 "Nairobi",
431 "Nairobi"
432 ],
433 [
434 "Riyadh",
435 "Riyadh"
436 ],
437 [
438 "St. Petersburg",
439 "St. Petersburg"
440 ],
441 [
442 "Tehran",
443 "Tehran"
444 ],
445 [
446 "Abu Dhabi",
447 "Abu Dhabi"
448 ],
449 [
450 "Baku",
451 "Baku"
452 ],
453 [
454 "Muscat",
455 "Muscat"
456 ],
457 [
458 "Samara",
459 "Samara"
460 ],
461 [
462 "Tbilisi",
463 "Tbilisi"
464 ],
465 [
466 "Volgograd",
467 "Volgograd"
468 ],
469 [
470 "Yerevan",
471 "Yerevan"
472 ],
473 [
474 "Kabul",
475 "Kabul"
476 ],
477 [
478 "Ekaterinburg",
479 "Ekaterinburg"
480 ],
481 [
482 "Islamabad",
483 "Islamabad"
484 ],
485 [
486 "Karachi",
487 "Karachi"
488 ],
489 [
490 "Tashkent",
491 "Tashkent"
492 ],
493 [
494 "Chennai",
495 "Chennai"
496 ],
497 [
498 "Kolkata",
499 "Kolkata"
500 ],
501 [
502 "Mumbai",
503 "Mumbai"
504 ],
505 [
506 "New Delhi",
507 "New Delhi"
508 ],
509 [
510 "Sri Jayawardenepura",
511 "Sri Jayawardenepura"
512 ],
513 [
514 "Kathmandu",
515 "Kathmandu"
516 ],
517 [
518 "Almaty",
519 "Almaty"
520 ],
521 [
522 "Astana",
523 "Astana"
524 ],
525 [
526 "Dhaka",
527 "Dhaka"
528 ],
529 [
530 "Urumqi",
531 "Urumqi"
532 ],
533 [
534 "Rangoon",
535 "Rangoon"
536 ],
537 [
538 "Bangkok",
539 "Bangkok"
540 ],
541 [
542 "Hanoi",
543 "Hanoi"
544 ],
545 [
546 "Jakarta",
547 "Jakarta"
548 ],
549 [
550 "Krasnoyarsk",
551 "Krasnoyarsk"
552 ],
553 [
554 "Novosibirsk",
555 "Novosibirsk"
556 ],
557 [
558 "Beijing",
559 "Beijing"
560 ],
561 [
562 "Chongqing",
563 "Chongqing"
564 ],
565 [
566 "Hong Kong",
567 "Hong Kong"
568 ],
569 [
570 "Irkutsk",
571 "Irkutsk"
572 ],
573 [
574 "Kuala Lumpur",
575 "Kuala Lumpur"
576 ],
577 [
578 "Perth",
579 "Perth"
580 ],
581 [
582 "Singapore",
583 "Singapore"
584 ],
585 [
586 "Taipei",
587 "Taipei"
588 ],
589 [
590 "Ulaanbaatar",
591 "Ulaanbaatar"
592 ],
593 [
594 "Osaka",
595 "Osaka"
596 ],
597 [
598 "Sapporo",
599 "Sapporo"
600 ],
601 [
602 "Seoul",
603 "Seoul"
604 ],
605 [
606 "Tokyo",
607 "Tokyo"
608 ],
609 [
610 "Yakutsk",
611 "Yakutsk"
612 ],
613 [
614 "Adelaide",
615 "Adelaide"
616 ],
617 [
618 "Darwin",
619 "Darwin"
620 ],
621 [
622 "Brisbane",
623 "Brisbane"
624 ],
625 [
626 "Canberra",
627 "Canberra"
628 ],
629 [
630 "Guam",
631 "Guam"
632 ],
633 [
634 "Hobart",
635 "Hobart"
636 ],
637 [
638 "Melbourne",
639 "Melbourne"
640 ],
641 [
642 "Port Moresby",
643 "Port Moresby"
644 ],
645 [
646 "Sydney",
647 "Sydney"
648 ],
649 [
650 "Vladivostok",
651 "Vladivostok"
652 ],
653 [
654 "Magadan",
655 "Magadan"
656 ],
657 [
658 "New Caledonia",
659 "New Caledonia"
660 ],
661 [
662 "Solomon Is.",
663 "Solomon Is."
664 ],
665 [
666 "Srednekolymsk",
667 "Srednekolymsk"
668 ],
669 [
670 "Auckland",
671 "Auckland"
672 ],
673 [
674 "Fiji",
675 "Fiji"
676 ],
677 [
678 "Kamchatka",
679 "Kamchatka"
680 ],
681 [
682 "Marshall Is.",
683 "Marshall Is."
684 ],
685 [
686 "Wellington",
687 "Wellington"
688 ],
689 [
690 "Chatham Is.",
691 "Chatham Is."
692 ],
693 [
694 "Nuku'alofa",
695 "Nuku'alofa"
696 ],
697 [
698 "Samoa",
699 "Samoa"
700 ],
701 [
702 "Tokelau Is.",
703 "Tokelau Is."
704 ]
705 ]
706 }
707 ]
708}

Snowflake (Secondary)

Provider value:

1"provider": "snowflake_secondary"
1{
2 "oauth": true,
3 "personalization": true,
4 "input": [
5 {
6 "label": "Account identifier",
7 "optional": false,
8 "hint": "Account identifier of your Snowflake instance. This depends on the cloud platform, such as AWS, Azure, or GCP, and region where your Snowflake instance is hosted. Refer to the Snowflake connector documentation for more information: https://docs.workato.com/connectors/snowflake.html#how-to-connect-to-snowflake-on-workato",
9 "type": "string",
10 "name": "host"
11 },
12 {
13 "label": "Warehouse",
14 "hint": "Full name of warehouse to perform all operations for this connection. Refer to the Snowflake connector documentation for more information: https://docs.workato.com/connectors/snowflake.html#warehouse-considerations",
15 "type": "string",
16 "name": "warehouse"
17 },
18 {
19 "label": "Database name",
20 "type": "string",
21 "name": "database"
22 },
23 {
24 "label": "Authentication type",
25 "default": "key_pair",
26 "type": "string",
27 "name": "authentication_type",
28 "pick_list": [
29 [
30 "OAuth 2.0",
31 "oauth"
32 ],
33 [
34 "Key-pair authentication",
35 "key_pair"
36 ],
37 [
38 "Username/Password (Deprecated)",
39 "basic"
40 ]
41 ]
42 },
43 {
44 "label": "User name",
45 "type": "string",
46 "name": "user"
47 },
48 {
49 "label": "Password",
50 "hint": "Snowflake plans to deprecate single-factor password authentication for users by November 2025. Refer to the Snowflake connector documentation for more information: https://docs.workato.com/connectors/snowflake.html#configure-username-password-authentication",
51 "optional": true,
52 "type": "string",
53 "name": "password"
54 },
55 {
56 "label": "Private key",
57 "optional": true,
58 "hint": "Paste your private key in PKCS 8 format. Use '\n' characters sequence to join all pem lines into one json string. The Private key field is ignored by the connection when the Password field is provided. Refer to the Snowflake Key Pair Authentication documentation for more information: https://docs.snowflake.com/en/user-guide/key-pair-auth",
59 "type": "string",
60 "name": "private_key"
61 },
62 {
63 "label": "Private key passphrase",
64 "optional": true,
65 "hint": "You must enter the passphrase if the private key is encrypted.",
66 "type": "string",
67 "name": "private_key_passphrase"
68 },
69 {
70 "label": "Client ID",
71 "hint": "Refer to the Snowflake connector documentation to obtain a Client ID and Client secret: https://docs.workato.com/connectors/snowflake.html#configuring-oauth-2-0",
72 "type": "string",
73 "name": "client_id"
74 },
75 {
76 "label": "Client secret",
77 "hint": "Refer to the Snowflake connector documentation to obtain a Client ID and Client secret: https://docs.workato.com/connectors/snowflake.html#configuring-oauth-2-0",
78 "type": "string",
79 "name": "client_secret"
80 },
81 {
82 "label": "Role",
83 "optional": true,
84 "hint": "Specify the role for requests using this connection. This role must be an existing role assigned to the user. Leave blank to use the default role of the user.",
85 "type": "string",
86 "name": "role"
87 },
88 {
89 "label": "Schema",
90 "optional": true,
91 "hint": "PUBLIC schema by default",
92 "type": "string",
93 "name": "schema_name"
94 },
95 {
96 "label": "Use improved datetime handling (Recommended)",
97 "optional": true,
98 "hint": "Defaults to true. Enable this if you plan to specify the timezone for timestamp columns during insertion and retrieval. Make sure you specify the timezone in the next field.",
99 "type": "boolean",
100 "name": "improved_datetime_handling"
101 },
102 {
103 "label": "Database timezone",
104 "optional": true,
105 "hint": "Highly recommended if your database contains timestamps with timezone values. This timezone will be applied to all timestamps inserted to the database. Refer to the Snowflake connector documentation for more information: https://docs.workato.com/connectors/snowflake.html#database-timezone",
106 "type": "string",
107 "name": "db_timezone",
108 "pick_list": [
109 [
110 "American Samoa",
111 "American Samoa"
112 ],
113 [
114 "International Date Line West",
115 "International Date Line West"
116 ],
117 [
118 "Midway Island",
119 "Midway Island"
120 ],
121 [
122 "Hawaii",
123 "Hawaii"
124 ],
125 [
126 "Alaska",
127 "Alaska"
128 ],
129 [
130 "Pacific Time (US & Canada)",
131 "Pacific Time (US & Canada)"
132 ],
133 [
134 "Tijuana",
135 "Tijuana"
136 ],
137 [
138 "Arizona",
139 "Arizona"
140 ],
141 [
142 "Chihuahua",
143 "Chihuahua"
144 ],
145 [
146 "Mazatlan",
147 "Mazatlan"
148 ],
149 [
150 "Mountain Time (US & Canada)",
151 "Mountain Time (US & Canada)"
152 ],
153 [
154 "Central America",
155 "Central America"
156 ],
157 [
158 "Central Time (US & Canada)",
159 "Central Time (US & Canada)"
160 ],
161 [
162 "Guadalajara",
163 "Guadalajara"
164 ],
165 [
166 "Mexico City",
167 "Mexico City"
168 ],
169 [
170 "Monterrey",
171 "Monterrey"
172 ],
173 [
174 "Saskatchewan",
175 "Saskatchewan"
176 ],
177 [
178 "Bogota",
179 "Bogota"
180 ],
181 [
182 "Eastern Time (US & Canada)",
183 "Eastern Time (US & Canada)"
184 ],
185 [
186 "Indiana (East)",
187 "Indiana (East)"
188 ],
189 [
190 "Lima",
191 "Lima"
192 ],
193 [
194 "Quito",
195 "Quito"
196 ],
197 [
198 "Atlantic Time (Canada)",
199 "Atlantic Time (Canada)"
200 ],
201 [
202 "Caracas",
203 "Caracas"
204 ],
205 [
206 "Georgetown",
207 "Georgetown"
208 ],
209 [
210 "La Paz",
211 "La Paz"
212 ],
213 [
214 "Santiago",
215 "Santiago"
216 ],
217 [
218 "Newfoundland",
219 "Newfoundland"
220 ],
221 [
222 "Brasilia",
223 "Brasilia"
224 ],
225 [
226 "Buenos Aires",
227 "Buenos Aires"
228 ],
229 [
230 "Greenland",
231 "Greenland"
232 ],
233 [
234 "Montevideo",
235 "Montevideo"
236 ],
237 [
238 "Mid-Atlantic",
239 "Mid-Atlantic"
240 ],
241 [
242 "Azores",
243 "Azores"
244 ],
245 [
246 "Cape Verde Is.",
247 "Cape Verde Is."
248 ],
249 [
250 "Casablanca",
251 "Casablanca"
252 ],
253 [
254 "Dublin",
255 "Dublin"
256 ],
257 [
258 "Edinburgh",
259 "Edinburgh"
260 ],
261 [
262 "Lisbon",
263 "Lisbon"
264 ],
265 [
266 "London",
267 "London"
268 ],
269 [
270 "Monrovia",
271 "Monrovia"
272 ],
273 [
274 "UTC",
275 "UTC"
276 ],
277 [
278 "Amsterdam",
279 "Amsterdam"
280 ],
281 [
282 "Belgrade",
283 "Belgrade"
284 ],
285 [
286 "Berlin",
287 "Berlin"
288 ],
289 [
290 "Bern",
291 "Bern"
292 ],
293 [
294 "Bratislava",
295 "Bratislava"
296 ],
297 [
298 "Brussels",
299 "Brussels"
300 ],
301 [
302 "Budapest",
303 "Budapest"
304 ],
305 [
306 "Copenhagen",
307 "Copenhagen"
308 ],
309 [
310 "Ljubljana",
311 "Ljubljana"
312 ],
313 [
314 "Madrid",
315 "Madrid"
316 ],
317 [
318 "Paris",
319 "Paris"
320 ],
321 [
322 "Prague",
323 "Prague"
324 ],
325 [
326 "Rome",
327 "Rome"
328 ],
329 [
330 "Sarajevo",
331 "Sarajevo"
332 ],
333 [
334 "Skopje",
335 "Skopje"
336 ],
337 [
338 "Stockholm",
339 "Stockholm"
340 ],
341 [
342 "Vienna",
343 "Vienna"
344 ],
345 [
346 "Warsaw",
347 "Warsaw"
348 ],
349 [
350 "West Central Africa",
351 "West Central Africa"
352 ],
353 [
354 "Zagreb",
355 "Zagreb"
356 ],
357 [
358 "Athens",
359 "Athens"
360 ],
361 [
362 "Bucharest",
363 "Bucharest"
364 ],
365 [
366 "Cairo",
367 "Cairo"
368 ],
369 [
370 "Harare",
371 "Harare"
372 ],
373 [
374 "Helsinki",
375 "Helsinki"
376 ],
377 [
378 "Jerusalem",
379 "Jerusalem"
380 ],
381 [
382 "Kaliningrad",
383 "Kaliningrad"
384 ],
385 [
386 "Kyiv",
387 "Kyiv"
388 ],
389 [
390 "Pretoria",
391 "Pretoria"
392 ],
393 [
394 "Riga",
395 "Riga"
396 ],
397 [
398 "Sofia",
399 "Sofia"
400 ],
401 [
402 "Tallinn",
403 "Tallinn"
404 ],
405 [
406 "Vilnius",
407 "Vilnius"
408 ],
409 [
410 "Baghdad",
411 "Baghdad"
412 ],
413 [
414 "Istanbul",
415 "Istanbul"
416 ],
417 [
418 "Kuwait",
419 "Kuwait"
420 ],
421 [
422 "Minsk",
423 "Minsk"
424 ],
425 [
426 "Moscow",
427 "Moscow"
428 ],
429 [
430 "Nairobi",
431 "Nairobi"
432 ],
433 [
434 "Riyadh",
435 "Riyadh"
436 ],
437 [
438 "St. Petersburg",
439 "St. Petersburg"
440 ],
441 [
442 "Tehran",
443 "Tehran"
444 ],
445 [
446 "Abu Dhabi",
447 "Abu Dhabi"
448 ],
449 [
450 "Baku",
451 "Baku"
452 ],
453 [
454 "Muscat",
455 "Muscat"
456 ],
457 [
458 "Samara",
459 "Samara"
460 ],
461 [
462 "Tbilisi",
463 "Tbilisi"
464 ],
465 [
466 "Volgograd",
467 "Volgograd"
468 ],
469 [
470 "Yerevan",
471 "Yerevan"
472 ],
473 [
474 "Kabul",
475 "Kabul"
476 ],
477 [
478 "Ekaterinburg",
479 "Ekaterinburg"
480 ],
481 [
482 "Islamabad",
483 "Islamabad"
484 ],
485 [
486 "Karachi",
487 "Karachi"
488 ],
489 [
490 "Tashkent",
491 "Tashkent"
492 ],
493 [
494 "Chennai",
495 "Chennai"
496 ],
497 [
498 "Kolkata",
499 "Kolkata"
500 ],
501 [
502 "Mumbai",
503 "Mumbai"
504 ],
505 [
506 "New Delhi",
507 "New Delhi"
508 ],
509 [
510 "Sri Jayawardenepura",
511 "Sri Jayawardenepura"
512 ],
513 [
514 "Kathmandu",
515 "Kathmandu"
516 ],
517 [
518 "Almaty",
519 "Almaty"
520 ],
521 [
522 "Astana",
523 "Astana"
524 ],
525 [
526 "Dhaka",
527 "Dhaka"
528 ],
529 [
530 "Urumqi",
531 "Urumqi"
532 ],
533 [
534 "Rangoon",
535 "Rangoon"
536 ],
537 [
538 "Bangkok",
539 "Bangkok"
540 ],
541 [
542 "Hanoi",
543 "Hanoi"
544 ],
545 [
546 "Jakarta",
547 "Jakarta"
548 ],
549 [
550 "Krasnoyarsk",
551 "Krasnoyarsk"
552 ],
553 [
554 "Novosibirsk",
555 "Novosibirsk"
556 ],
557 [
558 "Beijing",
559 "Beijing"
560 ],
561 [
562 "Chongqing",
563 "Chongqing"
564 ],
565 [
566 "Hong Kong",
567 "Hong Kong"
568 ],
569 [
570 "Irkutsk",
571 "Irkutsk"
572 ],
573 [
574 "Kuala Lumpur",
575 "Kuala Lumpur"
576 ],
577 [
578 "Perth",
579 "Perth"
580 ],
581 [
582 "Singapore",
583 "Singapore"
584 ],
585 [
586 "Taipei",
587 "Taipei"
588 ],
589 [
590 "Ulaanbaatar",
591 "Ulaanbaatar"
592 ],
593 [
594 "Osaka",
595 "Osaka"
596 ],
597 [
598 "Sapporo",
599 "Sapporo"
600 ],
601 [
602 "Seoul",
603 "Seoul"
604 ],
605 [
606 "Tokyo",
607 "Tokyo"
608 ],
609 [
610 "Yakutsk",
611 "Yakutsk"
612 ],
613 [
614 "Adelaide",
615 "Adelaide"
616 ],
617 [
618 "Darwin",
619 "Darwin"
620 ],
621 [
622 "Brisbane",
623 "Brisbane"
624 ],
625 [
626 "Canberra",
627 "Canberra"
628 ],
629 [
630 "Guam",
631 "Guam"
632 ],
633 [
634 "Hobart",
635 "Hobart"
636 ],
637 [
638 "Melbourne",
639 "Melbourne"
640 ],
641 [
642 "Port Moresby",
643 "Port Moresby"
644 ],
645 [
646 "Sydney",
647 "Sydney"
648 ],
649 [
650 "Vladivostok",
651 "Vladivostok"
652 ],
653 [
654 "Magadan",
655 "Magadan"
656 ],
657 [
658 "New Caledonia",
659 "New Caledonia"
660 ],
661 [
662 "Solomon Is.",
663 "Solomon Is."
664 ],
665 [
666 "Srednekolymsk",
667 "Srednekolymsk"
668 ],
669 [
670 "Auckland",
671 "Auckland"
672 ],
673 [
674 "Fiji",
675 "Fiji"
676 ],
677 [
678 "Kamchatka",
679 "Kamchatka"
680 ],
681 [
682 "Marshall Is.",
683 "Marshall Is."
684 ],
685 [
686 "Wellington",
687 "Wellington"
688 ],
689 [
690 "Chatham Is.",
691 "Chatham Is."
692 ],
693 [
694 "Nuku'alofa",
695 "Nuku'alofa"
696 ],
697 [
698 "Samoa",
699 "Samoa"
700 ],
701 [
702 "Tokelau Is.",
703 "Tokelau Is."
704 ]
705 ]
706 }
707 ]
708}

SOAP tools by Workato

Provider value:

1"provider": "soap"

Splunk

Provider value:

1"provider": "splunk"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "server_url",
8 "type": "string",
9 "label": "Server URL",
10 "hint": " The URL of the Splunk management port (for example, https://yourdomain:8089).\n You MUST install the <a href=\"https://splunkbase.splunk.com/apps/#/search/workato\" target=\"_blank\">Workato Add-on for Splunk</a> first.\n"
11 },
12 {
13 "name": "username",
14 "type": "string",
15 "label": "Username",
16 "hint": "The Splunk username (for example, admin)"
17 },
18 {
19 "name": "password",
20 "type": "string",
21 "label": "Password",
22 "hint": "The password for the Splunk username"
23 }
24 ]
25 }

SQL Server

Provider value:

1"provider": "mssql"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "profile",
8 "type": "string",
9 "label": "On-prem connection profile"
10 },
11 {
12 "name": "username",
13 "type": "string",
14 "label": "Username",
15 "hint": "For Azure SQL use username@server"
16 },
17 {
18 "name": "password",
19 "type": "string",
20 "label": "Password"
21 },
22 {
23 "name": "host",
24 "type": "string",
25 "label": "Host"
26 },
27 {
28 "name": "port",
29 "type": "string",
30 "optional": true,
31 "label": "Port",
32 "hint": "Port number, default is 1433",
33 "default": 1433
34 },
35 {
36 "name": "database",
37 "type": "string",
38 "label": "Database"
39 },
40 {
41 "name": "azure",
42 "type": "boolean",
43 "optional": true,
44 "label": "Azure SQL",
45 "hint": "Choose 'yes' if connecting to Azure SQL",
46 "default": "false"
47 }
48 ]
49 }

SQL Server (Secondary)

Provider value:

1"provider": "mssql_secondary"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "profile",
8 "type": "string",
9 "label": "On-prem connection profile"
10 },
11 {
12 "name": "username",
13 "type": "string",
14 "label": "Username",
15 "hint": "For Azure SQL use username@server"
16 },
17 {
18 "name": "password",
19 "type": "string",
20 "label": "Password"
21 },
22 {
23 "name": "host",
24 "type": "string",
25 "label": "Host"
26 },
27 {
28 "name": "port",
29 "type": "string",
30 "optional": true,
31 "label": "Port",
32 "hint": "Port number, default is 1433",
33 "default": 1433
34 },
35 {
36 "name": "database",
37 "type": "string",
38 "label": "Database"
39 },
40 {
41 "name": "azure",
42 "type": "boolean",
43 "optional": true,
44 "label": "Azure SQL",
45 "hint": "Choose 'yes' if connecting to Azure SQL",
46 "default": "false"
47 }
48 ]
49 }

Stripe

Provider value:

1"provider": "stripe"
1{
2 "oauth": true,
3 "personalization": true,
4 "oauth_token_pair": {
5 "label": "OAuth Token Pair",
6 "optional": true,
7 "type": "object",
8 "hint": "Allows you to create authorization code grant connections. You can create a shell connection in cases where you don't have an access token and refresh token.",
9 "properties": [
10 {
11 "label": "Access Token",
12 "name": "access_token",
13 "type": "string",
14 "optional": false
15 },
16 {
17 "label": "Refresh Token",
18 "name": "refresh_token",
19 "type": "string",
20 "optional": false
21 }
22 ]
23 },
24 "input": [
25 {
26 "label": "Authentication type",
27 "default": "oauth2_auth_code_grant",
28 "hint": "Select the authentication type.",
29 "optional": false,
30 "type": "string",
31 "name": "authentication_type",
32 "pick_list": [
33 [
34 "Authorization code grant",
35 "oauth2_auth_code_grant"
36 ],
37 [
38 "API key",
39 "api_key"
40 ]
41 ]
42 },
43 {
44 "label": "Demo",
45 "default": "false",
46 "optional": true,
47 "hint": "Specify whether this connection is for a demo account.",
48 "type": "boolean",
49 "name": "demo"
50 },
51 {
52 "label": "API key",
53 "optional": false,
54 "hint": "Provide your Stripe API secret key. Go to 'Developers dashboard > API keys' to manage your API keys. Provide the test mode secret key to access test mode data. Otherwise, provide the live mode secret key to access actual account data. Refer to the Stripe documentation to learn more: https://docs.stripe.com/keys",
55 "type": "string",
56 "name": "api_key"
57 }
58 ]
59}

SuccessFactors

Provider value:

1"provider": "success_factors"
1{
2 "oauth": false,
3 "personalization": true,
4 "input": [
5 {
6 "type": "string",
7 "name": "authentication",
8 "label": "Authentication type",
9 "optional": false,
10 "pick_list": [
11 [
12 "Basic",
13 "basic"
14 ],
15 [
16 "OAuth 2.0",
17 "oauth2"
18 ]
19 ]
20 },
21 {
22 "name": "odata_version",
23 "label": "OData version",
24 "hint": "Select the OData version of your SAP system. Odata v4 is only supported by Oauth 2.0 authentication. Defaults to OData V2 if left blank.",
25 "optional": true,
26 "type": "string",
27 "default": "v2",
28 "pick_list": [
29 [
30 "OData V2",
31 "v2"
32 ],
33 [
34 "OData V4",
35 "v4"
36 ]
37 ]
38 },
39 {
40 "label": "Company ID",
41 "optional": false,
42 "hint": "Enter your company ID. Select 'Show Version Information' from the profile drop-down menu in SuccessFactors to find your Company ID, or retrieve the ID from the URL after 'company='. Refer to the SuccessFactors connector documentation for more information: https://docs.workato.com/connectors/successfactors/successfactors.html#connection-setup",
43 "type": "string",
44 "name": "company"
45 },
46 {
47 "label": "User ID",
48 "optional": false,
49 "hint": "Enter your SAP SuccessFactors user ID.",
50 "type": "string",
51 "name": "user_id"
52 },
53 {
54 "label": "Password",
55 "optional": false,
56 "type": "string",
57 "name": "password"
58 },
59 {
60 "label": "Client ID",
61 "optional": false,
62 "hint": "Enter the OAuth client ID. You can generate this API Key in the SAP SuccessFactors API Center.",
63 "type": "string",
64 "name": "client_id"
65 },
66 {
67 "label": "Private key",
68 "optional": false,
69 "hint": "Enter the X.509 private key that signs SAML assertion. You can use the private key of a self-signed X.509 certificate or the private key of an X.509 certificate generated by SAP SuccessFactors. The private key is a base64-encoded string enclosed between -----BEGIN ENCRYPTED PRIVATE KEY----- and ----- END ENCRYPTED PRIVATE KEY-----. Enter only the enclosed string without the beginning and ending lines to avoid an error.",
70 "type": "string",
71 "name": "private_key"
72 },
73 {
74 "label": "Environment",
75 "optional": false,
76 "hint": "Select your corresponding SuccessFactors environment. Refer to the following knowledge base to find the mapping between your API endpoint and SuccessFactors environment: https://help.sap.com/docs/SAP_SUCCESSFACTORS_PLATFORM/d599f15995d348a1b45ba5603e2aba9b/af2b8d5437494b12be88fe374eba75b6.html",
77 "type": "string",
78 "name": "environment",
79 "pick_list": [
80 [
81 "DC2 (DC57) Production",
82 "https://api2.successfactors.eu"
83 ],
84 [
85 "DC2 (DC57) SalesDemo",
86 "https://apisalesdemo2.successfactors.eu"
87 ],
88 [
89 "DC2 (DC57) Preview",
90 "https://api2preview.sapsf.eu"
91 ],
92 [
93 "DC4 (DC68) Production",
94 "https://api4.successfactors.com"
95 ],
96 [
97 "DC4 (DC68) SalesDemo",
98 "https://api68sales.successfactors.com"
99 ],
100 [
101 "DC4 (DC68) Preview",
102 "https://api4preview.sapsf.com"
103 ],
104 [
105 "DC8 (DC70) Production",
106 "https://api8.successfactors.com"
107 ],
108 [
109 "DC8 (DC70) SalesDemo",
110 "https://apisalesdemo8.successfactors.com"
111 ],
112 [
113 "DC8 (DC70) Preview",
114 "https://api8preview.sapsf.com"
115 ],
116 [
117 "DC10 (DC66) Production",
118 "https://api10.successfactors.com"
119 ],
120 [
121 "DC10 (DC66) Preview",
122 "https://api10preview.sapsf.com"
123 ],
124 [
125 "DC12 (DC33) Production",
126 "https://api012.successfactors.eu"
127 ],
128 [
129 "DC12 Rot",
130 "https://apirot.successfactors.eu"
131 ],
132 [
133 "DC12 (DC33) Preview",
134 "https://api12preview.sapsf.eu"
135 ],
136 [
137 "DC15 (DC30) Production",
138 "https://api15.sapsf.cn"
139 ],
140 [
141 "DC15 (DC30) Preview",
142 "https://api15preview.sapsf.cn"
143 ],
144 [
145 "DC16 Production",
146 "https://api16.sapsf.eu"
147 ],
148 [
149 "DC17 (DC60) Preview",
150 "https://api17preview.sapsf.com"
151 ],
152 [
153 "DC17 (DC60) Production",
154 "https://api17.sapsf.com"
155 ],
156 [
157 "DC18 Preview",
158 "https://api18preview.sapsf.com"
159 ],
160 [
161 "DC18 Production",
162 "https://api18.sapsf.com"
163 ],
164 [
165 "DC19 (DC62) Preview",
166 "https://api19preview.sapsf.com"
167 ],
168 [
169 "DC19 (DC62) Production",
170 "https://api19.sapsf.com"
171 ],
172 [
173 "DC22 Preview",
174 "https://api22preview.sapsf.com"
175 ],
176 [
177 "DC22 Production",
178 "https://api22.sapsf.com"
179 ],
180 [
181 "DC23 Preview",
182 "https://api23preview.sapsf.com"
183 ],
184 [
185 "DC23 Production",
186 "https://api23.sapsf.com"
187 ],
188 [
189 "DC40 SalesDemo",
190 "https://api40sales.sapsf.com"
191 ],
192 [
193 "DC41 Preview",
194 "https://api41preview.sapsf.com"
195 ],
196 [
197 "DC41 Production",
198 "https://api41.sapsf.com"
199 ],
200 [
201 "DC42 Preview",
202 "https://api42preview.sapsf.com"
203 ],
204 [
205 "DC42 Production",
206 "https://api42.sapsf.com"
207 ],
208 [
209 "DC44 (DC52) Preview",
210 "https://api44preview.sapsf.com"
211 ],
212 [
213 "DC44 (DC52) Production",
214 "https://api44.sapsf.com"
215 ],
216 [
217 "DC47 Preview",
218 "https://api47preview.sapsf.com"
219 ],
220 [
221 "DC47 Production",
222 "https://api47.sapsf.com"
223 ],
224 [
225 "DC50 Preview",
226 "https://api50preview.sapsf.com"
227 ],
228 [
229 "DC50 Production",
230 "https://api50.sapsf.com"
231 ],
232 [
233 "DC55 Preview",
234 "https://api55preview.sapsf.eu"
235 ],
236 [
237 "DC55 Production",
238 "https://api55.sapsf.eu"
239 ],
240 [
241 "DC74 Preview",
242 "https://api74preview.sapsf.eu"
243 ],
244 [
245 "DC74 Production",
246 "https://api74.sapsf.eu"
247 ]
248 ]
249 },
250 {
251 "label": "Application interface key",
252 "optional": true,
253 "hint": "When left blank, defaults to Workato's application interface key.",
254 "type": "string",
255 "name": "application_interface_key"
256 },
257 {
258 "label": "API server Timezone",
259 "optional": true,
260 "hint": "Select the API server standard UTC time zone. For example, -0500 for DC8 Production environment. Refer to the SAP documentaion for more information about tenant and server time zones: https://help.sap.com/docs/SAP_SUCCESSFACTORS_RELEASE_INFORMATION/8e0d540f96474717bbf18df51e54e522/d5e86fa8bb564058820592217d3a21d4.html",
261 "type": "string",
262 "name": "timezone",
263 "pick_list": [
264 [
265 "UTC",
266 "UTC"
267 ],
268 [
269 "UTC +1",
270 "+0100"
271 ],
272 [
273 "UTC +8",
274 "+0800"
275 ],
276 [
277 "UTC +10",
278 "+1000"
279 ],
280 [
281 "UTC -5",
282 "-0500"
283 ]
284 ]
285 }
286 ]
287}

SurveyMonkey

Provider value:

1"provider": "surveymonkey"

Connection parameter configuration is not required for this connector.


Tango Card

Provider value:

1"provider": "tango_card"

TaskRay

Provider value:

1"provider": "taskray"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "sandbox",
8 "type": "boolean",
9 "optional": true,
10 "label": "Sandbox",
11 "hint": "Is this connecting to a sandbox account?",
12 "default": "false"
13 }
14 ]
15 }

TrackVia

Provider value:

1"provider": "trackvia"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "custom_domain",
8 "type": "string",
9 "optional": "true",
10 "label": "TrackVia subdomain",
11 "hint": "Enter your TrackVia subdomain. For example, customdomain.trackvia.com. By default, <b>go.trackvia.com</b> will be used."
12 }
13 ]
14 }

Tradeshift

Provider value:

1"provider": "tradeshift"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "sandbox",
8 "type": "boolean",
9 "optional": true,
10 "label": "Sandbox",
11 "hint": " If <b>yes</b>, click <a href=\"https://sandbox.tradeshift.com/#/apps/Tradeshift.AppStore/apps/Workato.tradeshiftAdapterProduction\" target=\"_blank\">here</a> to activate your sandbox account else click <a href=\"https://go.tradeshift.com/#/apps/Tradeshift.AppStore/apps/Workato.tradeshiftAdapterProduction\" target=\"_blank\">here</a> to activate your production account.\n",
12 "default": "false"
13 }
14 ]
15 }

Trello

Provider value:

1"provider": "trello"

Connection parameter configuration is not required for this connector.


TSheets

Provider value:

1"provider": "tsheets"

Connection parameter configuration is not required for this connector.


Twilio

Provider value:

1"provider": "twilio"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "sid",
8 "type": "string",
9 "label": "Account SID",
10 "hint": "See your Twilio <a href=\"https://www.twilio.com/user/account\">account page</a>"
11 },
12 {
13 "name": "token",
14 "type": "string",
15 "label": "Auth token",
16 "hint": "See your Twilio <a href=\"https://www.twilio.com/user/account\">account page</a>"
17 }
18 ]
19 }

Twitter

Provider value:

1"provider": "twitter"

Connection parameter configuration is not required for this connector.


Twitter Ads

Provider value:

1"provider": "twitter_ads"

Connection parameter configuration is not required for this connector.


Unbounce

Provider value:

1"provider": "unbounce"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "api_key",
8 "type": "string",
9 "optional": false,
10 "label": "Api key",
11 "hint": "Profile (top right) > Manage Account > API Access"
12 }
13 ]
14 }

Utilities

Provider value:

1"provider": "utility"

Variables by Workato

Provider value:

1"provider": "workato_variable"

Veeva CRM

Provider value:

1"provider": "veeva"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "sandbox",
8 "type": "boolean",
9 "optional": true,
10 "label": "Sandbox",
11 "hint": "Is this connecting to a sandbox account?",
12 "default": "false"
13 }
14 ]
15 }

Vend

Provider value:

1"provider": "vend"

Connection parameter configuration is not required for this connector.


Vlocity

Provider value:

1"provider": "vlocity"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "sandbox",
8 "type": "boolean",
9 "optional": true,
10 "label": "Sandbox",
11 "hint": "Is this connecting to a sandbox account?",
12 "default": "false"
13 }
14 ]
15 }

Watson Tone Analyzer

Provider value:

1"provider": "watson_tone_analyzer"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "username",
8 "type": "string",
9 "optional": false,
10 "label": "Username",
11 "hint": "Require Cloud Foundry service credentials. <a href=\"https://cloud.ibm.com/docs/services/watson?topic=watson-creating-credentials#creating-credentials\" target=\"_blank\">Learn more</a>"
12 },
13 {
14 "name": "password",
15 "type": "string",
16 "optional": false,
17 "label": "Password",
18 "hint": "Require Cloud Foundry service credentials. <a href=\"https://cloud.ibm.com/docs/services/watson?topic=watson-creating-credentials#creating-credentials\" target=\"_blank\">Learn more</a>"
19 }
20 ]
21 }

Webhooks

Provider value:

1"provider": "workato_webhooks"

WebMerge

Provider value:

1"provider": "webmerge"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "api_key",
8 "type": "string",
9 "optional": false,
10 "label": "API key",
11 "hint": "Select your profile icon->Api Access to get the API key"
12 },
13 {
14 "name": "api_secret",
15 "type": "string",
16 "optional": false,
17 "label": "API secret",
18 "hint": "Select your profile icon->Api Access to get the API secret"
19 }
20 ]
21 }

WooCommerce

Provider value:

1"provider": "woocommerce"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "consumer_key",
8 "type": "string",
9 "label": "Consumer key",
10 "hint": "Consumer key is found at API tab of WooCommerce settings"
11 },
12 {
13 "name": "consumer_secret",
14 "type": "string",
15 "label": "Consumer secret",
16 "hint": "Consumer secret is found at API tab of WooCommerce settings"
17 },
18 {
19 "name": "host",
20 "type": "string",
21 "label": "Host",
22 "hint": "If your WooCommerce home page url is https://app.Woocommerce.com, then use app.Woocommerce.com"
23 },
24 {
25 "name": "order_ids",
26 "type": "string",
27 "optional": true,
28 "label": "Example order IDs",
29 "hint": "Comma separated order IDs to sample custom fields. Takes up to 3 values"
30 }
31 ]
32 }

WordPress.com

Provider value:

1"provider": "word_press"

Connection parameter configuration is not required for this connector.


Workato Track

Provider value:

1"provider": "workato_track"

Workbot for Microsoft Teams

Provider value:

1"provider": "teams_bot"

Connection parameter configuration is not required for this connector.


Workbot for Microsoft Teams Old

Provider value:

1"provider": "skype_bot"

Connection parameter configuration is not required for this connector.


Workbot for Slack

Provider value:

1"provider": "slack_bot"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "nlu_provider_shared_account_id",
8 "type": "string",
9 "optional": true,
10 "label": "NLU provider",
11 "hint": "Choose a connection for your conversational interface. Supports Google's DialogFlow and Amazon Lex."
12 },
13 {
14 "name": "advanced",
15 "type": "object",
16 "optional": true,
17 "label": "Advanced",
18 "hint": "Additional fields that are not needed for most users",
19 "properties":
20 [
21 {
22 "name": "extra_tokens",
23 "type": "string",
24 "optional": true,
25 "label": "Slash commands verification tokens",
26 "hint": "Used for invoking Custom Integration slash commands. Each slash command has a token. Separate tokens with commas to support multiple slash commands. <a href=\"https://docs.workato.com/en/workbot/legacy-slash-commands.html#configuring-the-workbot-connection\" target=\"_blank\">Learn more.</a>"
27 },
28 {
29 "name": "custom_help",
30 "type": "string",
31 "optional": true,
32 "label": "Custom help",
33 "hint": "Provide simple text help OR rich help using a JSON document corresponding to Slack message.You can build a rich help message using the <a href=\"https://api.slack.com/docs/messages/builder\" target=\"_blank\">Slack message builder.</a>"
34 }
35 ]
36 }
37 ]
38 }

Workbot for Workplace

Provider value:

1"provider": "workplace_bot"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "custom_access_token",
8 "type": "string",
9 "optional": true,
10 "label": "Custom Access Token"
11 }
12 ]
13 }

Workday

Provider value:

1"provider": "workday"
1{
2 "oauth": true,
3 "personalization": false,
4 "oauth_token_pair": {
5 "label": "OAuth Token Pair",
6 "optional": true,
7 "type": "object",
8 "hint": "Allows you to create authorization code grant connections. You can create a shell connection in cases where you don't have an access token and refresh token.",
9 "properties": [
10 {
11 "label": "Access Token",
12 "name": "access_token",
13 "type": "string",
14 "optional": false
15 },
16 {
17 "label": "Refresh Token",
18 "name": "refresh_token",
19 "type": "string",
20 "optional": false
21 }
22 ]
23 },
24 "input": [
25 {
26 "label": "Authentication type",
27 "optional": false,
28 "default": "oauth2_auth_code_grant",
29 "hint": "Select the authentication type. OAuth2.0 is required to work with custom objects and WQL.",
30 "type": "string",
31 "name": "authentication_type",
32 "pick_list": [
33 [
34 "OAuth 2.0",
35 "oauth2_auth_code_grant"
36 ],
37 [
38 "Basic",
39 "basic"
40 ],
41 [
42 "Hybrid (Deprecated)",
43 "hybrid"
44 ]
45 ]
46 },
47 {
48 "label": "Tenant ID",
49 "hint": "You can find your Tenant ID in the Workday URL while you are logged in. For example the tenant ID is sample_company in the following URL: https://impl.workday.com/sample_company/d/home.html",
50 "type": "string",
51 "name": "tenant_id"
52 },
53 {
54 "label": "WSDL URL",
55 "hint": "Requires a wsdl url. Refer to Workday for more information: https://community.workday.com/articles/6120#endpoint",
56 "default": "https://wd2-impl-services1.workday.com/ccx/service/",
57 "type": "string",
58 "name": "base_uri"
59 },
60 {
61 "label": "Login name",
62 "type": "string",
63 "name": "login"
64 },
65 {
66 "label": "Password",
67 "type": "string",
68 "name": "password"
69 },
70 {
71 "label": "Client ID",
72 "hint": "Found in API Client settings",
73 "optional": false,
74 "type": "string",
75 "name": "client_id"
76 },
77 {
78 "label": "Client secret",
79 "hint": "Found in API Client settings",
80 "optional": false,
81 "type": "string",
82 "name": "client_secret"
83 },
84 {
85 "label": "Refresh token",
86 "hint": "Enter a refresh token to use an API client for Integrations.",
87 "optional": true,
88 "type": "string",
89 "name": "refresh_token"
90 },
91 {
92 "label": "Authorization endpoint",
93 "hint": "You can find the authorization endpoint in the Workday API Client settings.",
94 "optional": false,
95 "type": "string",
96 "name": "authorization_endpoint"
97 },
98 {
99 "label": "Token endpoint",
100 "hint": "You can find the token endpoint in the Workday API Client settings.",
101 "optional": false,
102 "type": "string",
103 "name": "token_endpoint"
104 },
105 {
106 "label": "Workday tenant timezone",
107 "optional": true,
108 "hint": "Enter your Workday tenant timezone. You can find the tenant timezone in your Workday tenant settings. Workday returns data effective from the current day in PST time by default. This may differ from your Workday tenant's timezone. Selecting a timezone makes data retrieved consistent with your Workday tenant.",
109 "type": "string",
110 "name": "time_zone",
111 "pick_list": [
112 [
113 "American Samoa",
114 "American Samoa"
115 ],
116 [
117 "International Date Line West",
118 "International Date Line West"
119 ],
120 [
121 "Midway Island",
122 "Midway Island"
123 ],
124 [
125 "Hawaii",
126 "Hawaii"
127 ],
128 [
129 "Alaska",
130 "Alaska"
131 ],
132 [
133 "Pacific Time (US & Canada)",
134 "Pacific Time (US & Canada)"
135 ],
136 [
137 "Tijuana",
138 "Tijuana"
139 ],
140 [
141 "Arizona",
142 "Arizona"
143 ],
144 [
145 "Chihuahua",
146 "Chihuahua"
147 ],
148 [
149 "Mazatlan",
150 "Mazatlan"
151 ],
152 [
153 "Mountain Time (US & Canada)",
154 "Mountain Time (US & Canada)"
155 ],
156 [
157 "Central America",
158 "Central America"
159 ],
160 [
161 "Central Time (US & Canada)",
162 "Central Time (US & Canada)"
163 ],
164 [
165 "Guadalajara",
166 "Guadalajara"
167 ],
168 [
169 "Mexico City",
170 "Mexico City"
171 ],
172 [
173 "Monterrey",
174 "Monterrey"
175 ],
176 [
177 "Saskatchewan",
178 "Saskatchewan"
179 ],
180 [
181 "Bogota",
182 "Bogota"
183 ],
184 [
185 "Eastern Time (US & Canada)",
186 "Eastern Time (US & Canada)"
187 ],
188 [
189 "Indiana (East)",
190 "Indiana (East)"
191 ],
192 [
193 "Lima",
194 "Lima"
195 ],
196 [
197 "Quito",
198 "Quito"
199 ],
200 [
201 "Atlantic Time (Canada)",
202 "Atlantic Time (Canada)"
203 ],
204 [
205 "Caracas",
206 "Caracas"
207 ],
208 [
209 "Georgetown",
210 "Georgetown"
211 ],
212 [
213 "La Paz",
214 "La Paz"
215 ],
216 [
217 "Santiago",
218 "Santiago"
219 ],
220 [
221 "Newfoundland",
222 "Newfoundland"
223 ],
224 [
225 "Brasilia",
226 "Brasilia"
227 ],
228 [
229 "Buenos Aires",
230 "Buenos Aires"
231 ],
232 [
233 "Greenland",
234 "Greenland"
235 ],
236 [
237 "Montevideo",
238 "Montevideo"
239 ],
240 [
241 "Mid-Atlantic",
242 "Mid-Atlantic"
243 ],
244 [
245 "Azores",
246 "Azores"
247 ],
248 [
249 "Cape Verde Is.",
250 "Cape Verde Is."
251 ],
252 [
253 "Casablanca",
254 "Casablanca"
255 ],
256 [
257 "Dublin",
258 "Dublin"
259 ],
260 [
261 "Edinburgh",
262 "Edinburgh"
263 ],
264 [
265 "Lisbon",
266 "Lisbon"
267 ],
268 [
269 "London",
270 "London"
271 ],
272 [
273 "Monrovia",
274 "Monrovia"
275 ],
276 [
277 "UTC",
278 "UTC"
279 ],
280 [
281 "Amsterdam",
282 "Amsterdam"
283 ],
284 [
285 "Belgrade",
286 "Belgrade"
287 ],
288 [
289 "Berlin",
290 "Berlin"
291 ],
292 [
293 "Bern",
294 "Bern"
295 ],
296 [
297 "Bratislava",
298 "Bratislava"
299 ],
300 [
301 "Brussels",
302 "Brussels"
303 ],
304 [
305 "Budapest",
306 "Budapest"
307 ],
308 [
309 "Copenhagen",
310 "Copenhagen"
311 ],
312 [
313 "Ljubljana",
314 "Ljubljana"
315 ],
316 [
317 "Madrid",
318 "Madrid"
319 ],
320 [
321 "Paris",
322 "Paris"
323 ],
324 [
325 "Prague",
326 "Prague"
327 ],
328 [
329 "Rome",
330 "Rome"
331 ],
332 [
333 "Sarajevo",
334 "Sarajevo"
335 ],
336 [
337 "Skopje",
338 "Skopje"
339 ],
340 [
341 "Stockholm",
342 "Stockholm"
343 ],
344 [
345 "Vienna",
346 "Vienna"
347 ],
348 [
349 "Warsaw",
350 "Warsaw"
351 ],
352 [
353 "West Central Africa",
354 "West Central Africa"
355 ],
356 [
357 "Zagreb",
358 "Zagreb"
359 ],
360 [
361 "Athens",
362 "Athens"
363 ],
364 [
365 "Bucharest",
366 "Bucharest"
367 ],
368 [
369 "Cairo",
370 "Cairo"
371 ],
372 [
373 "Harare",
374 "Harare"
375 ],
376 [
377 "Helsinki",
378 "Helsinki"
379 ],
380 [
381 "Jerusalem",
382 "Jerusalem"
383 ],
384 [
385 "Kaliningrad",
386 "Kaliningrad"
387 ],
388 [
389 "Kyiv",
390 "Kyiv"
391 ],
392 [
393 "Pretoria",
394 "Pretoria"
395 ],
396 [
397 "Riga",
398 "Riga"
399 ],
400 [
401 "Sofia",
402 "Sofia"
403 ],
404 [
405 "Tallinn",
406 "Tallinn"
407 ],
408 [
409 "Vilnius",
410 "Vilnius"
411 ],
412 [
413 "Baghdad",
414 "Baghdad"
415 ],
416 [
417 "Istanbul",
418 "Istanbul"
419 ],
420 [
421 "Kuwait",
422 "Kuwait"
423 ],
424 [
425 "Minsk",
426 "Minsk"
427 ],
428 [
429 "Moscow",
430 "Moscow"
431 ],
432 [
433 "Nairobi",
434 "Nairobi"
435 ],
436 [
437 "Riyadh",
438 "Riyadh"
439 ],
440 [
441 "St. Petersburg",
442 "St. Petersburg"
443 ],
444 [
445 "Tehran",
446 "Tehran"
447 ],
448 [
449 "Abu Dhabi",
450 "Abu Dhabi"
451 ],
452 [
453 "Baku",
454 "Baku"
455 ],
456 [
457 "Muscat",
458 "Muscat"
459 ],
460 [
461 "Samara",
462 "Samara"
463 ],
464 [
465 "Tbilisi",
466 "Tbilisi"
467 ],
468 [
469 "Volgograd",
470 "Volgograd"
471 ],
472 [
473 "Yerevan",
474 "Yerevan"
475 ],
476 [
477 "Kabul",
478 "Kabul"
479 ],
480 [
481 "Ekaterinburg",
482 "Ekaterinburg"
483 ],
484 [
485 "Islamabad",
486 "Islamabad"
487 ],
488 [
489 "Karachi",
490 "Karachi"
491 ],
492 [
493 "Tashkent",
494 "Tashkent"
495 ],
496 [
497 "Chennai",
498 "Chennai"
499 ],
500 [
501 "Kolkata",
502 "Kolkata"
503 ],
504 [
505 "Mumbai",
506 "Mumbai"
507 ],
508 [
509 "New Delhi",
510 "New Delhi"
511 ],
512 [
513 "Sri Jayawardenepura",
514 "Sri Jayawardenepura"
515 ],
516 [
517 "Kathmandu",
518 "Kathmandu"
519 ],
520 [
521 "Almaty",
522 "Almaty"
523 ],
524 [
525 "Astana",
526 "Astana"
527 ],
528 [
529 "Dhaka",
530 "Dhaka"
531 ],
532 [
533 "Urumqi",
534 "Urumqi"
535 ],
536 [
537 "Rangoon",
538 "Rangoon"
539 ],
540 [
541 "Bangkok",
542 "Bangkok"
543 ],
544 [
545 "Hanoi",
546 "Hanoi"
547 ],
548 [
549 "Jakarta",
550 "Jakarta"
551 ],
552 [
553 "Krasnoyarsk",
554 "Krasnoyarsk"
555 ],
556 [
557 "Novosibirsk",
558 "Novosibirsk"
559 ],
560 [
561 "Beijing",
562 "Beijing"
563 ],
564 [
565 "Chongqing",
566 "Chongqing"
567 ],
568 [
569 "Hong Kong",
570 "Hong Kong"
571 ],
572 [
573 "Irkutsk",
574 "Irkutsk"
575 ],
576 [
577 "Kuala Lumpur",
578 "Kuala Lumpur"
579 ],
580 [
581 "Perth",
582 "Perth"
583 ],
584 [
585 "Singapore",
586 "Singapore"
587 ],
588 [
589 "Taipei",
590 "Taipei"
591 ],
592 [
593 "Ulaanbaatar",
594 "Ulaanbaatar"
595 ],
596 [
597 "Osaka",
598 "Osaka"
599 ],
600 [
601 "Sapporo",
602 "Sapporo"
603 ],
604 [
605 "Seoul",
606 "Seoul"
607 ],
608 [
609 "Tokyo",
610 "Tokyo"
611 ],
612 [
613 "Yakutsk",
614 "Yakutsk"
615 ],
616 [
617 "Adelaide",
618 "Adelaide"
619 ],
620 [
621 "Darwin",
622 "Darwin"
623 ],
624 [
625 "Brisbane",
626 "Brisbane"
627 ],
628 [
629 "Canberra",
630 "Canberra"
631 ],
632 [
633 "Guam",
634 "Guam"
635 ],
636 [
637 "Hobart",
638 "Hobart"
639 ],
640 [
641 "Melbourne",
642 "Melbourne"
643 ],
644 [
645 "Port Moresby",
646 "Port Moresby"
647 ],
648 [
649 "Sydney",
650 "Sydney"
651 ],
652 [
653 "Vladivostok",
654 "Vladivostok"
655 ],
656 [
657 "Magadan",
658 "Magadan"
659 ],
660 [
661 "New Caledonia",
662 "New Caledonia"
663 ],
664 [
665 "Solomon Is.",
666 "Solomon Is."
667 ],
668 [
669 "Srednekolymsk",
670 "Srednekolymsk"
671 ],
672 [
673 "Auckland",
674 "Auckland"
675 ],
676 [
677 "Fiji",
678 "Fiji"
679 ],
680 [
681 "Kamchatka",
682 "Kamchatka"
683 ],
684 [
685 "Marshall Is.",
686 "Marshall Is."
687 ],
688 [
689 "Wellington",
690 "Wellington"
691 ],
692 [
693 "Chatham Is.",
694 "Chatham Is."
695 ],
696 [
697 "Nuku'alofa",
698 "Nuku'alofa"
699 ],
700 [
701 "Samoa",
702 "Samoa"
703 ],
704 [
705 "Tokelau Is.",
706 "Tokelau Is."
707 ]
708 ]
709 },
710 {
711 "label": "Advanced settings",
712 "optional": true,
713 "type": "object",
714 "name": "advanced_settings",
715 "properties": [
716 {
717 "label": "Advanced XML payload for multiple ID values",
718 "default": "false",
719 "optional": true,
720 "hint": "Fields with multiple values are each wrapped within a container by default. Setting the value to 'yes' unwraps the values. Refer to the Workday connector documentation for more information: https://docs.workato.com/connectors/workday.html#workday-connector",
721 "type": "boolean",
722 "name": "unwrap_arrays"
723 }
724 ]
725 }
726 ]
727}

Workday REST

Provider value:

1"provider": "workday_rest"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "rest_api_endpoint",
8 "type": "string",
9 "label": "REST API endpoint",
10 "hint": " Found in the API client details page. Learn how to register an API client\n <a href=\"https://docs.workato.com/en/connectors/workday/connection_setup.html#register-api-client\" target=\"_blank\">here</a>.\n",
11 "default": "https://wd2-impl-services1.workday.com/ccx/service/acme"
12 },
13 {
14 "name": "authorization_endpoint",
15 "type": "string",
16 "label": "Authorization endpoint",
17 "hint": "Found in the API client details page."
18 },
19 {
20 "name": "token_endpoint",
21 "type": "string",
22 "label": "Token endpoint",
23 "hint": "Found in the API client details page."
24 },
25 {
26 "name": "client_id",
27 "type": "string",
28 "label": "Client ID",
29 "hint": "Found in the API client details page."
30 },
31 {
32 "name": "client_secret",
33 "type": "string",
34 "label": "Client secret",
35 "hint": "Found in the API client details page."
36 },
37 {
38 "name": "refresh_token",
39 "type": "string",
40 "optional": true,
41 "label": "Refresh token",
42 "hint": " Provide a refresh token if this connection needs to be authorized by an integration user instead of a user account.\n Authorization step will be skipped.\n"
43 }
44 ]
45 }

Workday Web Services

Provider value:

1"provider": "workday_oauth"

Workfront

Provider value:

1"provider": "workfront"
1{
2 "oauth": true,
3 "personalization": true,
4 "oauth_token_pair": {
5 "label": "OAuth Token Pair",
6 "optional": true,
7 "type": "object",
8 "hint": "Allows you to create authorization code grant connections. You can create a shell connection in cases where you don't have an access token and refresh token.",
9 "properties": [
10 {
11 "label": "Access Token",
12 "name": "access_token",
13 "type": "string",
14 "optional": false
15 },
16 {
17 "label": "Refresh Token",
18 "name": "refresh_token",
19 "type": "string",
20 "optional": false
21 }
22 ]
23 },
24 "input": [
25 {
26 "label": "Authentication type",
27 "hint": "Select authentication type",
28 "optional": false,
29 "default": "api_key",
30 "type": "string",
31 "name": "authentication_type",
32 "pick_list": [
33 [
34 "OAuth 2.0",
35 "oauth2_auth_code_grant"
36 ],
37 [
38 "API key",
39 "api_key"
40 ]
41 ]
42 },
43 {
44 "label": "API key",
45 "optional": false,
46 "hint": "Your Workfront API key",
47 "type": "string",
48 "name": "api_key"
49 },
50 {
51 "label": "Client ID",
52 "optional": false,
53 "hint": "Go to 'Setup > System > OAuth2 Applications > Client ID' to create a client ID and secret.",
54 "type": "string",
55 "name": "client_id"
56 },
57 {
58 "label": "Client secret",
59 "optional": false,
60 "hint": "Go to 'Setup > System > OAuth2 Applications > Client secret' to create a client ID and secret.",
61 "type": "string",
62 "name": "client_secret"
63 },
64 {
65 "label": "Subdomain",
66 "optional": false,
67 "hint": "Enter your Workfront subdomain name as found in your Workfront URL.",
68 "type": "string",
69 "name": "subdomain"
70 },
71 {
72 "label": "API version",
73 "default": "14.0",
74 "hint": "Enter the API version to use in your connection. The default version is 14.0",
75 "optional": true,
76 "type": "string",
77 "name": "api_version"
78 },
79 {
80 "label": "Account timezone",
81 "optional": true,
82 "hint": "Enter an account timezone for consistency with Workfront. All date and time fields are converted to this timezone.",
83 "type": "string",
84 "name": "timezone",
85 "pick_list": [
86 [
87 "American Samoa",
88 "American Samoa"
89 ],
90 [
91 "International Date Line West",
92 "International Date Line West"
93 ],
94 [
95 "Midway Island",
96 "Midway Island"
97 ],
98 [
99 "Hawaii",
100 "Hawaii"
101 ],
102 [
103 "Alaska",
104 "Alaska"
105 ],
106 [
107 "Pacific Time (US & Canada)",
108 "Pacific Time (US & Canada)"
109 ],
110 [
111 "Tijuana",
112 "Tijuana"
113 ],
114 [
115 "Arizona",
116 "Arizona"
117 ],
118 [
119 "Chihuahua",
120 "Chihuahua"
121 ],
122 [
123 "Mazatlan",
124 "Mazatlan"
125 ],
126 [
127 "Mountain Time (US & Canada)",
128 "Mountain Time (US & Canada)"
129 ],
130 [
131 "Central America",
132 "Central America"
133 ],
134 [
135 "Central Time (US & Canada)",
136 "Central Time (US & Canada)"
137 ],
138 [
139 "Guadalajara",
140 "Guadalajara"
141 ],
142 [
143 "Mexico City",
144 "Mexico City"
145 ],
146 [
147 "Monterrey",
148 "Monterrey"
149 ],
150 [
151 "Saskatchewan",
152 "Saskatchewan"
153 ],
154 [
155 "Bogota",
156 "Bogota"
157 ],
158 [
159 "Eastern Time (US & Canada)",
160 "Eastern Time (US & Canada)"
161 ],
162 [
163 "Indiana (East)",
164 "Indiana (East)"
165 ],
166 [
167 "Lima",
168 "Lima"
169 ],
170 [
171 "Quito",
172 "Quito"
173 ],
174 [
175 "Atlantic Time (Canada)",
176 "Atlantic Time (Canada)"
177 ],
178 [
179 "Caracas",
180 "Caracas"
181 ],
182 [
183 "Georgetown",
184 "Georgetown"
185 ],
186 [
187 "La Paz",
188 "La Paz"
189 ],
190 [
191 "Santiago",
192 "Santiago"
193 ],
194 [
195 "Newfoundland",
196 "Newfoundland"
197 ],
198 [
199 "Brasilia",
200 "Brasilia"
201 ],
202 [
203 "Buenos Aires",
204 "Buenos Aires"
205 ],
206 [
207 "Greenland",
208 "Greenland"
209 ],
210 [
211 "Montevideo",
212 "Montevideo"
213 ],
214 [
215 "Mid-Atlantic",
216 "Mid-Atlantic"
217 ],
218 [
219 "Azores",
220 "Azores"
221 ],
222 [
223 "Cape Verde Is.",
224 "Cape Verde Is."
225 ],
226 [
227 "Casablanca",
228 "Casablanca"
229 ],
230 [
231 "Dublin",
232 "Dublin"
233 ],
234 [
235 "Edinburgh",
236 "Edinburgh"
237 ],
238 [
239 "Lisbon",
240 "Lisbon"
241 ],
242 [
243 "London",
244 "London"
245 ],
246 [
247 "Monrovia",
248 "Monrovia"
249 ],
250 [
251 "UTC",
252 "UTC"
253 ],
254 [
255 "Amsterdam",
256 "Amsterdam"
257 ],
258 [
259 "Belgrade",
260 "Belgrade"
261 ],
262 [
263 "Berlin",
264 "Berlin"
265 ],
266 [
267 "Bern",
268 "Bern"
269 ],
270 [
271 "Bratislava",
272 "Bratislava"
273 ],
274 [
275 "Brussels",
276 "Brussels"
277 ],
278 [
279 "Budapest",
280 "Budapest"
281 ],
282 [
283 "Copenhagen",
284 "Copenhagen"
285 ],
286 [
287 "Ljubljana",
288 "Ljubljana"
289 ],
290 [
291 "Madrid",
292 "Madrid"
293 ],
294 [
295 "Paris",
296 "Paris"
297 ],
298 [
299 "Prague",
300 "Prague"
301 ],
302 [
303 "Rome",
304 "Rome"
305 ],
306 [
307 "Sarajevo",
308 "Sarajevo"
309 ],
310 [
311 "Skopje",
312 "Skopje"
313 ],
314 [
315 "Stockholm",
316 "Stockholm"
317 ],
318 [
319 "Vienna",
320 "Vienna"
321 ],
322 [
323 "Warsaw",
324 "Warsaw"
325 ],
326 [
327 "West Central Africa",
328 "West Central Africa"
329 ],
330 [
331 "Zagreb",
332 "Zagreb"
333 ],
334 [
335 "Athens",
336 "Athens"
337 ],
338 [
339 "Bucharest",
340 "Bucharest"
341 ],
342 [
343 "Cairo",
344 "Cairo"
345 ],
346 [
347 "Harare",
348 "Harare"
349 ],
350 [
351 "Helsinki",
352 "Helsinki"
353 ],
354 [
355 "Jerusalem",
356 "Jerusalem"
357 ],
358 [
359 "Kaliningrad",
360 "Kaliningrad"
361 ],
362 [
363 "Kyiv",
364 "Kyiv"
365 ],
366 [
367 "Pretoria",
368 "Pretoria"
369 ],
370 [
371 "Riga",
372 "Riga"
373 ],
374 [
375 "Sofia",
376 "Sofia"
377 ],
378 [
379 "Tallinn",
380 "Tallinn"
381 ],
382 [
383 "Vilnius",
384 "Vilnius"
385 ],
386 [
387 "Baghdad",
388 "Baghdad"
389 ],
390 [
391 "Istanbul",
392 "Istanbul"
393 ],
394 [
395 "Kuwait",
396 "Kuwait"
397 ],
398 [
399 "Minsk",
400 "Minsk"
401 ],
402 [
403 "Moscow",
404 "Moscow"
405 ],
406 [
407 "Nairobi",
408 "Nairobi"
409 ],
410 [
411 "Riyadh",
412 "Riyadh"
413 ],
414 [
415 "St. Petersburg",
416 "St. Petersburg"
417 ],
418 [
419 "Tehran",
420 "Tehran"
421 ],
422 [
423 "Abu Dhabi",
424 "Abu Dhabi"
425 ],
426 [
427 "Baku",
428 "Baku"
429 ],
430 [
431 "Muscat",
432 "Muscat"
433 ],
434 [
435 "Samara",
436 "Samara"
437 ],
438 [
439 "Tbilisi",
440 "Tbilisi"
441 ],
442 [
443 "Volgograd",
444 "Volgograd"
445 ],
446 [
447 "Yerevan",
448 "Yerevan"
449 ],
450 [
451 "Kabul",
452 "Kabul"
453 ],
454 [
455 "Ekaterinburg",
456 "Ekaterinburg"
457 ],
458 [
459 "Islamabad",
460 "Islamabad"
461 ],
462 [
463 "Karachi",
464 "Karachi"
465 ],
466 [
467 "Tashkent",
468 "Tashkent"
469 ],
470 [
471 "Chennai",
472 "Chennai"
473 ],
474 [
475 "Kolkata",
476 "Kolkata"
477 ],
478 [
479 "Mumbai",
480 "Mumbai"
481 ],
482 [
483 "New Delhi",
484 "New Delhi"
485 ],
486 [
487 "Sri Jayawardenepura",
488 "Sri Jayawardenepura"
489 ],
490 [
491 "Kathmandu",
492 "Kathmandu"
493 ],
494 [
495 "Almaty",
496 "Almaty"
497 ],
498 [
499 "Astana",
500 "Astana"
501 ],
502 [
503 "Dhaka",
504 "Dhaka"
505 ],
506 [
507 "Urumqi",
508 "Urumqi"
509 ],
510 [
511 "Rangoon",
512 "Rangoon"
513 ],
514 [
515 "Bangkok",
516 "Bangkok"
517 ],
518 [
519 "Hanoi",
520 "Hanoi"
521 ],
522 [
523 "Jakarta",
524 "Jakarta"
525 ],
526 [
527 "Krasnoyarsk",
528 "Krasnoyarsk"
529 ],
530 [
531 "Novosibirsk",
532 "Novosibirsk"
533 ],
534 [
535 "Beijing",
536 "Beijing"
537 ],
538 [
539 "Chongqing",
540 "Chongqing"
541 ],
542 [
543 "Hong Kong",
544 "Hong Kong"
545 ],
546 [
547 "Irkutsk",
548 "Irkutsk"
549 ],
550 [
551 "Kuala Lumpur",
552 "Kuala Lumpur"
553 ],
554 [
555 "Perth",
556 "Perth"
557 ],
558 [
559 "Singapore",
560 "Singapore"
561 ],
562 [
563 "Taipei",
564 "Taipei"
565 ],
566 [
567 "Ulaanbaatar",
568 "Ulaanbaatar"
569 ],
570 [
571 "Osaka",
572 "Osaka"
573 ],
574 [
575 "Sapporo",
576 "Sapporo"
577 ],
578 [
579 "Seoul",
580 "Seoul"
581 ],
582 [
583 "Tokyo",
584 "Tokyo"
585 ],
586 [
587 "Yakutsk",
588 "Yakutsk"
589 ],
590 [
591 "Adelaide",
592 "Adelaide"
593 ],
594 [
595 "Darwin",
596 "Darwin"
597 ],
598 [
599 "Brisbane",
600 "Brisbane"
601 ],
602 [
603 "Canberra",
604 "Canberra"
605 ],
606 [
607 "Guam",
608 "Guam"
609 ],
610 [
611 "Hobart",
612 "Hobart"
613 ],
614 [
615 "Melbourne",
616 "Melbourne"
617 ],
618 [
619 "Port Moresby",
620 "Port Moresby"
621 ],
622 [
623 "Sydney",
624 "Sydney"
625 ],
626 [
627 "Vladivostok",
628 "Vladivostok"
629 ],
630 [
631 "Magadan",
632 "Magadan"
633 ],
634 [
635 "New Caledonia",
636 "New Caledonia"
637 ],
638 [
639 "Solomon Is.",
640 "Solomon Is."
641 ],
642 [
643 "Srednekolymsk",
644 "Srednekolymsk"
645 ],
646 [
647 "Auckland",
648 "Auckland"
649 ],
650 [
651 "Fiji",
652 "Fiji"
653 ],
654 [
655 "Kamchatka",
656 "Kamchatka"
657 ],
658 [
659 "Marshall Is.",
660 "Marshall Is."
661 ],
662 [
663 "Wellington",
664 "Wellington"
665 ],
666 [
667 "Chatham Is.",
668 "Chatham Is."
669 ],
670 [
671 "Nuku'alofa",
672 "Nuku'alofa"
673 ],
674 [
675 "Samoa",
676 "Samoa"
677 ],
678 [
679 "Tokelau Is.",
680 "Tokelau Is."
681 ]
682 ]
683 }
684 ]
685}

Workfront (Secondary)

Provider value:

1"provider": "workfront_secondary"
1{
2 "oauth": true,
3 "personalization": true,
4 "oauth_token_pair": {
5 "label": "OAuth Token Pair",
6 "optional": true,
7 "type": "object",
8 "hint": "Allows you to create authorization code grant connections. You can create a shell connection in cases where you don't have an access token and refresh token.",
9 "properties": [
10 {
11 "label": "Access Token",
12 "name": "access_token",
13 "type": "string",
14 "optional": false
15 },
16 {
17 "label": "Refresh Token",
18 "name": "refresh_token",
19 "type": "string",
20 "optional": false
21 }
22 ]
23 },
24 "input": [
25 {
26 "label": "Authentication type",
27 "hint": "Select authentication type",
28 "optional": false,
29 "default": "api_key",
30 "type": "string",
31 "name": "authentication_type",
32 "pick_list": [
33 [
34 "OAuth 2.0",
35 "oauth2_auth_code_grant"
36 ],
37 [
38 "API key",
39 "api_key"
40 ]
41 ]
42 },
43 {
44 "label": "API key",
45 "optional": false,
46 "hint": "Your Workfront API key",
47 "type": "string",
48 "name": "api_key"
49 },
50 {
51 "label": "Client ID",
52 "optional": false,
53 "hint": "Go to 'Setup > System > OAuth2 Applications > Client ID' to create a client ID and secret.",
54 "type": "string",
55 "name": "client_id"
56 },
57 {
58 "label": "Client secret",
59 "optional": false,
60 "hint": "Go to 'Setup > System > OAuth2 Applications > Client secret' to create a client ID and secret.",
61 "type": "string",
62 "name": "client_secret"
63 },
64 {
65 "label": "Subdomain",
66 "optional": false,
67 "hint": "Enter your Workfront subdomain name as found in your Workfront URL.",
68 "type": "string",
69 "name": "subdomain"
70 },
71 {
72 "label": "API version",
73 "default": "14.0",
74 "hint": "Enter the API version to use in your connection. The default version is 14.0",
75 "optional": true,
76 "type": "string",
77 "name": "api_version"
78 },
79 {
80 "label": "Account timezone",
81 "optional": true,
82 "hint": "Enter an account timezone for consistency with Workfront. All date and time fields are converted to this timezone.",
83 "type": "string",
84 "name": "timezone",
85 "pick_list": [
86 [
87 "American Samoa",
88 "American Samoa"
89 ],
90 [
91 "International Date Line West",
92 "International Date Line West"
93 ],
94 [
95 "Midway Island",
96 "Midway Island"
97 ],
98 [
99 "Hawaii",
100 "Hawaii"
101 ],
102 [
103 "Alaska",
104 "Alaska"
105 ],
106 [
107 "Pacific Time (US & Canada)",
108 "Pacific Time (US & Canada)"
109 ],
110 [
111 "Tijuana",
112 "Tijuana"
113 ],
114 [
115 "Arizona",
116 "Arizona"
117 ],
118 [
119 "Chihuahua",
120 "Chihuahua"
121 ],
122 [
123 "Mazatlan",
124 "Mazatlan"
125 ],
126 [
127 "Mountain Time (US & Canada)",
128 "Mountain Time (US & Canada)"
129 ],
130 [
131 "Central America",
132 "Central America"
133 ],
134 [
135 "Central Time (US & Canada)",
136 "Central Time (US & Canada)"
137 ],
138 [
139 "Guadalajara",
140 "Guadalajara"
141 ],
142 [
143 "Mexico City",
144 "Mexico City"
145 ],
146 [
147 "Monterrey",
148 "Monterrey"
149 ],
150 [
151 "Saskatchewan",
152 "Saskatchewan"
153 ],
154 [
155 "Bogota",
156 "Bogota"
157 ],
158 [
159 "Eastern Time (US & Canada)",
160 "Eastern Time (US & Canada)"
161 ],
162 [
163 "Indiana (East)",
164 "Indiana (East)"
165 ],
166 [
167 "Lima",
168 "Lima"
169 ],
170 [
171 "Quito",
172 "Quito"
173 ],
174 [
175 "Atlantic Time (Canada)",
176 "Atlantic Time (Canada)"
177 ],
178 [
179 "Caracas",
180 "Caracas"
181 ],
182 [
183 "Georgetown",
184 "Georgetown"
185 ],
186 [
187 "La Paz",
188 "La Paz"
189 ],
190 [
191 "Santiago",
192 "Santiago"
193 ],
194 [
195 "Newfoundland",
196 "Newfoundland"
197 ],
198 [
199 "Brasilia",
200 "Brasilia"
201 ],
202 [
203 "Buenos Aires",
204 "Buenos Aires"
205 ],
206 [
207 "Greenland",
208 "Greenland"
209 ],
210 [
211 "Montevideo",
212 "Montevideo"
213 ],
214 [
215 "Mid-Atlantic",
216 "Mid-Atlantic"
217 ],
218 [
219 "Azores",
220 "Azores"
221 ],
222 [
223 "Cape Verde Is.",
224 "Cape Verde Is."
225 ],
226 [
227 "Casablanca",
228 "Casablanca"
229 ],
230 [
231 "Dublin",
232 "Dublin"
233 ],
234 [
235 "Edinburgh",
236 "Edinburgh"
237 ],
238 [
239 "Lisbon",
240 "Lisbon"
241 ],
242 [
243 "London",
244 "London"
245 ],
246 [
247 "Monrovia",
248 "Monrovia"
249 ],
250 [
251 "UTC",
252 "UTC"
253 ],
254 [
255 "Amsterdam",
256 "Amsterdam"
257 ],
258 [
259 "Belgrade",
260 "Belgrade"
261 ],
262 [
263 "Berlin",
264 "Berlin"
265 ],
266 [
267 "Bern",
268 "Bern"
269 ],
270 [
271 "Bratislava",
272 "Bratislava"
273 ],
274 [
275 "Brussels",
276 "Brussels"
277 ],
278 [
279 "Budapest",
280 "Budapest"
281 ],
282 [
283 "Copenhagen",
284 "Copenhagen"
285 ],
286 [
287 "Ljubljana",
288 "Ljubljana"
289 ],
290 [
291 "Madrid",
292 "Madrid"
293 ],
294 [
295 "Paris",
296 "Paris"
297 ],
298 [
299 "Prague",
300 "Prague"
301 ],
302 [
303 "Rome",
304 "Rome"
305 ],
306 [
307 "Sarajevo",
308 "Sarajevo"
309 ],
310 [
311 "Skopje",
312 "Skopje"
313 ],
314 [
315 "Stockholm",
316 "Stockholm"
317 ],
318 [
319 "Vienna",
320 "Vienna"
321 ],
322 [
323 "Warsaw",
324 "Warsaw"
325 ],
326 [
327 "West Central Africa",
328 "West Central Africa"
329 ],
330 [
331 "Zagreb",
332 "Zagreb"
333 ],
334 [
335 "Athens",
336 "Athens"
337 ],
338 [
339 "Bucharest",
340 "Bucharest"
341 ],
342 [
343 "Cairo",
344 "Cairo"
345 ],
346 [
347 "Harare",
348 "Harare"
349 ],
350 [
351 "Helsinki",
352 "Helsinki"
353 ],
354 [
355 "Jerusalem",
356 "Jerusalem"
357 ],
358 [
359 "Kaliningrad",
360 "Kaliningrad"
361 ],
362 [
363 "Kyiv",
364 "Kyiv"
365 ],
366 [
367 "Pretoria",
368 "Pretoria"
369 ],
370 [
371 "Riga",
372 "Riga"
373 ],
374 [
375 "Sofia",
376 "Sofia"
377 ],
378 [
379 "Tallinn",
380 "Tallinn"
381 ],
382 [
383 "Vilnius",
384 "Vilnius"
385 ],
386 [
387 "Baghdad",
388 "Baghdad"
389 ],
390 [
391 "Istanbul",
392 "Istanbul"
393 ],
394 [
395 "Kuwait",
396 "Kuwait"
397 ],
398 [
399 "Minsk",
400 "Minsk"
401 ],
402 [
403 "Moscow",
404 "Moscow"
405 ],
406 [
407 "Nairobi",
408 "Nairobi"
409 ],
410 [
411 "Riyadh",
412 "Riyadh"
413 ],
414 [
415 "St. Petersburg",
416 "St. Petersburg"
417 ],
418 [
419 "Tehran",
420 "Tehran"
421 ],
422 [
423 "Abu Dhabi",
424 "Abu Dhabi"
425 ],
426 [
427 "Baku",
428 "Baku"
429 ],
430 [
431 "Muscat",
432 "Muscat"
433 ],
434 [
435 "Samara",
436 "Samara"
437 ],
438 [
439 "Tbilisi",
440 "Tbilisi"
441 ],
442 [
443 "Volgograd",
444 "Volgograd"
445 ],
446 [
447 "Yerevan",
448 "Yerevan"
449 ],
450 [
451 "Kabul",
452 "Kabul"
453 ],
454 [
455 "Ekaterinburg",
456 "Ekaterinburg"
457 ],
458 [
459 "Islamabad",
460 "Islamabad"
461 ],
462 [
463 "Karachi",
464 "Karachi"
465 ],
466 [
467 "Tashkent",
468 "Tashkent"
469 ],
470 [
471 "Chennai",
472 "Chennai"
473 ],
474 [
475 "Kolkata",
476 "Kolkata"
477 ],
478 [
479 "Mumbai",
480 "Mumbai"
481 ],
482 [
483 "New Delhi",
484 "New Delhi"
485 ],
486 [
487 "Sri Jayawardenepura",
488 "Sri Jayawardenepura"
489 ],
490 [
491 "Kathmandu",
492 "Kathmandu"
493 ],
494 [
495 "Almaty",
496 "Almaty"
497 ],
498 [
499 "Astana",
500 "Astana"
501 ],
502 [
503 "Dhaka",
504 "Dhaka"
505 ],
506 [
507 "Urumqi",
508 "Urumqi"
509 ],
510 [
511 "Rangoon",
512 "Rangoon"
513 ],
514 [
515 "Bangkok",
516 "Bangkok"
517 ],
518 [
519 "Hanoi",
520 "Hanoi"
521 ],
522 [
523 "Jakarta",
524 "Jakarta"
525 ],
526 [
527 "Krasnoyarsk",
528 "Krasnoyarsk"
529 ],
530 [
531 "Novosibirsk",
532 "Novosibirsk"
533 ],
534 [
535 "Beijing",
536 "Beijing"
537 ],
538 [
539 "Chongqing",
540 "Chongqing"
541 ],
542 [
543 "Hong Kong",
544 "Hong Kong"
545 ],
546 [
547 "Irkutsk",
548 "Irkutsk"
549 ],
550 [
551 "Kuala Lumpur",
552 "Kuala Lumpur"
553 ],
554 [
555 "Perth",
556 "Perth"
557 ],
558 [
559 "Singapore",
560 "Singapore"
561 ],
562 [
563 "Taipei",
564 "Taipei"
565 ],
566 [
567 "Ulaanbaatar",
568 "Ulaanbaatar"
569 ],
570 [
571 "Osaka",
572 "Osaka"
573 ],
574 [
575 "Sapporo",
576 "Sapporo"
577 ],
578 [
579 "Seoul",
580 "Seoul"
581 ],
582 [
583 "Tokyo",
584 "Tokyo"
585 ],
586 [
587 "Yakutsk",
588 "Yakutsk"
589 ],
590 [
591 "Adelaide",
592 "Adelaide"
593 ],
594 [
595 "Darwin",
596 "Darwin"
597 ],
598 [
599 "Brisbane",
600 "Brisbane"
601 ],
602 [
603 "Canberra",
604 "Canberra"
605 ],
606 [
607 "Guam",
608 "Guam"
609 ],
610 [
611 "Hobart",
612 "Hobart"
613 ],
614 [
615 "Melbourne",
616 "Melbourne"
617 ],
618 [
619 "Port Moresby",
620 "Port Moresby"
621 ],
622 [
623 "Sydney",
624 "Sydney"
625 ],
626 [
627 "Vladivostok",
628 "Vladivostok"
629 ],
630 [
631 "Magadan",
632 "Magadan"
633 ],
634 [
635 "New Caledonia",
636 "New Caledonia"
637 ],
638 [
639 "Solomon Is.",
640 "Solomon Is."
641 ],
642 [
643 "Srednekolymsk",
644 "Srednekolymsk"
645 ],
646 [
647 "Auckland",
648 "Auckland"
649 ],
650 [
651 "Fiji",
652 "Fiji"
653 ],
654 [
655 "Kamchatka",
656 "Kamchatka"
657 ],
658 [
659 "Marshall Is.",
660 "Marshall Is."
661 ],
662 [
663 "Wellington",
664 "Wellington"
665 ],
666 [
667 "Chatham Is.",
668 "Chatham Is."
669 ],
670 [
671 "Nuku'alofa",
672 "Nuku'alofa"
673 ],
674 [
675 "Samoa",
676 "Samoa"
677 ],
678 [
679 "Tokelau Is.",
680 "Tokelau Is."
681 ]
682 ]
683 }
684 ]
685}

Wrike

Provider value:

1"provider": "wrike"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "advanced_settings",
8 "type": "object",
9 "optional": true,
10 "label": "Advanced settings",
11 "properties":
12 [
13 {
14 "name": "api_scope",
15 "type": "string",
16 "optional": true,
17 "label": "Api scope",
18 "hint": " Select <a href=\"https://developers.wrike.com/documentation/api/overview\" target=\"_blank\">permissions</a>\n to request for this connection. Defaults to <b>Default</b> if left blank.\n <br />Minimum permissions required is <b>Default</b>, which will be always requested in addition to selected permissions.\n"
19 }
20 ]
21 }
22 ]
23 }

Wrike (Secondary)

Provider value:

1"provider": "wrike_secondary"
1 {
2 "oauth": true,
3 "personalization": true,
4 "input":
5 [
6 {
7 "name": "advanced_settings",
8 "type": "object",
9 "optional": true,
10 "label": "Advanced settings",
11 "properties":
12 [
13 {
14 "name": "api_scope",
15 "type": "string",
16 "optional": true,
17 "label": "Api scope",
18 "hint": " Select <a href=\"https://developers.wrike.com/documentation/api/overview\" target=\"_blank\">permissions</a>\n to request for this connection. Defaults to <b>Default</b> if left blank.\n <br />Minimum permissions required is <b>Default</b>, which will be always requested in addition to selected permissions.\n"
19 }
20 ]
21 }
22 ]
23 }

Wufoo

Provider value:

1"provider": "wufoo"
1 {
2 "oauth": false,
3 "personalization": false,
4 "input":
5 [
6 {
7 "name": "api_key",
8 "type": "string",
9 "label": "API key",
10 "hint": "<a href=\"http://www.wufoo.com/docs/api/v3/#key\" target=\"_blank\">How do I find the Wufoo API key?</a>"
11 },
12 {
13 "name": "subdomain",
14 "type": "string",
15 "label": "Sub-domain",
16 "hint": "Enter only the subdomain (located before .wufoo.com)"
17 }
18 ]
19 }

Xactly

Provider value:

1"provider": "xactly"
1 {
2 "oauth":false,
3 "personalization":false,
4 "input":[
5 {
6 "name":"subdomain",
7 "type":"string",
8 "optional":false,
9 "label":"Sub-domain"
10 },
11 {
12 "name":"client_id",
13 "type":"string",
14 "optional":false,
15 "label":"Client ID"
16 },
17 {
18 "name":"consumer",
19 "type":"string",
20 "optional":false,
21 "label":"Consumer"
22 },
23 {
24 "name":"username",
25 "type":"string",
26 "optional":false,
27 "label":"Username"
28 },
29 {
30 "name":"password",
31 "type":"string",
32 "optional":false,
33 "label":"Password"
34 }
35 ]
36 }

Xero

Provider value:

1"provider": "xero"
1 {
2 "oauth":true,
3 "personalization":true,
4 "input":[
5 {
6 "name":"payroll",
7 "type":"boolean",
8 "optional":true,
9 "label":"Payroll",
10 "hint":"Select 'Yes' if Xero account is enabled for payroll, note that payroll connectivity is only available in AU and US editions",
11 "default":"false"
12 }
13 ]
14 }

Xero Practice Manager

Provider value:

1"provider": "xero_practice_manager"

XML tools by Workato

Provider value:

1"provider": "xml_tools"

YAML parser by Workato

Provider value:

1"provider": "yaml_parser"

Zendesk

Provider value:

1"provider": "zendesk"
1 {
2 "oauth":true,
3 "personalization":true,
4 "input":[
5 {
6 "name":"subdomain",
7 "type":"string",
8 "label":"Subdomain",
9 "hint":"If your Zendesk URL is https://acme.zendesk.com then your subdomain is <b>acme</b>"
10 },
11 {
12 "name":"authentication_type",
13 "type":"string",
14 "label":"Authentication type",
15 "pick_list":[
16 [
17 "Basic",
18 "basic"
19 ],
20 [
21 "OAuth 2.0",
22 "oauth"
23 ]
24 ],
25 "default":"oauth"
26 },
27 {
28 "name":"username",
29 "type":"string",
30 "label":"Username",
31 "hint":"When authenticating with tokens, add <b>/token</b> to the end of your username."
32 },
33 {
34 "name":"password",
35 "type":"string",
36 "label":"Password",
37 "hint":" Enter api token if you are using api token authentication. Click <a href=\"https://support.zendesk.com/hc/en-us/articles/226022787-Generating-a-new-API-token\" target=\"_blank\">here</a> to generate api token.\n"
38 }
39 ]
40 }

Zendesk (Secondary)

Provider value:

1"provider": "zendesk_secondary"
1 {
2 "oauth":true,
3 "personalization":true,
4 "input":[
5 {
6 "name":"subdomain",
7 "type":"string",
8 "label":"Subdomain",
9 "hint":"If your Zendesk URL is https://acme.zendesk.com then your subdomain is <b>acme</b>"
10 },
11 {
12 "name":"authentication_type",
13 "type":"string",
14 "label":"Authentication type",
15 "pick_list":[
16 [
17 "Basic",
18 "basic"
19 ],
20 [
21 "OAuth 2.0",
22 "oauth"
23 ]
24 ],
25 "default":"oauth"
26 },
27 {
28 "name":"username",
29 "type":"string",
30 "label":"Username",
31 "hint":"When authenticating with tokens, add <b>/token</b> to the end of your username."
32 },
33 {
34 "name":"password",
35 "type":"string",
36 "label":"Password",
37 "hint":" Enter api token if you are using api token authentication. Click <a href=\"https://support.zendesk.com/hc/en-us/articles/226022787-Generating-a-new-API-token\" target=\"_blank\">here</a> to generate api token.\n"
38 }
39 ]
40 }

Zendesk Sunshine

Provider value:

1"provider": "zendesk_sunshine"

Zenefits

Provider value:

1"provider": "zenefits"
1 {
2 "oauth":true,
3 "personalization":true,
4 "input":[]
5 }

Zoho CRM

Provider value:

1"provider": "zohocrm"
1 {
2 "oauth":true,
3 "personalization":true,
4 "input":[
5 {
6 "name":"timezone",
7 "type":"string",
8 "optional":true,
9 "label":"Account timezone",
10 "hint":"Needed for consistency with Zoho - pick same as your Zoho profile",
11 "pick_list":[
12 [
13 "American Samoa (-11:00)",
14 "American Samoa"
15 ],
16 [
17 "International Date Line West (-11:00)",
18 "International Date Line West"
19 ],
20 [
21 "Midway Island (-11:00)",
22 "Midway Island"
23 ],
24 [
25 "Hawaii (-10:00)",
26 "Hawaii"
27 ],
28 [
29 "Alaska (-9:00)",
30 "Alaska"
31 ],
32 [
33 "Pacific Time (US & Canada) (-8:00)",
34 "Pacific Time (US & Canada)"
35 ],
36 [
37 "Tijuana (-8:00)",
38 "Tijuana"
39 ],
40 [
41 "Arizona (-7:00)",
42 "Arizona"
43 ],
44 [
45 "Chihuahua (-7:00)",
46 "Chihuahua"
47 ],
48 [
49 "Mazatlan (-7:00)",
50 "Mazatlan"
51 ],
52 [
53 "Mountain Time (US & Canada) (-7:00)",
54 "Mountain Time (US & Canada)"
55 ],
56 [
57 "Central America (-6:00)",
58 "Central America"
59 ],
60 [
61 "Central Time (US & Canada) (-6:00)",
62 "Central Time (US & Canada)"
63 ],
64 [
65 "Guadalajara (-6:00)",
66 "Guadalajara"
67 ],
68 [
69 "Mexico City (-6:00)",
70 "Mexico City"
71 ],
72 [
73 "Monterrey (-6:00)",
74 "Monterrey"
75 ],
76 [
77 "Saskatchewan (-6:00)",
78 "Saskatchewan"
79 ],
80 [
81 "Bogota (-5:00)",
82 "Bogota"
83 ],
84 [
85 "Eastern Time (US & Canada) (-5:00)",
86 "Eastern Time (US & Canada)"
87 ],
88 [
89 "Indiana (East) (-5:00)",
90 "Indiana (East)"
91 ],
92 [
93 "Lima (-5:00)",
94 "Lima"
95 ],
96 [
97 "Quito (-5:00)",
98 "Quito"
99 ],
100 [
101 "Atlantic Time (Canada) (-4:00)",
102 "Atlantic Time (Canada)"
103 ],
104 [
105 "Caracas (-4:00)",
106 "Caracas"
107 ],
108 [
109 "Georgetown (-4:00)",
110 "Georgetown"
111 ],
112 [
113 "La Paz (-4:00)",
114 "La Paz"
115 ],
116 [
117 "Santiago (-4:00)",
118 "Santiago"
119 ],
120 [
121 "Newfoundland (-4:30)",
122 "Newfoundland"
123 ],
124 [
125 "Brasilia (-3:00)",
126 "Brasilia"
127 ],
128 [
129 "Buenos Aires (-3:00)",
130 "Buenos Aires"
131 ],
132 [
133 "Greenland (-3:00)",
134 "Greenland"
135 ],
136 [
137 "Montevideo (-3:00)",
138 "Montevideo"
139 ],
140 [
141 "Mid-Atlantic (-2:00)",
142 "Mid-Atlantic"
143 ],
144 [
145 "Azores (-1:00)",
146 "Azores"
147 ],
148 [
149 "Cape Verde Is. (-1:00)",
150 "Cape Verde Is."
151 ],
152 [
153 "Casablanca (+0:00)",
154 "Casablanca"
155 ],
156 [
157 "Dublin (+0:00)",
158 "Dublin"
159 ],
160 [
161 "Edinburgh (+0:00)",
162 "Edinburgh"
163 ],
164 [
165 "Lisbon (+0:00)",
166 "Lisbon"
167 ],
168 [
169 "London (+0:00)",
170 "London"
171 ],
172 [
173 "Monrovia (+0:00)",
174 "Monrovia"
175 ],
176 [
177 "UTC (+0:00)",
178 "UTC"
179 ],
180 [
181 "Amsterdam (+1:00)",
182 "Amsterdam"
183 ],
184 [
185 "Belgrade (+1:00)",
186 "Belgrade"
187 ],
188 [
189 "Berlin (+1:00)",
190 "Berlin"
191 ],
192 [
193 "Bern (+1:00)",
194 "Bern"
195 ],
196 [
197 "Bratislava (+1:00)",
198 "Bratislava"
199 ],
200 [
201 "Brussels (+1:00)",
202 "Brussels"
203 ],
204 [
205 "Budapest (+1:00)",
206 "Budapest"
207 ],
208 [
209 "Copenhagen (+1:00)",
210 "Copenhagen"
211 ],
212 [
213 "Ljubljana (+1:00)",
214 "Ljubljana"
215 ],
216 [
217 "Madrid (+1:00)",
218 "Madrid"
219 ],
220 [
221 "Paris (+1:00)",
222 "Paris"
223 ],
224 [
225 "Prague (+1:00)",
226 "Prague"
227 ],
228 [
229 "Rome (+1:00)",
230 "Rome"
231 ],
232 [
233 "Sarajevo (+1:00)",
234 "Sarajevo"
235 ],
236 [
237 "Skopje (+1:00)",
238 "Skopje"
239 ],
240 [
241 "Stockholm (+1:00)",
242 "Stockholm"
243 ],
244 [
245 "Vienna (+1:00)",
246 "Vienna"
247 ],
248 [
249 "Warsaw (+1:00)",
250 "Warsaw"
251 ],
252 [
253 "West Central Africa (+1:00)",
254 "West Central Africa"
255 ],
256 [
257 "Zagreb (+1:00)",
258 "Zagreb"
259 ],
260 [
261 "Athens (+2:00)",
262 "Athens"
263 ],
264 [
265 "Bucharest (+2:00)",
266 "Bucharest"
267 ],
268 [
269 "Cairo (+2:00)",
270 "Cairo"
271 ],
272 [
273 "Harare (+2:00)",
274 "Harare"
275 ],
276 [
277 "Helsinki (+2:00)",
278 "Helsinki"
279 ],
280 [
281 "Jerusalem (+2:00)",
282 "Jerusalem"
283 ],
284 [
285 "Kaliningrad (+2:00)",
286 "Kaliningrad"
287 ],
288 [
289 "Kyiv (+2:00)",
290 "Kyiv"
291 ],
292 [
293 "Pretoria (+2:00)",
294 "Pretoria"
295 ],
296 [
297 "Riga (+2:00)",
298 "Riga"
299 ],
300 [
301 "Sofia (+2:00)",
302 "Sofia"
303 ],
304 [
305 "Tallinn (+2:00)",
306 "Tallinn"
307 ],
308 [
309 "Vilnius (+2:00)",
310 "Vilnius"
311 ],
312 [
313 "Baghdad (+3:00)",
314 "Baghdad"
315 ],
316 [
317 "Istanbul (+3:00)",
318 "Istanbul"
319 ],
320 [
321 "Kuwait (+3:00)",
322 "Kuwait"
323 ],
324 [
325 "Minsk (+3:00)",
326 "Minsk"
327 ],
328 [
329 "Moscow (+3:00)",
330 "Moscow"
331 ],
332 [
333 "Nairobi (+3:00)",
334 "Nairobi"
335 ],
336 [
337 "Riyadh (+3:00)",
338 "Riyadh"
339 ],
340 [
341 "St. Petersburg (+3:00)",
342 "St. Petersburg"
343 ],
344 [
345 "Tehran (+3:30)",
346 "Tehran"
347 ],
348 [
349 "Abu Dhabi (+4:00)",
350 "Abu Dhabi"
351 ],
352 [
353 "Baku (+4:00)",
354 "Baku"
355 ],
356 [
357 "Muscat (+4:00)",
358 "Muscat"
359 ],
360 [
361 "Samara (+4:00)",
362 "Samara"
363 ],
364 [
365 "Tbilisi (+4:00)",
366 "Tbilisi"
367 ],
368 [
369 "Volgograd (+4:00)",
370 "Volgograd"
371 ],
372 [
373 "Yerevan (+4:00)",
374 "Yerevan"
375 ],
376 [
377 "Kabul (+4:30)",
378 "Kabul"
379 ],
380 [
381 "Ekaterinburg (+5:00)",
382 "Ekaterinburg"
383 ],
384 [
385 "Islamabad (+5:00)",
386 "Islamabad"
387 ],
388 [
389 "Karachi (+5:00)",
390 "Karachi"
391 ],
392 [
393 "Tashkent (+5:00)",
394 "Tashkent"
395 ],
396 [
397 "Chennai (+5:30)",
398 "Chennai"
399 ],
400 [
401 "Kolkata (+5:30)",
402 "Kolkata"
403 ],
404 [
405 "Mumbai (+5:30)",
406 "Mumbai"
407 ],
408 [
409 "New Delhi (+5:30)",
410 "New Delhi"
411 ],
412 [
413 "Sri Jayawardenepura (+5:30)",
414 "Sri Jayawardenepura"
415 ],
416 [
417 "Kathmandu (+5:45)",
418 "Kathmandu"
419 ],
420 [
421 "Almaty (+6:00)",
422 "Almaty"
423 ],
424 [
425 "Astana (+6:00)",
426 "Astana"
427 ],
428 [
429 "Dhaka (+6:00)",
430 "Dhaka"
431 ],
432 [
433 "Urumqi (+6:00)",
434 "Urumqi"
435 ],
436 [
437 "Rangoon (+6:30)",
438 "Rangoon"
439 ],
440 [
441 "Bangkok (+7:00)",
442 "Bangkok"
443 ],
444 [
445 "Hanoi (+7:00)",
446 "Hanoi"
447 ],
448 [
449 "Jakarta (+7:00)",
450 "Jakarta"
451 ],
452 [
453 "Krasnoyarsk (+7:00)",
454 "Krasnoyarsk"
455 ],
456 [
457 "Novosibirsk (+7:00)",
458 "Novosibirsk"
459 ],
460 [
461 "Beijing (+8:00)",
462 "Beijing"
463 ],
464 [
465 "Chongqing (+8:00)",
466 "Chongqing"
467 ],
468 [
469 "Hong Kong (+8:00)",
470 "Hong Kong"
471 ],
472 [
473 "Irkutsk (+8:00)",
474 "Irkutsk"
475 ],
476 [
477 "Kuala Lumpur (+8:00)",
478 "Kuala Lumpur"
479 ],
480 [
481 "Perth (+8:00)",
482 "Perth"
483 ],
484 [
485 "Singapore (+8:00)",
486 "Singapore"
487 ],
488 [
489 "Taipei (+8:00)",
490 "Taipei"
491 ],
492 [
493 "Ulaanbaatar (+8:00)",
494 "Ulaanbaatar"
495 ],
496 [
497 "Osaka (+9:00)",
498 "Osaka"
499 ],
500 [
501 "Sapporo (+9:00)",
502 "Sapporo"
503 ],
504 [
505 "Seoul (+9:00)",
506 "Seoul"
507 ],
508 [
509 "Tokyo (+9:00)",
510 "Tokyo"
511 ],
512 [
513 "Yakutsk (+9:00)",
514 "Yakutsk"
515 ],
516 [
517 "Adelaide (+9:30)",
518 "Adelaide"
519 ],
520 [
521 "Darwin (+9:30)",
522 "Darwin"
523 ],
524 [
525 "Brisbane (+10:00)",
526 "Brisbane"
527 ],
528 [
529 "Canberra (+10:00)",
530 "Canberra"
531 ],
532 [
533 "Guam (+10:00)",
534 "Guam"
535 ],
536 [
537 "Hobart (+10:00)",
538 "Hobart"
539 ],
540 [
541 "Melbourne (+10:00)",
542 "Melbourne"
543 ],
544 [
545 "Port Moresby (+10:00)",
546 "Port Moresby"
547 ],
548 [
549 "Sydney (+10:00)",
550 "Sydney"
551 ],
552 [
553 "Vladivostok (+10:00)",
554 "Vladivostok"
555 ],
556 [
557 "Magadan (+11:00)",
558 "Magadan"
559 ],
560 [
561 "New Caledonia (+11:00)",
562 "New Caledonia"
563 ],
564 [
565 "Solomon Is. (+11:00)",
566 "Solomon Is."
567 ],
568 [
569 "Srednekolymsk (+11:00)",
570 "Srednekolymsk"
571 ],
572 [
573 "Auckland (+12:00)",
574 "Auckland"
575 ],
576 [
577 "Fiji (+12:00)",
578 "Fiji"
579 ],
580 [
581 "Kamchatka (+12:00)",
582 "Kamchatka"
583 ],
584 [
585 "Marshall Is. (+12:00)",
586 "Marshall Is."
587 ],
588 [
589 "Wellington (+12:00)",
590 "Wellington"
591 ],
592 [
593 "Chatham Is. (+12:45)",
594 "Chatham Is."
595 ],
596 [
597 "Nuku'alofa (+13:00)",
598 "Nuku'alofa"
599 ],
600 [
601 "Samoa (+13:00)",
602 "Samoa"
603 ],
604 [
605 "Tokelau Is. (+13:00)",
606 "Tokelau Is."
607 ]
608 ]
609 },
610 {
611 "name":"data_center",
612 "type":"string",
613 "optional":true,
614 "label":"Data center",
615 "hint":"You can find this at the end of your Zoho URL 'https://accounts.zoho.[Data center]'. Default value: 'Others(com)'",
616 "pick_list":[
617 [
618 "China(cn)",
619 "com.cn"
620 ],
621 [
622 "Europe(eu)",
623 "eu"
624 ],
625 [
626 "India(in)",
627 "in"
628 ],
629 [
630 "Others(com)",
631 "com"
632 ]
633 ],
634 "default":"com"
635 }
636 ]
637 }

Zoho Invoice

Provider value:

1"provider": "zoho_invoice"
1 {
2 "oauth":false,
3 "personalization":false,
4 "input":[
5 {
6 "name":"auth_token",
7 "type":"string",
8 "label":"Authentication token",
9 "hint":"Create your Zoho invoice token <a target='_blank' rel='noopener' href=\"https://accounts.zoho.com/apiauthtoken/create?SCOPE=ZohoInvoice/invoiceapi\">here</a>"
10 },
11 {
12 "name":"timezone",
13 "type":"string",
14 "optional":true,
15 "label":"Account timezone",
16 "hint":"Needed for consistency with Zoho - pick same as your Zoho profile",
17 "pick_list":[
18 [
19 "American Samoa (-11:00)",
20 "American Samoa"
21 ],
22 [
23 "International Date Line West (-11:00)",
24 "International Date Line West"
25 ],
26 [
27 "Midway Island (-11:00)",
28 "Midway Island"
29 ],
30 [
31 "Hawaii (-10:00)",
32 "Hawaii"
33 ],
34 [
35 "Alaska (-9:00)",
36 "Alaska"
37 ],
38 [
39 "Pacific Time (US & Canada) (-8:00)",
40 "Pacific Time (US & Canada)"
41 ],
42 [
43 "Tijuana (-8:00)",
44 "Tijuana"
45 ],
46 [
47 "Arizona (-7:00)",
48 "Arizona"
49 ],
50 [
51 "Chihuahua (-7:00)",
52 "Chihuahua"
53 ],
54 [
55 "Mazatlan (-7:00)",
56 "Mazatlan"
57 ],
58 [
59 "Mountain Time (US & Canada) (-7:00)",
60 "Mountain Time (US & Canada)"
61 ],
62 [
63 "Central America (-6:00)",
64 "Central America"
65 ],
66 [
67 "Central Time (US & Canada) (-6:00)",
68 "Central Time (US & Canada)"
69 ],
70 [
71 "Guadalajara (-6:00)",
72 "Guadalajara"
73 ],
74 [
75 "Mexico City (-6:00)",
76 "Mexico City"
77 ],
78 [
79 "Monterrey (-6:00)",
80 "Monterrey"
81 ],
82 [
83 "Saskatchewan (-6:00)",
84 "Saskatchewan"
85 ],
86 [
87 "Bogota (-5:00)",
88 "Bogota"
89 ],
90 [
91 "Eastern Time (US & Canada) (-5:00)",
92 "Eastern Time (US & Canada)"
93 ],
94 [
95 "Indiana (East) (-5:00)",
96 "Indiana (East)"
97 ],
98 [
99 "Lima (-5:00)",
100 "Lima"
101 ],
102 [
103 "Quito (-5:00)",
104 "Quito"
105 ],
106 [
107 "Atlantic Time (Canada) (-4:00)",
108 "Atlantic Time (Canada)"
109 ],
110 [
111 "Caracas (-4:00)",
112 "Caracas"
113 ],
114 [
115 "Georgetown (-4:00)",
116 "Georgetown"
117 ],
118 [
119 "La Paz (-4:00)",
120 "La Paz"
121 ],
122 [
123 "Santiago (-4:00)",
124 "Santiago"
125 ],
126 [
127 "Newfoundland (-4:30)",
128 "Newfoundland"
129 ],
130 [
131 "Brasilia (-3:00)",
132 "Brasilia"
133 ],
134 [
135 "Buenos Aires (-3:00)",
136 "Buenos Aires"
137 ],
138 [
139 "Greenland (-3:00)",
140 "Greenland"
141 ],
142 [
143 "Montevideo (-3:00)",
144 "Montevideo"
145 ],
146 [
147 "Mid-Atlantic (-2:00)",
148 "Mid-Atlantic"
149 ],
150 [
151 "Azores (-1:00)",
152 "Azores"
153 ],
154 [
155 "Cape Verde Is. (-1:00)",
156 "Cape Verde Is."
157 ],
158 [
159 "Casablanca (+0:00)",
160 "Casablanca"
161 ],
162 [
163 "Dublin (+0:00)",
164 "Dublin"
165 ],
166 [
167 "Edinburgh (+0:00)",
168 "Edinburgh"
169 ],
170 [
171 "Lisbon (+0:00)",
172 "Lisbon"
173 ],
174 [
175 "London (+0:00)",
176 "London"
177 ],
178 [
179 "Monrovia (+0:00)",
180 "Monrovia"
181 ],
182 [
183 "UTC (+0:00)",
184 "UTC"
185 ],
186 [
187 "Amsterdam (+1:00)",
188 "Amsterdam"
189 ],
190 [
191 "Belgrade (+1:00)",
192 "Belgrade"
193 ],
194 [
195 "Berlin (+1:00)",
196 "Berlin"
197 ],
198 [
199 "Bern (+1:00)",
200 "Bern"
201 ],
202 [
203 "Bratislava (+1:00)",
204 "Bratislava"
205 ],
206 [
207 "Brussels (+1:00)",
208 "Brussels"
209 ],
210 [
211 "Budapest (+1:00)",
212 "Budapest"
213 ],
214 [
215 "Copenhagen (+1:00)",
216 "Copenhagen"
217 ],
218 [
219 "Ljubljana (+1:00)",
220 "Ljubljana"
221 ],
222 [
223 "Madrid (+1:00)",
224 "Madrid"
225 ],
226 [
227 "Paris (+1:00)",
228 "Paris"
229 ],
230 [
231 "Prague (+1:00)",
232 "Prague"
233 ],
234 [
235 "Rome (+1:00)",
236 "Rome"
237 ],
238 [
239 "Sarajevo (+1:00)",
240 "Sarajevo"
241 ],
242 [
243 "Skopje (+1:00)",
244 "Skopje"
245 ],
246 [
247 "Stockholm (+1:00)",
248 "Stockholm"
249 ],
250 [
251 "Vienna (+1:00)",
252 "Vienna"
253 ],
254 [
255 "Warsaw (+1:00)",
256 "Warsaw"
257 ],
258 [
259 "West Central Africa (+1:00)",
260 "West Central Africa"
261 ],
262 [
263 "Zagreb (+1:00)",
264 "Zagreb"
265 ],
266 [
267 "Athens (+2:00)",
268 "Athens"
269 ],
270 [
271 "Bucharest (+2:00)",
272 "Bucharest"
273 ],
274 [
275 "Cairo (+2:00)",
276 "Cairo"
277 ],
278 [
279 "Harare (+2:00)",
280 "Harare"
281 ],
282 [
283 "Helsinki (+2:00)",
284 "Helsinki"
285 ],
286 [
287 "Jerusalem (+2:00)",
288 "Jerusalem"
289 ],
290 [
291 "Kaliningrad (+2:00)",
292 "Kaliningrad"
293 ],
294 [
295 "Kyiv (+2:00)",
296 "Kyiv"
297 ],
298 [
299 "Pretoria (+2:00)",
300 "Pretoria"
301 ],
302 [
303 "Riga (+2:00)",
304 "Riga"
305 ],
306 [
307 "Sofia (+2:00)",
308 "Sofia"
309 ],
310 [
311 "Tallinn (+2:00)",
312 "Tallinn"
313 ],
314 [
315 "Vilnius (+2:00)",
316 "Vilnius"
317 ],
318 [
319 "Baghdad (+3:00)",
320 "Baghdad"
321 ],
322 [
323 "Istanbul (+3:00)",
324 "Istanbul"
325 ],
326 [
327 "Kuwait (+3:00)",
328 "Kuwait"
329 ],
330 [
331 "Minsk (+3:00)",
332 "Minsk"
333 ],
334 [
335 "Moscow (+3:00)",
336 "Moscow"
337 ],
338 [
339 "Nairobi (+3:00)",
340 "Nairobi"
341 ],
342 [
343 "Riyadh (+3:00)",
344 "Riyadh"
345 ],
346 [
347 "St. Petersburg (+3:00)",
348 "St. Petersburg"
349 ],
350 [
351 "Tehran (+3:30)",
352 "Tehran"
353 ],
354 [
355 "Abu Dhabi (+4:00)",
356 "Abu Dhabi"
357 ],
358 [
359 "Baku (+4:00)",
360 "Baku"
361 ],
362 [
363 "Muscat (+4:00)",
364 "Muscat"
365 ],
366 [
367 "Samara (+4:00)",
368 "Samara"
369 ],
370 [
371 "Tbilisi (+4:00)",
372 "Tbilisi"
373 ],
374 [
375 "Volgograd (+4:00)",
376 "Volgograd"
377 ],
378 [
379 "Yerevan (+4:00)",
380 "Yerevan"
381 ],
382 [
383 "Kabul (+4:30)",
384 "Kabul"
385 ],
386 [
387 "Ekaterinburg (+5:00)",
388 "Ekaterinburg"
389 ],
390 [
391 "Islamabad (+5:00)",
392 "Islamabad"
393 ],
394 [
395 "Karachi (+5:00)",
396 "Karachi"
397 ],
398 [
399 "Tashkent (+5:00)",
400 "Tashkent"
401 ],
402 [
403 "Chennai (+5:30)",
404 "Chennai"
405 ],
406 [
407 "Kolkata (+5:30)",
408 "Kolkata"
409 ],
410 [
411 "Mumbai (+5:30)",
412 "Mumbai"
413 ],
414 [
415 "New Delhi (+5:30)",
416 "New Delhi"
417 ],
418 [
419 "Sri Jayawardenepura (+5:30)",
420 "Sri Jayawardenepura"
421 ],
422 [
423 "Kathmandu (+5:45)",
424 "Kathmandu"
425 ],
426 [
427 "Almaty (+6:00)",
428 "Almaty"
429 ],
430 [
431 "Astana (+6:00)",
432 "Astana"
433 ],
434 [
435 "Dhaka (+6:00)",
436 "Dhaka"
437 ],
438 [
439 "Urumqi (+6:00)",
440 "Urumqi"
441 ],
442 [
443 "Rangoon (+6:30)",
444 "Rangoon"
445 ],
446 [
447 "Bangkok (+7:00)",
448 "Bangkok"
449 ],
450 [
451 "Hanoi (+7:00)",
452 "Hanoi"
453 ],
454 [
455 "Jakarta (+7:00)",
456 "Jakarta"
457 ],
458 [
459 "Krasnoyarsk (+7:00)",
460 "Krasnoyarsk"
461 ],
462 [
463 "Novosibirsk (+7:00)",
464 "Novosibirsk"
465 ],
466 [
467 "Beijing (+8:00)",
468 "Beijing"
469 ],
470 [
471 "Chongqing (+8:00)",
472 "Chongqing"
473 ],
474 [
475 "Hong Kong (+8:00)",
476 "Hong Kong"
477 ],
478 [
479 "Irkutsk (+8:00)",
480 "Irkutsk"
481 ],
482 [
483 "Kuala Lumpur (+8:00)",
484 "Kuala Lumpur"
485 ],
486 [
487 "Perth (+8:00)",
488 "Perth"
489 ],
490 [
491 "Singapore (+8:00)",
492 "Singapore"
493 ],
494 [
495 "Taipei (+8:00)",
496 "Taipei"
497 ],
498 [
499 "Ulaanbaatar (+8:00)",
500 "Ulaanbaatar"
501 ],
502 [
503 "Osaka (+9:00)",
504 "Osaka"
505 ],
506 [
507 "Sapporo (+9:00)",
508 "Sapporo"
509 ],
510 [
511 "Seoul (+9:00)",
512 "Seoul"
513 ],
514 [
515 "Tokyo (+9:00)",
516 "Tokyo"
517 ],
518 [
519 "Yakutsk (+9:00)",
520 "Yakutsk"
521 ],
522 [
523 "Adelaide (+9:30)",
524 "Adelaide"
525 ],
526 [
527 "Darwin (+9:30)",
528 "Darwin"
529 ],
530 [
531 "Brisbane (+10:00)",
532 "Brisbane"
533 ],
534 [
535 "Canberra (+10:00)",
536 "Canberra"
537 ],
538 [
539 "Guam (+10:00)",
540 "Guam"
541 ],
542 [
543 "Hobart (+10:00)",
544 "Hobart"
545 ],
546 [
547 "Melbourne (+10:00)",
548 "Melbourne"
549 ],
550 [
551 "Port Moresby (+10:00)",
552 "Port Moresby"
553 ],
554 [
555 "Sydney (+10:00)",
556 "Sydney"
557 ],
558 [
559 "Vladivostok (+10:00)",
560 "Vladivostok"
561 ],
562 [
563 "Magadan (+11:00)",
564 "Magadan"
565 ],
566 [
567 "New Caledonia (+11:00)",
568 "New Caledonia"
569 ],
570 [
571 "Solomon Is. (+11:00)",
572 "Solomon Is."
573 ],
574 [
575 "Srednekolymsk (+11:00)",
576 "Srednekolymsk"
577 ],
578 [
579 "Auckland (+12:00)",
580 "Auckland"
581 ],
582 [
583 "Fiji (+12:00)",
584 "Fiji"
585 ],
586 [
587 "Kamchatka (+12:00)",
588 "Kamchatka"
589 ],
590 [
591 "Marshall Is. (+12:00)",
592 "Marshall Is."
593 ],
594 [
595 "Wellington (+12:00)",
596 "Wellington"
597 ],
598 [
599 "Chatham Is. (+12:45)",
600 "Chatham Is."
601 ],
602 [
603 "Nuku'alofa (+13:00)",
604 "Nuku'alofa"
605 ],
606 [
607 "Samoa (+13:00)",
608 "Samoa"
609 ],
610 [
611 "Tokelau Is. (+13:00)",
612 "Tokelau Is."
613 ]
614 ]
615 },
616 {
617 "name":"data_center",
618 "type":"string",
619 "optional":true,
620 "label":"Data center",
621 "hint":"You can find this at the end of your Zoho URL 'https://accounts.zoho.[Data center]'. Default value: 'Others(com)'",
622 "pick_list":[
623 [
624 "China(cn)",
625 "cn"
626 ],
627 [
628 "Europe(eu)",
629 "eu"
630 ],
631 [
632 "Others(com)",
633 "com"
634 ]
635 ],
636 "default":"com"
637 }
638 ]
639 }

Zoom

Provider value:

1"provider": "zoom"

ZoomInfo

Provider value:

1"provider": "zoom_info"

Zuora

Provider value:

1"provider": "zuora"
1 {
2 "oauth":false,
3 "personalization":false,
4 "input":[
5 {
6 "name":"client_id",
7 "type":"string",
8 "optional":false,
9 "label":"Client ID",
10 "hint":"Click <a href=\"https://knowledgecenter.zuora.com/CF_Users_and_Administrators/A_Administrator_Settings/Manage_Users#Create_an_OAuth_Client_for_a_User\" target=\"_blank\">here</a> for client ID"
11 },
12 {
13 "name":"client_secret",
14 "type":"string",
15 "optional":false,
16 "label":"Client secret",
17 "hint":"Click <a href=\"https://knowledgecenter.zuora.com/CF_Users_and_Administrators/A_Administrator_Settings/Manage_Users#Create_an_OAuth_Client_for_a_User\" target=\"_blank\">here</a> for client secret"
18 },
19 {
20 "name":"environment",
21 "type":"string",
22 "optional":false,
23 "label":"Environment",
24 "hint":"Click <a href=\"https://jp.zuora.com/api-reference/#section/Introduction/Endpoints\" target=\"_blank\">here</a> for environment details",
25 "pick_list":[
26 [
27 "US Production",
28 "rest"
29 ],
30 [
31 "US Sandbox",
32 "rest.apisandbox"
33 ],
34 [
35 "US Performance Test",
36 "rest.pt1"
37 ],
38 [
39 "EU Production",
40 "rest.eu"
41 ],
42 [
43 "EU Sandbox",
44 "rest.sandbox.eu"
45 ]
46 ]
47 },
48 {
49 "name":"version",
50 "type":"string",
51 "optional":false,
52 "label":"Zuora SOAP API Version",
53 "hint":"WSDL Service Version for example, 91.0, Find the <a href=\"https://knowledgecenter.zuora.com/DC_Developers/G_SOAP_API/Zuora_SOAP_API_Version_History\" target=\"_blank\">latest version</a>."
54 }
55 ]
56 }

Zuora for Salesforce

Provider value:

1"provider": "zuora_forcecom"
1 {
2 "oauth":true,
3 "personalization":true,
4 "input":[
5 {
6 "name":"sandbox",
7 "type":"boolean",
8 "optional":true,
9 "label":"Sandbox",
10 "hint":"Is this connecting to a sandbox account?",
11 "default":"false"
12 }
13 ]
14 }