# プラットフォーム API コネクションパラメータリファレンス

このリファレンスには、Workato のプラットフォーム API を介してコネクションを設定するために必要なコネクションパラメータが含まれています。

# プロバイダー値

すべてのコネクターには、そのコネクターのタイプを一意に識別する provider 値が割り当てられます。例 : Salesforce コネクターには provider: salesforce 値が割り当てられます。

プロバイダー値は、以下の場合に指定する必要があります。

  • プラットフォーム API を使用したコネクションの作成 :

    curl  -X POST https://www.workato.com/api/managed_users/98178/connection \
           -H 'x-user-email: <email>' \
           -H 'x-user-token: <token>' \
           -H 'Content-Type: application/json' \
           -d  '{
                  "name": "Salesforce",
                  "provider": "salesforce"
                }'
    
  • カスタマーアカウントに対するアプリアクセスの定義。コネクターの provider 値は、アカウントからアクセス可能なコネクターのリストを定義するための whitelisted_apps パラメータに含めることができます。

    例 : このリクエストでは、Salesforce と NetSuite にしかアクセスできないアカウントが作成されます。

    curl  -X POST https://www.workato.com/api/managed_users \
           -H 'x-user-email: <email>' \
           -H 'x-user-token: <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)"
               }'
    

# コネクションパラメータ

次のパラメータは、特定のコネクターの設定を示しています。

項目 説明
oauth boolean true の場合は、コネクターに OAuth が必要です。
personalization boolean true の場合は、コネクションを Workbot ユースケース内のパーソナライズされたコネクションとして使用できます。
secure_tunnel boolean true の場合は、コネクションをオンプレミスシステムに接続するために使用できます。
input array コネクターのコネクションパラメータを記述するオブジェクトの配列。空の場合は、設定が必要ありません。

# 例 - 設定が不要

設定を必要としないコネクターの例を以下に示します。

{
    "oauth": true,
    "personalization": true,
    "input":
    []
}

# 例 - 設定が必要

AirTable コネクターの設定を以下に示します。

{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "api_key",
            "type": "string",
            "optional": false,
            "label": "API key",
            "hint": "You can find the API Key on the <a target='_blank' href='https://airtable.com/account'>account</a> page."
        }
    ]
}

# コネクター別の設定パラメータ

次の表に、各コネクターの設定パラメータを示します。

: コネクションを必要とするコネクターのみが列挙されています。

コネクター プロバイダー 設定 JSON
2Checkout two_checkout
Active Directory active_directory
JSON の表示
{
   "oauth":false,
   "personalization":false,
   "input":[
      {
         "name":"company_identifier",
         "type":"string",
         "label":"Company identifier"
      },
      {
         "name":"ftp_host",
         "type":"string",
         "label":"FTP host"
      },
      {
         "name":"ftp_user",
         "type":"string",
         "label":"FTP user"
      },
      {
         "name":"ftp_password",
         "type":"string",
         "label":"FTP password"
      },
      {
         "name":"pgp_key",
         "type":"string",
         "label":"PGP public key"
      }
   ]
}
Adobe Experience Manager adobe_experience_manager
ADP 2 adp
JSON の表示
{
   "oauth":false,
   "personalization":false,
   "input":[
      {
         "name":"company_identifier",
         "type":"string",
         "label":"Company identifier"
      },
      {
         "name":"ftp_host",
         "type":"string",
         "label":"FTP host"
      },
      {
         "name":"ftp_user",
         "type":"string",
         "label":"FTP user"
      },
      {
         "name":"ftp_password",
         "type":"string",
         "label":"FTP password"
      },
      {
         "name":"pgp_key",
         "type":"string",
         "label":"PGP public key"
      }
   ]
}
ADP Workforce Now adp7
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "sandbox",
            "type": "boolean",
            "optional": true,
            "label": "Sandbox",
            "default": "false"
        },
        {
            "name": "client_id",
            "type": "string",
            "label": "Client ID"
        },
        {
            "name": "client_secret",
            "type": "string",
            "label": "Client secret"
        },
        {
            "name": "ssl_client_cert",
            "type": "string",
            "label": "SSL client certificate"
        },
        {
            "name": "ssl_client_key",
            "type": "string",
            "label": "SSL client key"
        },
        {
            "name": "ssl_key_passphrase",
            "type": "string",
            "optional": true,
            "label": "Custom CA certificate"
        },
        {
            "name": "unmask",
            "type": "boolean",
            "optional": true,
            "label": "Unmask sensitive information?",
            "hint": "If <b>Yes</b>, sensitive information will be returned in the response. If <b>No</b>, it will not be returned.",
            "default": "false"
        }
    ]
}
Airbrake airbrake
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "api_key",
            "type": "string",
            "optional": true,
            "label": "Api key"
        }
    ]
}
AirREGI air_regi
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Airtable airtable
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "api_key",
            "type": "string",
            "optional": false,
            "label": "API key",
            "hint": "You can find the API Key on the <a target='_blank' href='https://airtable.com/account'>account</a> page."
        }
    ]
}
Amazon Cognito aws_cognito
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "api_key",
            "type": "string",
            "optional": false,
            "label": "API key",
            "hint": "You can find the API Key on the <a target='_blank' href='https://airtable.com/account'>account</a> page."
        }
    ]
}
Amazon Lex amazon_lex_nlu
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "bot_name",
            "type": "string",
            "label": "Bot name",
            "hint": "Amazon Lex Bot Name"
        },
        {
            "name": "bot_alias",
            "type": "string",
            "label": "Bot alias",
            "hint": "Amazon Lex Bot Alias"
        },
        {
            "name": "region",
            "type": "string",
            "label": "Region",
            "hint": "Region"
        },
        {
            "name": "access_key_id",
            "type": "string",
            "label": "Access key ID",
            "hint": "IAM User: Access Key Id (AWS managed policy \"AmazonLexRunBotsOnly\" should be attached to the user)"
        },
        {
            "name": "secret_access_key",
            "type": "string",
            "label": "Secret access key",
            "hint": "IAM User: Secret Access Key"
        }
    ]
}
Amazon S3 amazon_s3
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "auth_type",
            "type": "string",
            "optional": false,
            "label": "Authorization type",
            "hint": "            Learn more about Amazon S3 authorization support <a href=\"http://docs.workato.com/connectors/s3.html#how-to-connect-to-amazon-s3-on-workato\" target=\"_blank\">here</a>.\n",
            "pick_list":
            [
                [
                    "Access key",
                    "key_secret"
                ],
                [
                    "IAM role",
                    "role_based"
                ]
            ],
            "default": "key_secret"
        },
        {
            "name": "assume_role",
            "type": "string",
            "optional": false,
            "label": "IAM role ARN",
            "hint": "Follow <a href=\"http://docs.workato.com/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"
        },
        {
            "name": "api_key",
            "type": "string",
            "optional": false,
            "label": "Access key ID",
            "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."
        },
        {
            "name": "secret_key",
            "type": "string",
            "optional": false,
            "label": "Secret access key",
            "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."
        },
        {
            "name": "external_id",
            "type": "string",
            "optional": true,
            "label": "External ID",
            "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"
        },
        {
            "name": "restrict_to_bucket",
            "type": "string",
            "optional": true,
            "label": "Restrict to bucket",
            "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"
        },
        {
            "name": "restrict_to_path",
            "type": "string",
            "optional": true,
            "label": "Restrict to path",
            "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"
        },
        {
            "name": "region",
            "type": "string",
            "optional": false,
            "label": "Region",
            "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."
        },
        {
            "name": "download_threads",
            "type": "string",
            "optional": true,
            "label": "Download threads",
            "hint": "Use to boost download speed. One thread is used by default."
        }
    ]
}
Amazon S3 (Secondary) amazon_s3_secondary
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "auth_type",
            "type": "string",
            "optional": false,
            "label": "Authorization type",
            "hint": "            Learn more about Amazon S3 authorization support <a href=\"http://docs.workato.com/connectors/s3.html#how-to-connect-to-amazon-s3-on-workato\" target=\"_blank\">here</a>.\n",
            "pick_list":
            [
                [
                    "Access key",
                    "key_secret"
                ],
                [
                    "IAM role",
                    "role_based"
                ]
            ],
            "default": "key_secret"
        },
        {
            "name": "assume_role",
            "type": "string",
            "optional": false,
            "label": "IAM role ARN",
            "hint": "Follow <a href=\"http://docs.workato.com/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"
        },
        {
            "name": "api_key",
            "type": "string",
            "optional": false,
            "label": "Access key ID",
            "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."
        },
        {
            "name": "secret_key",
            "type": "string",
            "optional": false,
            "label": "Secret access key",
            "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."
        },
        {
            "name": "external_id",
            "type": "string",
            "optional": true,
            "label": "External ID",
            "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"
        },
        {
            "name": "restrict_to_bucket",
            "type": "string",
            "optional": true,
            "label": "Restrict to bucket",
            "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"
        },
        {
            "name": "restrict_to_path",
            "type": "string",
            "optional": true,
            "label": "Restrict to path",
            "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"
        },
        {
            "name": "region",
            "type": "string",
            "optional": false,
            "label": "Region",
            "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."
        },
        {
            "name": "download_threads",
            "type": "string",
            "optional": true,
            "label": "Download threads",
            "hint": "Use to boost download speed. One thread is used by default."
        }
    ]
}
Amazon SNS aws_sns
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "access_key_id",
            "type": "string",
            "optional": false,
            "label": "Access Key ID",
            "hint": "Select your AWS account name > Security Credentials > Users. Get API key from existing user or create user"
        },
        {
            "name": "secret_access_key",
            "type": "string",
            "optional": false,
            "label": "Secret Access Key",
            "hint": "Select your AWS account name > Security Credentials > Users. Get secret key from existing user or create user"
        },
        {
            "name": "region",
            "type": "string",
            "optional": false,
            "label": "Region",
            "hint": "If your account url is https://eu-west-1.console.aws.amazon.com then use eu-west-1 as the region"
        }
    ]
}
Amazon SQS aws_sqs
AMcards amcards
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "access_token",
            "type": "string",
            "optional": false,
            "label": "Access token",
            "hint": "Click <a target='_blank' href=https://amcards.com/profile/generate-access-token>here</a> to get access token"
        }
    ]
}
Anaplan anaplan
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "authentication_type",
            "type": "string",
            "label": "Authentication type",
            "pick_list":
            [
                [
                    "Certificate authentication",
                    "certificate_auth"
                ],
                [
                    "Username/password",
                    "basic_auth"
                ]
            ],
            "default": "basic_auth"
        },
        {
            "name": "username",
            "type": "string",
            "optional": false,
            "label": "Username"
        },
        {
            "name": "certificate",
            "type": "string",
            "optional": false,
            "label": "Certificate",
            "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"
        },
        {
            "name": "private_key",
            "type": "string",
            "optional": false,
            "label": "Private key",
            "hint": "Enter a PEM-format private key string."
        },
        {
            "name": "password",
            "type": "string",
            "optional": false,
            "label": "Password"
        }
    ]
}
Apache Kafka kafka
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "profile",
            "type": "string",
            "label": "On-prem Kafka connection profile"
        }
    ]
}
Apttus apttus
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "sandbox",
            "type": "boolean",
            "optional": true,
            "label": "Sandbox",
            "hint": "Is this connecting to a sandbox account?",
            "default": "false"
        }
    ]
}
Apttus Intelligent Cloud apttus_intelligent_cloud
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "subdomain",
            "type": "string",
            "optional": false,
            "label": "Subdomain",
            "hint": "Your AIC cloud name as found in your apttus AIC URL"
        },
        {
            "name": "client_id",
            "type": "string",
            "optional": false,
            "label": "Client ID"
        },
        {
            "name": "client_secret",
            "type": "string",
            "optional": false,
            "label": "Client secret"
        },
        {
            "name": "directory_id",
            "type": "string",
            "optional": false,
            "label": "Directory ID",
            "hint": "Your directory ID can be found <a target=\"_blank\" href=\"https://portal.azure.com/#blade/Microsoft_AAD_IAM/ActiveDirectoryMenuBlade/Properties\">here</a>."
        }
    ]
}
Ariba ariba
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "network_user_id",
            "type": "string",
            "label": "Network user ID"
        },
        {
            "name": "shared_secret",
            "type": "string",
            "label": "Shared secret"
        },
        {
            "name": "buyer_network_user_id",
            "type": "string",
            "label": "Buyer network user ID"
        },
        {
            "name": "purchase_order_url",
            "type": "string",
            "label": "Purchase order URL",
            "hint": "URL for submitting the purchase order cXML",
            "default": "http://www.workato.com/ariba/purchase_order/1/78"
        }
    ]
}
Asana asana
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
AscentERP ascent_erp
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "sandbox",
            "type": "boolean",
            "optional": true,
            "label": "Sandbox",
            "hint": "Is this connecting to a sandbox account?",
            "default": "false"
        }
    ]
}
AWS Cognito aws_cognito
AWS Lambda aws_lambda
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "api_key",
            "type": "string",
            "optional": false,
            "label": "Access Key ID",
            "hint": "Select your AWS account name > Security Credentials > Users. Get API key from existing user or create user (with AWSLambdaFullAccess permission) "
        },
        {
            "name": "secret_key",
            "type": "string",
            "optional": false,
            "label": "Secret Access Key",
            "hint": "Select your AWS account name > Security Credentials > Users. Get secret key from existing user or create user (with AWSLambdaFullAccess permission) "
        },
        {
            "name": "region",
            "type": "string",
            "optional": false,
            "label": "Region",
            "hint": "If your account url is https://eu-west-1.console.aws.amazon.com then use eu-west-1 as the region"
        }
    ]
}
AWS SNS aws_sns
Azure Blob Storage azure_blob_storage
Azure Monitor azure_monitor
BambooHR bamboohr
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "api_token",
            "type": "string",
            "label": "API token",
            "hint": "Can be found at https://[sub domain].bamboohr.com/settings/permissions/api.php"
        },
        {
            "name": "subdomain",
            "type": "string",
            "label": "Sub-domain",
            "hint": "Your Bamboo HR subdomain is most often your company name"
        }
    ]
}
Basecamp 2 basecamp
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "account_id",
            "type": "integer",
            "label": "Account ID",
            "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."
        }
    ]
}
Bigtincan bigtincan
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Bill.com bill
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "userName",
            "type": "string",
            "label": "User name",
            "hint": "Email ID of the user"
        },
        {
            "name": "password",
            "type": "string",
            "label": "Password",
            "hint": "Password for login"
        },
        {
            "name": "orgId",
            "type": "string",
            "label": "organization ID",
            "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='"
        }
    ]
}
BIM 360 bim360
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Bitbucket bitbucket
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "hostname",
            "type": "string",
            "optional": true,
            "label": "Bitbucket hostname",
            "hint": "Host (and optional port) of your server. Eg. http://localhost:7990/rest/api"
        }
    ]
}
Box box
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "advanced_settings",
            "type": "object",
            "optional": true,
            "label": "Advanced settings",
            "properties":
            [
                {
                    "name": "api_scope",
                    "type": "string",
                    "optional": true,
                    "label": "Requested permissions (Oauth scopes)",
                    "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"
                }
            ]
        }
    ]
}
BrickFTP brick_ftp
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "api_key",
            "type": "string",
            "label": "API Key",
            "hint": "Enable REST and get key at https://<b>yoursite</b>.brickftp.com/sites/edit?group=api"
        }
    ]
}
Bynder bynder
Callable recipes by Workato workato_service
CandidateZip candidate_zip
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Capsule CRM capsulecrm
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "api_token",
            "type": "string",
            "label": "API token",
            "hint": "Can be found at https://(your subdomain).capsulecrm.com/users/api"
        },
        {
            "name": "subdomain",
            "type": "string",
            "label": "Sub-domain",
            "hint": "Your Capsule CRM subdomain is most often your company name"
        }
    ]
}
Celonis celonis
Chargify chargify
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "api_key",
            "type": "string",
            "label": "API Key",
            "hint": "Can be generated from the 窶廣PI Access窶・tab of your seller dashboard"
        },
        {
            "name": "subdomain",
            "type": "string",
            "label": "Sub-domain",
            "hint": "Your Chargify subdomain is most often your company name"
        }
    ]
}
Charts by Workato graphs_and_charts
Chatter chatter
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Cisco Webex Teams cisco_spark
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Clearbit clearbit
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "api_key",
            "type": "string",
            "optional": true,
            "label": "Api key",
            "hint": "Can be found here: https://dashboard.clearbit.com/keys"
        }
    ]
}
Cloud Watch cloud_watch
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "api_key",
            "type": "string",
            "optional": false,
            "label": "Access Key ID",
            "hint": "Select your AWS account name-> My Security Credentials-> Users. Get API key from existing user or create user (with Amazon CloudWatch permission) "
        },
        {
            "name": "secret_key",
            "type": "string",
            "optional": false,
            "label": "Secret Access Key",
            "hint": "Select your AWS account name-> My Security Credentials-> Users. Get secret key from existing user or create user (with Amazon CloudWatch permission) "
        },
        {
            "name": "region",
            "type": "string",
            "optional": false,
            "label": "Region",
            "hint": "If your account url is https://eu-west-1.console.aws.amazon.com then use eu-west-1 as the region"
        }
    ]
}
Codeship codeship
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "api_key",
            "type": "string",
            "optional": false,
            "label": "API key",
            "hint": "Go to My Account->Account settings and get API key"
        }
    ]
}
Collection by Workato workato_smart_list
Concur concur
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "sandbox",
            "type": "boolean",
            "optional": true,
            "label": "Implementation instance",
            "hint": "Is this connecting to an implementation instance? <a href=\"https://docs.workato.com/connectors/concur.html\">Learn more</a>.",
            "default": "false"
        },
        {
            "name": "user_name",
            "type": "string",
            "label": "Username",
            "hint": "Specify the username or user ID."
        },
        {
            "name": "password",
            "type": "string",
            "label": "Password",
            "hint": "Password for login."
        },
        {
            "name": "location",
            "type": "string",
            "label": "Location",
            "hint": "Select the location of your implementation server.",
            "pick_list":
            [
                [
                    "US Implementation",
                    "us-impl"
                ],
                [
                    "EU Implementation",
                    "emea-impl"
                ]
            ]
        },
        {
            "name": "client_id",
            "type": "string",
            "label": "Client ID",
            "hint": "Client ID of your implementation application."
        },
        {
            "name": "client_secret",
            "type": "string",
            "label": "Client secret",
            "hint": "Client secret of your implementation application."
        }
    ]
}
Confluence confluence
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "subdomain",
            "type": "string",
            "optional": false,
            "label": "Confluence subdomain",
            "hint": "Your Jira Service Desk name as found in your URL. For on-premise instances, select an on-prem agent below."
        },
        {
            "name": "root_uri",
            "type": "string",
            "optional": false,
            "label": "Confluence root URI",
            "hint": "Root URI (protocol, optional port, hostname) of your Confluence host, for example, http://confluence.intranet.acme.com:7654"
        },
        {
            "name": "api_token_auth",
            "type": "number",
            "optional": true,
            "label": "API token authentication?",
            "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>.",
            "default": "false"
        },
        {
            "name": "email",
            "type": "string",
            "optional": false,
            "label": "Email"
        },
        {
            "name": "apitoken",
            "type": "string",
            "optional": false,
            "label": "API token",
            "hint": "            Get/create API tokens by going to <a href='https://id.atlassian.com/manage/api-tokens' target='_blank' ><b>id.atlassian.com</b></a> > <b>API tokens</b> > <b>Create API token</b>.\n"
        },
        {
            "name": "username",
            "type": "string",
            "optional": false,
            "label": "Username",
            "hint": "Your user name (not email)"
        },
        {
            "name": "password",
            "type": "string",
            "optional": false,
            "label": "Password"
        }
    ]
}
Confluence (Secondary) confluence_secondary
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "subdomain",
            "type": "string",
            "optional": false,
            "label": "Confluence subdomain",
            "hint": "Your Jira Service Desk name as found in your URL. For on-premise instances, select an on-prem agent below."
        },
        {
            "name": "root_uri",
            "type": "string",
            "optional": false,
            "label": "Confluence root URI",
            "hint": "Root URI (protocol, optional port, hostname) of your Confluence host, for example, http://confluence.intranet.acme.com:7654"
        },
        {
            "name": "api_token_auth",
            "type": "number",
            "optional": true,
            "label": "API token authentication?",
            "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>.",
            "default": "false"
        },
        {
            "name": "email",
            "type": "string",
            "optional": false,
            "label": "Email"
        },
        {
            "name": "apitoken",
            "type": "string",
            "optional": false,
            "label": "API token",
            "hint": "            Get/create API tokens by going to <a href='https://id.atlassian.com/manage/api-tokens' target='_blank' ><b>id.atlassian.com</b></a> > <b>API tokens</b> > <b>Create API token</b>.\n"
        },
        {
            "name": "username",
            "type": "string",
            "optional": false,
            "label": "Username",
            "hint": "Your user name (not email)"
        },
        {
            "name": "password",
            "type": "string",
            "optional": false,
            "label": "Password"
        }
    ]
}
Confluent Cloud confluent_cloud
Coupa coupa
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "host",
            "type": "string",
            "optional": false,
            "label": "Host",
            "hint": "Enter your Coupa URL.<br>Eg: https://<b>your-instance-name.coupacloud</b>.com"
        },
        {
            "name": "api_key",
            "type": "string",
            "optional": false,
            "label": "API key",
            "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."
        }
    ]
}
CSV by Workato csv_parser
cXML cxml
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "network_user_id",
            "type": "string",
            "label": "Network user ID"
        },
        {
            "name": "shared_secret",
            "type": "string",
            "label": "Shared secret"
        },
        {
            "name": "buyer_network_user_id",
            "type": "string",
            "label": "Buyer network user ID"
        },
        {
            "name": "purchase_order_url",
            "type": "string",
            "label": "Purchase order URL",
            "hint": "URL for submitting the purchase order cXML",
            "default": "http://www.workato.com/ariba/purchase_order/1/78"
        }
    ]
}
Deputy deputy
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
docparser docparser
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "api_key",
            "type": "string",
            "optional": false,
            "label": "API Key",
            "hint": "Go to Account -> API Access to get the API key"
        }
    ]
}
DocuSign docusign
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "demo",
            "type": "boolean",
            "optional": true,
            "label": "Demo",
            "hint": "Is this connecting to a demo account?",
            "default": "false"
        }
    ]
}
DocuSign (Secondary) docusign_secondary
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "demo",
            "type": "boolean",
            "optional": true,
            "label": "Demo",
            "hint": "Is this connecting to a demo account?",
            "default": "false"
        }
    ]
}
Dropbox dropbox
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Egnyte egnyte
Eloqua eloqua
Email by Workato email
eTapestry etapestry
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "loginId",
            "type": "string",
            "label": "Login ID"
        },
        {
            "name": "password",
            "type": "string",
            "label": "Password",
            "hint": "Password for login"
        }
    ]
}
Eventbrite event_brite
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Evernote evernote
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
everydayhero everydayhero
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Expensify expensify
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "partner_user_id",
            "type": "string",
            "label": "Partner user ID",
            "hint": "Generate user ID and secret in Expensify <a href=\"https://www.expensify.com/tools/integrations/\">integration settings</a>"
        },
        {
            "name": "partner_user_secret",
            "type": "string",
            "label": "Partner user secret"
        }
    ]
}
Facebook facebook
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Fairsail fairsail
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "sandbox",
            "type": "boolean",
            "optional": true,
            "label": "Sandbox",
            "hint": "Is this connecting to a sandbox account?",
            "default": "false"
        }
    ]
}
Feedly feedly
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Files by Workato file_connector
FinancialForce financialforce
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "sandbox",
            "type": "boolean",
            "optional": true,
            "label": "Sandbox",
            "hint": "Is this connecting to a sandbox account?",
            "default": "false"
        }
    ]
}
Force.com forcecom
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "sandbox",
            "type": "boolean",
            "optional": true,
            "label": "Sandbox",
            "hint": "Is this connecting to a sandbox account?",
            "default": "false"
        }
    ]
}
FreshBooks fresh_books
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "auth_token",
            "type": "string",
            "label": "Authentication Token",
            "hint": "From your FreshBooks page, My Account - FreshBooks API"
        },
        {
            "name": "subdomain",
            "type": "string",
            "label": "Subdomain",
            "hint": "Your account name as it appears in your FreshBooks web address, usually your company name"
        }
    ]
}
Freshdesk fresh_desk
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "api_key",
            "type": "string",
            "label": "API key",
            "hint": "You can find the API key under, \"User Profile\" drop-down (top right corner of your helpdesk) > Profile Settings > Your API Key"
        },
        {
            "name": "help_desk_name",
            "type": "string",
            "label": "Helpdesk name",
            "hint": "yourcompany.freshdesk.com"
        }
    ]
}
FTP/FTPS ftps
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "servertype",
            "type": "string",
            "label": "Server type",
            "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/security.html\" target=\"_blank\">Learn more</a>",
            "pick_list":
            [
                [
                    "FTP-S",
                    "FTP-S"
                ],
                [
                    "FTP",
                    "FTP"
                ]
            ],
            "default": "ftp-s"
        },
        {
            "name": "verify_cert",
            "type": "boolean",
            "optional": true,
            "label": "Verify cert",
            "hint": "Verify FTPS server certificate"
        },
        {
            "name": "ftps_conn",
            "type": "string",
            "optional": true,
            "label": "Ftps conn",
            "hint": "should be defined only for FTP-S",
            "pick_list":
            [
                [
                    "Explicit",
                    "Explicit"
                ],
                [
                    "Implicit",
                    "Implicit"
                ]
            ]
        },
        {
            "name": "hostname",
            "type": "string",
            "label": "Host name",
            "hint": "For example, companyname.sampleftp.com"
        },
        {
            "name": "username",
            "type": "string",
            "label": "Username"
        },
        {
            "name": "password",
            "type": "string",
            "label": "Password"
        }
    ]
}
FTP/FTPS (Secondary) ftps_secondary
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "servertype",
            "type": "string",
            "label": "Server type",
            "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/security.html\" target=\"_blank\">Learn more</a>",
            "pick_list":
            [
                [
                    "FTP-S",
                    "FTP-S"
                ],
                [
                    "FTP",
                    "FTP"
                ]
            ],
            "default": "ftp-s"
        },
        {
            "name": "verify_cert",
            "type": "boolean",
            "optional": true,
            "label": "Verify cert",
            "hint": "Verify FTPS server certificate"
        },
        {
            "name": "ftps_conn",
            "type": "string",
            "optional": true,
            "label": "Ftps conn",
            "hint": "should be defined only for FTP-S",
            "pick_list":
            [
                [
                    "Explicit",
                    "Explicit"
                ],
                [
                    "Implicit",
                    "Implicit"
                ]
            ]
        },
        {
            "name": "hostname",
            "type": "string",
            "label": "Host name",
            "hint": "For example, companyname.sampleftp.com"
        },
        {
            "name": "username",
            "type": "string",
            "label": "Username"
        },
        {
            "name": "password",
            "type": "string",
            "label": "Password"
        }
    ]
}
FullContact fullcontact
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "apiKey",
            "type": "string",
            "label": "API key",
            "hint": "<a href=\"https://portal.fullcontact.com/admin\" target=\"_blank\" rel=\"noopener\">How do I find my Fullcontact API key?</a>"
        }
    ]
}
Funraise funraise
G2 g2_crowd
GitHub github
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Gmail gmail
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "read_email_permission",
            "type": "boolean",
            "optional": true,
            "label": "Read email permission",
            "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/connectors/gmail.html\" target=\"_blank\">Learn more</a>\n"
        }
    ]
}
Gong.io gong
Google BigQuery google_big_query
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Google Calendar google_calendar
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Google Contacts google_contacts
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Google Dialogflow api_ai_nlu
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "project_name",
            "type": "string",
            "optional": true,
            "label": "Project name",
            "hint": "Can be found at the generated json file."
        },
        {
            "name": "client_access_token",
            "type": "string",
            "label": "Client access token",
            "hint": "Create a client access token using this <a target='_blank' href='https://docs.workato.com/connectors/dialogflow.html'>link</a>."
        }
    ]
}
Google Drive google_drive
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Google People google_people
Google Sheets google_sheets
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Google Speech to Text google_speech_to_text
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Google Text to Speech google_text_to_speech
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Google Translate google_translate
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Google Vision google_vision
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Google Workspace google_workspace
Goombal goombal
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "Email",
            "type": "string",
            "label": "Email"
        },
        {
            "name": "Password",
            "type": "string",
            "label": "Password"
        },
        {
            "name": "instance",
            "type": "string",
            "optional": true,
            "label": "Instance",
            "hint": "Leave empty to default to <b>app</b>"
        }
    ]
}
GotoWebinar goto_webinar
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Greenhouse greenhouse
gRPC grpc
HipChat hipchat
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "subdomain",
            "type": "string",
            "optional": false,
            "label": "Subdomain",
            "hint": "If your HipChat url is https://abc.hipchat.com, then subdomain is 'abc'"
        },
        {
            "name": "auth_token",
            "type": "string",
            "optional": false,
            "label": "Access token",
            "hint": "Go to yourdomain.hipchat.com/account/api and create new token. Select \"View Group\" or \"View Room\" as one of the scopes"
        }
    ]
}
HTTP (OAuth2) rest_oauth
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "oauth2_auth_url",
            "type": "string",
            "label": "OAuth2 auth URL",
            "hint": "Use <b>https://www.workato.com/oauth/callback</b> as callback url. <a href='https://docs.workato.com/developing-connectors/http/connection-setup.html#authentication-type-oauth2-authorization-code-grant'\n                                    target='_blank'>Learn how to authenticate</a>"
        },
        {
            "name": "oauth2_token_url",
            "type": "string",
            "label": "OAuth2 token URL"
        },
        {
            "name": "oauth2_client_id",
            "type": "string",
            "label": "OAuth2 client ID"
        },
        {
            "name": "oauth2_client_secret",
            "type": "string",
            "label": "OAuth2 client secret"
        }
    ]
}
HTTP rest
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "auth_type",
            "type": "string",
            "label": "Authentication type",
            "hint": "Select an authentication method. <a href=\"https://docs.workato.com/developing-connectors/http/connection-setup.html\" target=\"_blank\">Learn how to authenticate</a>",
            "pick_list":
            [
                [
                    "None",
                    "no_auth"
                ],
                [
                    "Basic",
                    "basic"
                ],
                [
                    "Header auth",
                    "headers"
                ],
                [
                    "Query params",
                    "query"
                ],
                [
                    "On-prem NTLM",
                    "ntlm"
                ],
                [
                    "OAuth 2 (authorization code grant)",
                    "oauth2_auth_code_grant"
                ],
                [
                    "OAuth 2 (client credentials grant)",
                    "oauth2_client_credentials_grant"
                ],
                [
                    "Custom",
                    "custom"
                ]
            ]
        },
        {
            "name": "profile",
            "type": "string",
            "label": "On-prem NTLM profile",
            "hint": "NTLM Profile name given in the on-prem agent's <b>config.yml</b> file."
        },
        {
            "name": "basic_user",
            "type": "string",
            "optional": true,
            "label": "Basic auth user"
        },
        {
            "name": "basic_password",
            "type": "string",
            "optional": true,
            "label": "Basic auth password"
        },
        {
            "name": "header_auth",
            "type": "string",
            "optional": true,
            "label": "Header authorization",
            "hint": "Add custom auth headers, one per line, for example, <b>X-API-Token: secret42</b>"
        },
        {
            "name": "get_param_auth",
            "type": "string",
            "optional": true,
            "label": "GET-params authorization",
            "hint": "Add custom GET parameters, one per line, for example, <b>token=secret42</b>"
        },
        {
            "name": "oauth2_auth_url",
            "type": "string",
            "label": "OAuth2 authorization URL",
            "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/developing-connectors/http/connection-setup.html#authentication-type-oauth2-authorization-code-grant'\n                 target='_blank'>Learn how to authenticate</a>"
        },
        {
            "name": "oauth2_token_url",
            "type": "string",
            "label": "OAuth2 token URL"
        },
        {
            "name": "oauth2_client_id",
            "type": "string",
            "label": "OAuth2 client ID"
        },
        {
            "name": "oauth2_client_secret",
            "type": "string",
            "label": "OAuth2 client secret"
        },
        {
            "name": "param_type",
            "type": "string",
            "optional": true,
            "label": "How does the API require credentials to be sent to request a token?",
            "hint": "Send client ID and secret in token request body or as a base64 encoded string in the header?",
            "pick_list":
            [
                [
                    "Header",
                    "basic"
                ],
                [
                    "Body",
                    "payload"
                ]
            ]
        },
        {
            "name": "ssl_params",
            "type": "boolean",
            "optional": true,
            "label": "Use client SSL certificate",
            "default": "false"
        },
        {
            "name": "ssl_client_cert",
            "type": "string",
            "optional": true,
            "label": "SSL client certificate"
        },
        {
            "name": "ssl_client_key",
            "type": "string",
            "optional": true,
            "label": "SSL client key"
        },
        {
            "name": "ssl_ca_cert",
            "type": "string",
            "optional": true,
            "label": "Custom CA certificate"
        }
    ]
}
HTTP (Secondary) rest_secondary
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "auth_type",
            "type": "string",
            "label": "Authentication type",
            "hint": "Select an authentication method. <a href=\"https://docs.workato.com/developing-connectors/http/connection-setup.html\" target=\"_blank\">Learn how to authenticate</a>",
            "pick_list":
            [
                [
                    "None",
                    "no_auth"
                ],
                [
                    "Basic",
                    "basic"
                ],
                [
                    "Header auth",
                    "headers"
                ],
                [
                    "Query params",
                    "query"
                ],
                [
                    "On-prem NTLM",
                    "ntlm"
                ],
                [
                    "OAuth 2 (authorization code grant)",
                    "oauth2_auth_code_grant"
                ],
                [
                    "OAuth 2 (client credentials grant)",
                    "oauth2_client_credentials_grant"
                ],
                [
                    "Custom",
                    "custom"
                ]
            ]
        },
        {
            "name": "profile",
            "type": "string",
            "label": "On-prem NTLM profile",
            "hint": "NTLM Profile name given in the on-prem agent's <b>config.yml</b> file."
        },
        {
            "name": "basic_user",
            "type": "string",
            "optional": true,
            "label": "Basic auth user"
        },
        {
            "name": "basic_password",
            "type": "string",
            "optional": true,
            "label": "Basic auth password"
        },
        {
            "name": "header_auth",
            "type": "string",
            "optional": true,
            "label": "Header authorization",
            "hint": "Add custom auth headers, one per line, for example, <b>X-API-Token: secret42</b>"
        },
        {
            "name": "get_param_auth",
            "type": "string",
            "optional": true,
            "label": "GET-params authorization",
            "hint": "Add custom GET parameters, one per line, for example, <b>token=secret42</b>"
        },
        {
            "name": "oauth2_auth_url",
            "type": "string",
            "label": "OAuth2 authorization URL",
            "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/developing-connectors/http/connection-setup.html#authentication-type-oauth2-authorization-code-grant'\n                 target='_blank'>Learn how to authenticate</a>"
        },
        {
            "name": "oauth2_token_url",
            "type": "string",
            "label": "OAuth2 token URL"
        },
        {
            "name": "oauth2_client_id",
            "type": "string",
            "label": "OAuth2 client ID"
        },
        {
            "name": "oauth2_client_secret",
            "type": "string",
            "label": "OAuth2 client secret"
        },
        {
            "name": "param_type",
            "type": "string",
            "optional": true,
            "label": "How does the API require credentials to be sent to request a token?",
            "hint": "Send client ID and secret in token request body or as a base64 encoded string in the header?",
            "pick_list":
            [
                [
                    "Header",
                    "basic"
                ],
                [
                    "Body",
                    "payload"
                ]
            ]
        },
        {
            "name": "ssl_params",
            "type": "boolean",
            "optional": true,
            "label": "Use client SSL certificate",
            "default": "false"
        },
        {
            "name": "ssl_client_cert",
            "type": "string",
            "optional": true,
            "label": "SSL client certificate"
        },
        {
            "name": "ssl_client_key",
            "type": "string",
            "optional": true,
            "label": "SSL client key"
        },
        {
            "name": "ssl_ca_cert",
            "type": "string",
            "optional": true,
            "label": "Custom CA certificate"
        }
    ]
}
HubSpot hubspot
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "advanced_settings",
            "type": "object",
            "optional": true,
            "label": "Advanced settings",
            "properties":
            [
                {
                    "name": "scopes",
                    "type": "string",
                    "optional": true,
                    "label": "Scopes",
                    "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",
                    "default": "contacts"
                }
            ]
        }
    ]
}
IBM Watson Workspace ibm_workspace
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Infusionsoft infusionsoft
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Insightly insightly
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "api_key",
            "type": "string",
            "label": "Api key",
            "hint": "Click the dropdown at the top right corner of the home page. API KEY found under the 'User settings'"
        }
    ]
}
Instagram instagram
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Intercom intercom
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "user_ids",
            "type": "string",
            "optional": true,
            "label": "Example user IDs",
            "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"
        }
    ]
}
JavaScript js_eval
JDBC jdbc
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "profile",
            "type": "string",
            "label": "On-prem connection profile"
        },
        {
            "name": "schema_name",
            "type": "string",
            "optional": true,
            "label": "Schema"
        }
    ]
}
JDBC (Secondary) jdbc_secondary
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "profile",
            "type": "string",
            "label": "On-prem connection profile"
        },
        {
            "name": "schema_name",
            "type": "string",
            "optional": true,
            "label": "Schema"
        }
    ]
}
Jenkins jenkins
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "root_uri",
            "type": "string",
            "optional": false,
            "label": "Jenkins root URI",
            "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"
        },
        {
            "name": "username",
            "type": "string",
            "optional": false,
            "label": "Username"
        },
        {
            "name": "password",
            "type": "string",
            "optional": false,
            "label": "Password"
        }
    ]
}
Jira jira
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "host_name",
            "type": "string",
            "label": "Host name",
            "hint": "Refer to the URL of your Jira account and complete the above URL. For example, <b>workato.atlassian.net</b>"
        },
        {
            "name": "host_url",
            "type": "string",
            "label": "Host name with protocol",
            "hint": "Refer to the URL of your Jira account and specify the above URL.<br>for example, <b>http://workato.atlassian.net</b>"
        },
        {
            "name": "api_token_auth",
            "type": "boolean",
            "label": "API token authentication?",
            "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>.",
            "default": "false"
        },
        {
            "name": "email",
            "type": "string",
            "optional": true,
            "label": "Email"
        },
        {
            "name": "apitoken",
            "type": "string",
            "optional": true,
            "label": "API token",
            "hint": "             Get/create API tokens by going to <a href='https://id.atlassian.com' target='_blank' ><b>id.atlassian.com</b></a> > <b>API tokens</b> > <b>Create API token</b>.\n"
        }
    ]
}
Jira (Secondary) jira_secondary
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "host_name",
            "type": "string",
            "label": "Host name",
            "hint": "Refer to the URL of your Jira account and complete the above URL. For example, <b>workato.atlassian.net</b>"
        },
        {
            "name": "host_url",
            "type": "string",
            "label": "Host name with protocol",
            "hint": "Refer to the URL of your Jira account and specify the above URL.<br>for example, <b>http://workato.atlassian.net</b>"
        },
        {
            "name": "api_token_auth",
            "type": "boolean",
            "label": "API token authentication?",
            "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>.",
            "default": "false"
        },
        {
            "name": "email",
            "type": "string",
            "optional": true,
            "label": "Email"
        },
        {
            "name": "apitoken",
            "type": "string",
            "optional": true,
            "label": "API token",
            "hint": "             Get/create API tokens by going to <a href='https://id.atlassian.com' target='_blank' ><b>id.atlassian.com</b></a> > <b>API tokens</b> > <b>Create API token</b>.\n"
        }
    ]
}
JIRA Service Desk jira_service_desk
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "host_name",
            "type": "string",
            "label": "Host name",
            "hint": "Refer to the URL of your Jira account and complete the above URL. For example, <b>workato.atlassian.net</b>"
        },
        {
            "name": "host_url",
            "type": "string",
            "label": "Host name with protocol",
            "hint": "Refer to the URL of your Jira account and specify the above URL.<br>for example, <b>http://workato.atlassian.net</b>"
        },
        {
            "name": "api_token_auth",
            "type": "boolean",
            "label": "API token authentication?",
            "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>.",
            "default": "false"
        },
        {
            "name": "email",
            "type": "string",
            "optional": true,
            "label": "Email"
        },
        {
            "name": "apitoken",
            "type": "string",
            "optional": true,
            "label": "API token",
            "hint": "             Get/create API tokens by going to <a href='https://id.atlassian.com' target='_blank' ><b>id.atlassian.com</b></a> > <b>API tokens</b> > <b>Create API token</b>.\n"
        }
    ]
}
JMS jms
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "profile",
            "type": "string",
            "label": "On-prem JMS connection profile"
        }
    ]
}
JobScience jobscience
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "sandbox",
            "type": "boolean",
            "optional": true,
            "label": "Sandbox",
            "hint": "Is this connecting to a sandbox account?",
            "default": "false"
        }
    ]
}
Jobvite jobvite
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "api_key",
            "type": "string",
            "label": "API Key",
            "hint": "Enter the <b>Api Key</b> from jobvite."
        },
        {
            "name": "secret",
            "type": "string",
            "label": "Secret",
            "hint": "Enter the <b>Secret</b> from jobvite."
        },
        {
            "name": "use_staging",
            "type": "boolean",
            "label": "Use Staging",
            "hint": "If selected, staging jobvite instance will be used",
            "default": "false"
        },
        {
            "name": "use_v2",
            "type": "boolean",
            "optional": true,
            "label": "Use V2 API",
            "hint": "If selected, V2 version will be used",
            "default": "false"
        }
    ]
}
JSON parser by Workato json_parser
JSON Web Token (JWT) jwt
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "alg",
            "type": "string",
            "label": "Signing algorithm",
            "hint": "Select the JWT signing algorithm",
            "pick_list":
            [
                [
                    "HMAC using SHA-256",
                    "HS256"
                ],
                [
                    "HMAC using SHA-384",
                    "HS384"
                ],
                [
                    "HMAC using SHA-512",
                    "HS512"
                ],
                [
                    "RSA using SHA-256",
                    "RS256"
                ],
                [
                    "RSA using SHA-384",
                    "RS384"
                ],
                [
                    "RSA using SHA-512",
                    "RS512"
                ]
            ],
            "default": "HS256"
        },
        {
            "name": "hmac_secret",
            "type": "string",
            "optional": true,
            "label": "HMAC shared secret",
            "hint": "Enter the shared HMAC secret(min 32 characters)"
        },
        {
            "name": "public_key",
            "type": "string",
            "optional": true,
            "label": "Public key",
            "hint": "                                Learn how to generate a pair of Public key and Private key\n                                <a href=\"https://docs.workato.com/features/pgp-encryption.html\" target=\"_blank\">here</a>.\n"
        },
        {
            "name": "private_key",
            "type": "string",
            "optional": true,
            "label": "Private key",
            "hint": "                                 Learn how to generate a pair of Public key and Private key\n                                 <a href=\"https://docs.workato.com/features/pgp-encryption.html\" target=\"_blank\">here</a>.\n"
        },
        {
            "name": "passphrase",
            "type": "string",
            "optional": true,
            "label": "Passphrase",
            "hint": "Passphrase for encrypted private key"
        }
    ]
}
JumpCloud jump_cloud
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "api_key",
            "type": "string",
            "optional": false,
            "label": "API key",
            "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 API key."
        },
        {
            "name": "org_id",
            "type": "string",
            "optional": true,
            "label": "Organization ID",
            "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 Organization ID."
        }
    ]
}
Kenandy kenandy
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "sandbox",
            "type": "boolean",
            "optional": true,
            "label": "Sandbox",
            "hint": "Is this connecting to a sandbox account?",
            "default": "false"
        }
    ]
}
Kizen kizen
Knack knack
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "app_id",
            "type": "string",
            "optional": false,
            "label": "Application ID",
            "hint": "Hover over gear icon, Select API & Code -> get Application ID"
        },
        {
            "name": "api_key",
            "type": "string",
            "optional": false,
            "label": "API Key",
            "hint": "Hover over gear icon, Select API & Code -> get API Key"
        }
    ]
}
Librato librato
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "username",
            "type": "string",
            "optional": false,
            "label": "Username",
            "hint": "Go to Account Settings->API Token. GET token. eg: abc@efg.com"
        },
        {
            "name": "password",
            "type": "string",
            "optional": false,
            "label": "Password or personal API key",
            "hint": "If its API key, Go to Account Settings->API Token. GET API Key"
        }
    ]
}
LinkedIn linkedin
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Linked objects by Workato linked_objects
Lists by Workato workato_list
Logger by Workato logger
Lookup tables by Workato lookup_table
Magento 2 magento
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "server",
            "type": "string",
            "optional": false,
            "label": "Server domain",
            "hint": "Enter your full URL, for example, <b>http://mymagentostore.com</b>"
        },
        {
            "name": "username",
            "type": "string",
            "optional": false,
            "label": "Username",
            "hint": "If account type is admin, enter username. Otherwise, enter email address"
        },
        {
            "name": "account_type",
            "type": "string",
            "optional": false,
            "label": "Account type",
            "hint": "Select if your connected account is an admin or non-admin account",
            "pick_list":
            [
                [
                    "admin",
                    "admin"
                ],
                [
                    "customer",
                    "customer"
                ]
            ]
        },
        {
            "name": "password",
            "type": "string",
            "optional": false,
            "label": "Password"
        }
    ]
}
MailChimp mailchimp
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Mapper by Workato workato_mapper
Marketo marketo
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "endpoint",
            "type": "string",
            "label": "REST Endpoint",
            "hint": "Admin/Web Services/REST API - more <a href=\"http://developers.marketo.com/documentation/rest/endpoint-url/\">here</a>."
        },
        {
            "name": "client_id",
            "type": "string",
            "label": "Custom Service client ID",
            "hint": "To create a Marketo custom service see <a href=\"http://developers.marketo.com/documentation/rest/custom-service/\">this</a>."
        },
        {
            "name": "client_secret",
            "type": "string",
            "label": "Custom Service client secret"
        }
    ]
}
Marketo (Secondary) marketo_secondary
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "endpoint",
            "type": "string",
            "label": "REST Endpoint",
            "hint": "Admin/Web Services/REST API - more <a href=\"http://developers.marketo.com/documentation/rest/endpoint-url/\">here</a>."
        },
        {
            "name": "client_id",
            "type": "string",
            "label": "Custom Service client ID",
            "hint": "To create a Marketo custom service see <a href=\"http://developers.marketo.com/documentation/rest/custom-service/\">this</a>."
        },
        {
            "name": "client_secret",
            "type": "string",
            "label": "Custom Service client secret"
        }
    ]
}
Message template by Workato workato_template
Microsoft Dynamics 365 microsoft_dynamics_crm
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "subdomain",
            "type": "string",
            "label": "Subdomain",
            "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"
        },
        {
            "name": "account_type",
            "type": "string",
            "label": "Account type",
            "pick_list":
            [
                [
                    "On premise",
                    "onpremises"
                ],
                [
                    "Cloud",
                    "online"
                ]
            ]
        },
        {
            "name": "adfs_name",
            "type": "string",
            "optional": true,
            "label": "AD domain name",
            "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"
        },
        {
            "name": "client_id",
            "type": "string",
            "label": "Client ID",
            "hint": "Click <a target='_blank' href=http://docs.workato.com/connectors/dynamics-crm.html>here</a> to know how to get client ID"
        },
        {
            "name": "client_secret",
            "type": "string",
            "optional": true,
            "label": "Client secret"
        }
    ]
}
Microsoft Sharepoint microsoft_sharepoint
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "subdomain",
            "type": "string",
            "optional": false,
            "label": "Subdomain",
            "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>"
        },
        {
            "name": "domain",
            "type": "string",
            "label": "Domain",
            "hint": "Enter full URL of your Sharepoint domain. <b>for example, https://company-name.sharepoint.com</b>."
        },
        {
            "name": "client_id",
            "type": "string",
            "optional": true,
            "label": "Client ID",
            "hint": "<a href='https://docs.workato.com/connectors/sharepoint.html' target='_blank'>Click here</a> to learn how to generate Client ID and Client secret."
        },
        {
            "name": "client_secret",
            "type": "string",
            "optional": true,
            "label": "Client secret",
            "hint": "<a href='https://docs.workato.com/connectors/sharepoint.html' target='_blank'>Click here</a> to learn how to generate Client ID and Client secret."
        },
        {
            "name": "connection_siteurl",
            "type": "string",
            "optional": true,
            "label": "Site name",
            "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"
        }
    ]
}
Miro miro_board
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "client_id",
            "type": "string",
            "optional": false,
            "label": "Client ID"
        },
        {
            "name": "client_secret",
            "type": "string",
            "optional": false,
            "label": "Client secret"
        }
    ]
}
Mixpanel mixpanel
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "api_key",
            "type": "string",
            "label": "Api key",
            "hint": "Can be found in your account menu within the projects tab"
        },
        {
            "name": "api_secret",
            "type": "string",
            "label": "Api secret",
            "hint": "Can be found in your account menu within the projects tab"
        }
    ]
}
MySQL mysql
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "profile",
            "type": "string",
            "label": "On-prem connection profile"
        },
        {
            "name": "username",
            "type": "string",
            "label": "Username"
        },
        {
            "name": "password",
            "type": "string",
            "label": "Password"
        },
        {
            "name": "host",
            "type": "string",
            "label": "Host"
        },
        {
            "name": "port",
            "type": "string",
            "label": "Port"
        },
        {
            "name": "database",
            "type": "string",
            "label": "Database"
        }
    ]
}
MySQL (Secondary) mysql_secondary
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "profile",
            "type": "string",
            "label": "On-prem connection profile"
        },
        {
            "name": "username",
            "type": "string",
            "label": "Username"
        },
        {
            "name": "password",
            "type": "string",
            "label": "Password"
        },
        {
            "name": "host",
            "type": "string",
            "label": "Host"
        },
        {
            "name": "port",
            "type": "string",
            "label": "Port"
        },
        {
            "name": "database",
            "type": "string",
            "label": "Database"
        }
    ]
}
Namely namely
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "company",
            "type": "string",
            "label": "Company",
            "hint": "If your Namely url is https://acme.namely.com then use <b>acme</b> as value."
        }
    ]
}
NationBuilder nationbuilder
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "slug",
            "type": "string",
            "label": "Nation",
            "hint": "Your NationBuilder \"nation\", for example, <b>voteforpedro</b>.nationbuilder.com"
        }
    ]
}
NetSuite netsuite
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "account",
            "type": "string",
            "label": "Account ID",
            "hint": "Login as Administrator, then in <b>Setup Menu</b>, find in <b>Integration</b> > <b>Web Services Preferences</b>"
        },
        {
            "name": "tokenId",
            "type": "string",
            "label": "Token ID"
        },
        {
            "name": "tokenSecret",
            "type": "string",
            "label": "Token secret"
        },
        {
            "name": "timezone",
            "type": "string",
            "optional": true,
            "label": "Account timezone",
            "hint": "Needed for consistency with NetSuite - pick same as your NetSuite profile",
            "pick_list":
            [
                [
                    "American Samoa (-11:00)",
                    "American Samoa"
                ],
                [
                    "International Date Line West (-11:00)",
                    "International Date Line West"
                ],
                [
                    "Midway Island (-11:00)",
                    "Midway Island"
                ],
                [
                    "Hawaii (-10:00)",
                    "Hawaii"
                ],
                [
                    "Alaska (-9:00)",
                    "Alaska"
                ],
                [
                    "Pacific Time (US & Canada) (-8:00)",
                    "Pacific Time (US & Canada)"
                ],
                [
                    "Tijuana (-8:00)",
                    "Tijuana"
                ],
                [
                    "Arizona (-7:00)",
                    "Arizona"
                ],
                [
                    "Chihuahua (-7:00)",
                    "Chihuahua"
                ],
                [
                    "Mazatlan (-7:00)",
                    "Mazatlan"
                ],
                [
                    "Mountain Time (US & Canada) (-7:00)",
                    "Mountain Time (US & Canada)"
                ],
                [
                    "Central America (-6:00)",
                    "Central America"
                ],
                [
                    "Central Time (US & Canada) (-6:00)",
                    "Central Time (US & Canada)"
                ],
                [
                    "Guadalajara (-6:00)",
                    "Guadalajara"
                ],
                [
                    "Mexico City (-6:00)",
                    "Mexico City"
                ],
                [
                    "Monterrey (-6:00)",
                    "Monterrey"
                ],
                [
                    "Saskatchewan (-6:00)",
                    "Saskatchewan"
                ],
                [
                    "Bogota (-5:00)",
                    "Bogota"
                ],
                [
                    "Eastern Time (US & Canada) (-5:00)",
                    "Eastern Time (US & Canada)"
                ],
                [
                    "Indiana (East) (-5:00)",
                    "Indiana (East)"
                ],
                [
                    "Lima (-5:00)",
                    "Lima"
                ],
                [
                    "Quito (-5:00)",
                    "Quito"
                ],
                [
                    "Atlantic Time (Canada) (-4:00)",
                    "Atlantic Time (Canada)"
                ],
                [
                    "Caracas (-4:00)",
                    "Caracas"
                ],
                [
                    "Georgetown (-4:00)",
                    "Georgetown"
                ],
                [
                    "La Paz (-4:00)",
                    "La Paz"
                ],
                [
                    "Santiago (-4:00)",
                    "Santiago"
                ],
                [
                    "Newfoundland (-4:30)",
                    "Newfoundland"
                ],
                [
                    "Brasilia (-3:00)",
                    "Brasilia"
                ],
                [
                    "Buenos Aires (-3:00)",
                    "Buenos Aires"
                ],
                [
                    "Greenland (-3:00)",
                    "Greenland"
                ],
                [
                    "Montevideo (-3:00)",
                    "Montevideo"
                ],
                [
                    "Mid-Atlantic (-2:00)",
                    "Mid-Atlantic"
                ],
                [
                    "Azores (-1:00)",
                    "Azores"
                ],
                [
                    "Cape Verde Is. (-1:00)",
                    "Cape Verde Is."
                ],
                [
                    "Casablanca (+0:00)",
                    "Casablanca"
                ],
                [
                    "Dublin (+0:00)",
                    "Dublin"
                ],
                [
                    "Edinburgh (+0:00)",
                    "Edinburgh"
                ],
                [
                    "Lisbon (+0:00)",
                    "Lisbon"
                ],
                [
                    "London (+0:00)",
                    "London"
                ],
                [
                    "Monrovia (+0:00)",
                    "Monrovia"
                ],
                [
                    "UTC (+0:00)",
                    "UTC"
                ],
                [
                    "Amsterdam (+1:00)",
                    "Amsterdam"
                ],
                [
                    "Belgrade (+1:00)",
                    "Belgrade"
                ],
                [
                    "Berlin (+1:00)",
                    "Berlin"
                ],
                [
                    "Bern (+1:00)",
                    "Bern"
                ],
                [
                    "Bratislava (+1:00)",
                    "Bratislava"
                ],
                [
                    "Brussels (+1:00)",
                    "Brussels"
                ],
                [
                    "Budapest (+1:00)",
                    "Budapest"
                ],
                [
                    "Copenhagen (+1:00)",
                    "Copenhagen"
                ],
                [
                    "Ljubljana (+1:00)",
                    "Ljubljana"
                ],
                [
                    "Madrid (+1:00)",
                    "Madrid"
                ],
                [
                    "Paris (+1:00)",
                    "Paris"
                ],
                [
                    "Prague (+1:00)",
                    "Prague"
                ],
                [
                    "Rome (+1:00)",
                    "Rome"
                ],
                [
                    "Sarajevo (+1:00)",
                    "Sarajevo"
                ],
                [
                    "Skopje (+1:00)",
                    "Skopje"
                ],
                [
                    "Stockholm (+1:00)",
                    "Stockholm"
                ],
                [
                    "Vienna (+1:00)",
                    "Vienna"
                ],
                [
                    "Warsaw (+1:00)",
                    "Warsaw"
                ],
                [
                    "West Central Africa (+1:00)",
                    "West Central Africa"
                ],
                [
                    "Zagreb (+1:00)",
                    "Zagreb"
                ],
                [
                    "Athens (+2:00)",
                    "Athens"
                ],
                [
                    "Bucharest (+2:00)",
                    "Bucharest"
                ],
                [
                    "Cairo (+2:00)",
                    "Cairo"
                ],
                [
                    "Harare (+2:00)",
                    "Harare"
                ],
                [
                    "Helsinki (+2:00)",
                    "Helsinki"
                ],
                [
                    "Jerusalem (+2:00)",
                    "Jerusalem"
                ],
                [
                    "Kaliningrad (+2:00)",
                    "Kaliningrad"
                ],
                [
                    "Kyiv (+2:00)",
                    "Kyiv"
                ],
                [
                    "Pretoria (+2:00)",
                    "Pretoria"
                ],
                [
                    "Riga (+2:00)",
                    "Riga"
                ],
                [
                    "Sofia (+2:00)",
                    "Sofia"
                ],
                [
                    "Tallinn (+2:00)",
                    "Tallinn"
                ],
                [
                    "Vilnius (+2:00)",
                    "Vilnius"
                ],
                [
                    "Baghdad (+3:00)",
                    "Baghdad"
                ],
                [
                    "Istanbul (+3:00)",
                    "Istanbul"
                ],
                [
                    "Kuwait (+3:00)",
                    "Kuwait"
                ],
                [
                    "Minsk (+3:00)",
                    "Minsk"
                ],
                [
                    "Moscow (+3:00)",
                    "Moscow"
                ],
                [
                    "Nairobi (+3:00)",
                    "Nairobi"
                ],
                [
                    "Riyadh (+3:00)",
                    "Riyadh"
                ],
                [
                    "St. Petersburg (+3:00)",
                    "St. Petersburg"
                ],
                [
                    "Tehran (+3:30)",
                    "Tehran"
                ],
                [
                    "Abu Dhabi (+4:00)",
                    "Abu Dhabi"
                ],
                [
                    "Baku (+4:00)",
                    "Baku"
                ],
                [
                    "Muscat (+4:00)",
                    "Muscat"
                ],
                [
                    "Samara (+4:00)",
                    "Samara"
                ],
                [
                    "Tbilisi (+4:00)",
                    "Tbilisi"
                ],
                [
                    "Volgograd (+4:00)",
                    "Volgograd"
                ],
                [
                    "Yerevan (+4:00)",
                    "Yerevan"
                ],
                [
                    "Kabul (+4:30)",
                    "Kabul"
                ],
                [
                    "Ekaterinburg (+5:00)",
                    "Ekaterinburg"
                ],
                [
                    "Islamabad (+5:00)",
                    "Islamabad"
                ],
                [
                    "Karachi (+5:00)",
                    "Karachi"
                ],
                [
                    "Tashkent (+5:00)",
                    "Tashkent"
                ],
                [
                    "Chennai (+5:30)",
                    "Chennai"
                ],
                [
                    "Kolkata (+5:30)",
                    "Kolkata"
                ],
                [
                    "Mumbai (+5:30)",
                    "Mumbai"
                ],
                [
                    "New Delhi (+5:30)",
                    "New Delhi"
                ],
                [
                    "Sri Jayawardenepura (+5:30)",
                    "Sri Jayawardenepura"
                ],
                [
                    "Kathmandu (+5:45)",
                    "Kathmandu"
                ],
                [
                    "Almaty (+6:00)",
                    "Almaty"
                ],
                [
                    "Astana (+6:00)",
                    "Astana"
                ],
                [
                    "Dhaka (+6:00)",
                    "Dhaka"
                ],
                [
                    "Urumqi (+6:00)",
                    "Urumqi"
                ],
                [
                    "Rangoon (+6:30)",
                    "Rangoon"
                ],
                [
                    "Bangkok (+7:00)",
                    "Bangkok"
                ],
                [
                    "Hanoi (+7:00)",
                    "Hanoi"
                ],
                [
                    "Jakarta (+7:00)",
                    "Jakarta"
                ],
                [
                    "Krasnoyarsk (+7:00)",
                    "Krasnoyarsk"
                ],
                [
                    "Novosibirsk (+7:00)",
                    "Novosibirsk"
                ],
                [
                    "Beijing (+8:00)",
                    "Beijing"
                ],
                [
                    "Chongqing (+8:00)",
                    "Chongqing"
                ],
                [
                    "Hong Kong (+8:00)",
                    "Hong Kong"
                ],
                [
                    "Irkutsk (+8:00)",
                    "Irkutsk"
                ],
                [
                    "Kuala Lumpur (+8:00)",
                    "Kuala Lumpur"
                ],
                [
                    "Perth (+8:00)",
                    "Perth"
                ],
                [
                    "Singapore (+8:00)",
                    "Singapore"
                ],
                [
                    "Taipei (+8:00)",
                    "Taipei"
                ],
                [
                    "Ulaanbaatar (+8:00)",
                    "Ulaanbaatar"
                ],
                [
                    "Osaka (+9:00)",
                    "Osaka"
                ],
                [
                    "Sapporo (+9:00)",
                    "Sapporo"
                ],
                [
                    "Seoul (+9:00)",
                    "Seoul"
                ],
                [
                    "Tokyo (+9:00)",
                    "Tokyo"
                ],
                [
                    "Yakutsk (+9:00)",
                    "Yakutsk"
                ],
                [
                    "Adelaide (+9:30)",
                    "Adelaide"
                ],
                [
                    "Darwin (+9:30)",
                    "Darwin"
                ],
                [
                    "Brisbane (+10:00)",
                    "Brisbane"
                ],
                [
                    "Canberra (+10:00)",
                    "Canberra"
                ],
                [
                    "Guam (+10:00)",
                    "Guam"
                ],
                [
                    "Hobart (+10:00)",
                    "Hobart"
                ],
                [
                    "Melbourne (+10:00)",
                    "Melbourne"
                ],
                [
                    "Port Moresby (+10:00)",
                    "Port Moresby"
                ],
                [
                    "Sydney (+10:00)",
                    "Sydney"
                ],
                [
                    "Vladivostok (+10:00)",
                    "Vladivostok"
                ],
                [
                    "Magadan (+11:00)",
                    "Magadan"
                ],
                [
                    "New Caledonia (+11:00)",
                    "New Caledonia"
                ],
                [
                    "Solomon Is. (+11:00)",
                    "Solomon Is."
                ],
                [
                    "Srednekolymsk (+11:00)",
                    "Srednekolymsk"
                ],
                [
                    "Auckland (+12:00)",
                    "Auckland"
                ],
                [
                    "Fiji (+12:00)",
                    "Fiji"
                ],
                [
                    "Kamchatka (+12:00)",
                    "Kamchatka"
                ],
                [
                    "Marshall Is. (+12:00)",
                    "Marshall Is."
                ],
                [
                    "Wellington (+12:00)",
                    "Wellington"
                ],
                [
                    "Chatham Is. (+12:45)",
                    "Chatham Is."
                ],
                [
                    "Nuku'alofa (+13:00)",
                    "Nuku'alofa"
                ],
                [
                    "Samoa (+13:00)",
                    "Samoa"
                ],
                [
                    "Tokelau Is. (+13:00)",
                    "Tokelau Is."
                ]
            ]
        },
        {
            "name": "ignoreReadOnlyFields",
            "type": "boolean",
            "optional": true,
            "label": "Ignore read-only fields",
            "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.",
            "default": "false"
        },
        {
            "name": "advanced_settings",
            "type": "object",
            "properties": [
              {
                  "name": "consumerKey",
                  "type": "string",
                  "label": "Consumer key"
              },
              {
                  "name": "consumerSecret",
                  "type": "string",
                  "label": "Consumer secret"
              },
            ]
        }
    ]
}
NetSuite (Secondary) netsuite_secondary
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "account",
            "type": "string",
            "label": "Account ID",
            "hint": "Login as Administrator, then in <b>Setup Menu</b>, find in <b>Integration</b> > <b>Web Services Preferences</b>"
        },
        {
            "name": "tokenId",
            "type": "string",
            "label": "Token ID"
        },
        {
            "name": "tokenSecret",
            "type": "string",
            "label": "Token secret"
        },
        {
            "name": "timezone",
            "type": "string",
            "optional": true,
            "label": "Account timezone",
            "hint": "Needed for consistency with NetSuite - pick same as your NetSuite profile",
            "pick_list":
            [
                [
                    "American Samoa (-11:00)",
                    "American Samoa"
                ],
                [
                    "International Date Line West (-11:00)",
                    "International Date Line West"
                ],
                [
                    "Midway Island (-11:00)",
                    "Midway Island"
                ],
                [
                    "Hawaii (-10:00)",
                    "Hawaii"
                ],
                [
                    "Alaska (-9:00)",
                    "Alaska"
                ],
                [
                    "Pacific Time (US & Canada) (-8:00)",
                    "Pacific Time (US & Canada)"
                ],
                [
                    "Tijuana (-8:00)",
                    "Tijuana"
                ],
                [
                    "Arizona (-7:00)",
                    "Arizona"
                ],
                [
                    "Chihuahua (-7:00)",
                    "Chihuahua"
                ],
                [
                    "Mazatlan (-7:00)",
                    "Mazatlan"
                ],
                [
                    "Mountain Time (US & Canada) (-7:00)",
                    "Mountain Time (US & Canada)"
                ],
                [
                    "Central America (-6:00)",
                    "Central America"
                ],
                [
                    "Central Time (US & Canada) (-6:00)",
                    "Central Time (US & Canada)"
                ],
                [
                    "Guadalajara (-6:00)",
                    "Guadalajara"
                ],
                [
                    "Mexico City (-6:00)",
                    "Mexico City"
                ],
                [
                    "Monterrey (-6:00)",
                    "Monterrey"
                ],
                [
                    "Saskatchewan (-6:00)",
                    "Saskatchewan"
                ],
                [
                    "Bogota (-5:00)",
                    "Bogota"
                ],
                [
                    "Eastern Time (US & Canada) (-5:00)",
                    "Eastern Time (US & Canada)"
                ],
                [
                    "Indiana (East) (-5:00)",
                    "Indiana (East)"
                ],
                [
                    "Lima (-5:00)",
                    "Lima"
                ],
                [
                    "Quito (-5:00)",
                    "Quito"
                ],
                [
                    "Atlantic Time (Canada) (-4:00)",
                    "Atlantic Time (Canada)"
                ],
                [
                    "Caracas (-4:00)",
                    "Caracas"
                ],
                [
                    "Georgetown (-4:00)",
                    "Georgetown"
                ],
                [
                    "La Paz (-4:00)",
                    "La Paz"
                ],
                [
                    "Santiago (-4:00)",
                    "Santiago"
                ],
                [
                    "Newfoundland (-4:30)",
                    "Newfoundland"
                ],
                [
                    "Brasilia (-3:00)",
                    "Brasilia"
                ],
                [
                    "Buenos Aires (-3:00)",
                    "Buenos Aires"
                ],
                [
                    "Greenland (-3:00)",
                    "Greenland"
                ],
                [
                    "Montevideo (-3:00)",
                    "Montevideo"
                ],
                [
                    "Mid-Atlantic (-2:00)",
                    "Mid-Atlantic"
                ],
                [
                    "Azores (-1:00)",
                    "Azores"
                ],
                [
                    "Cape Verde Is. (-1:00)",
                    "Cape Verde Is."
                ],
                [
                    "Casablanca (+0:00)",
                    "Casablanca"
                ],
                [
                    "Dublin (+0:00)",
                    "Dublin"
                ],
                [
                    "Edinburgh (+0:00)",
                    "Edinburgh"
                ],
                [
                    "Lisbon (+0:00)",
                    "Lisbon"
                ],
                [
                    "London (+0:00)",
                    "London"
                ],
                [
                    "Monrovia (+0:00)",
                    "Monrovia"
                ],
                [
                    "UTC (+0:00)",
                    "UTC"
                ],
                [
                    "Amsterdam (+1:00)",
                    "Amsterdam"
                ],
                [
                    "Belgrade (+1:00)",
                    "Belgrade"
                ],
                [
                    "Berlin (+1:00)",
                    "Berlin"
                ],
                [
                    "Bern (+1:00)",
                    "Bern"
                ],
                [
                    "Bratislava (+1:00)",
                    "Bratislava"
                ],
                [
                    "Brussels (+1:00)",
                    "Brussels"
                ],
                [
                    "Budapest (+1:00)",
                    "Budapest"
                ],
                [
                    "Copenhagen (+1:00)",
                    "Copenhagen"
                ],
                [
                    "Ljubljana (+1:00)",
                    "Ljubljana"
                ],
                [
                    "Madrid (+1:00)",
                    "Madrid"
                ],
                [
                    "Paris (+1:00)",
                    "Paris"
                ],
                [
                    "Prague (+1:00)",
                    "Prague"
                ],
                [
                    "Rome (+1:00)",
                    "Rome"
                ],
                [
                    "Sarajevo (+1:00)",
                    "Sarajevo"
                ],
                [
                    "Skopje (+1:00)",
                    "Skopje"
                ],
                [
                    "Stockholm (+1:00)",
                    "Stockholm"
                ],
                [
                    "Vienna (+1:00)",
                    "Vienna"
                ],
                [
                    "Warsaw (+1:00)",
                    "Warsaw"
                ],
                [
                    "West Central Africa (+1:00)",
                    "West Central Africa"
                ],
                [
                    "Zagreb (+1:00)",
                    "Zagreb"
                ],
                [
                    "Athens (+2:00)",
                    "Athens"
                ],
                [
                    "Bucharest (+2:00)",
                    "Bucharest"
                ],
                [
                    "Cairo (+2:00)",
                    "Cairo"
                ],
                [
                    "Harare (+2:00)",
                    "Harare"
                ],
                [
                    "Helsinki (+2:00)",
                    "Helsinki"
                ],
                [
                    "Jerusalem (+2:00)",
                    "Jerusalem"
                ],
                [
                    "Kaliningrad (+2:00)",
                    "Kaliningrad"
                ],
                [
                    "Kyiv (+2:00)",
                    "Kyiv"
                ],
                [
                    "Pretoria (+2:00)",
                    "Pretoria"
                ],
                [
                    "Riga (+2:00)",
                    "Riga"
                ],
                [
                    "Sofia (+2:00)",
                    "Sofia"
                ],
                [
                    "Tallinn (+2:00)",
                    "Tallinn"
                ],
                [
                    "Vilnius (+2:00)",
                    "Vilnius"
                ],
                [
                    "Baghdad (+3:00)",
                    "Baghdad"
                ],
                [
                    "Istanbul (+3:00)",
                    "Istanbul"
                ],
                [
                    "Kuwait (+3:00)",
                    "Kuwait"
                ],
                [
                    "Minsk (+3:00)",
                    "Minsk"
                ],
                [
                    "Moscow (+3:00)",
                    "Moscow"
                ],
                [
                    "Nairobi (+3:00)",
                    "Nairobi"
                ],
                [
                    "Riyadh (+3:00)",
                    "Riyadh"
                ],
                [
                    "St. Petersburg (+3:00)",
                    "St. Petersburg"
                ],
                [
                    "Tehran (+3:30)",
                    "Tehran"
                ],
                [
                    "Abu Dhabi (+4:00)",
                    "Abu Dhabi"
                ],
                [
                    "Baku (+4:00)",
                    "Baku"
                ],
                [
                    "Muscat (+4:00)",
                    "Muscat"
                ],
                [
                    "Samara (+4:00)",
                    "Samara"
                ],
                [
                    "Tbilisi (+4:00)",
                    "Tbilisi"
                ],
                [
                    "Volgograd (+4:00)",
                    "Volgograd"
                ],
                [
                    "Yerevan (+4:00)",
                    "Yerevan"
                ],
                [
                    "Kabul (+4:30)",
                    "Kabul"
                ],
                [
                    "Ekaterinburg (+5:00)",
                    "Ekaterinburg"
                ],
                [
                    "Islamabad (+5:00)",
                    "Islamabad"
                ],
                [
                    "Karachi (+5:00)",
                    "Karachi"
                ],
                [
                    "Tashkent (+5:00)",
                    "Tashkent"
                ],
                [
                    "Chennai (+5:30)",
                    "Chennai"
                ],
                [
                    "Kolkata (+5:30)",
                    "Kolkata"
                ],
                [
                    "Mumbai (+5:30)",
                    "Mumbai"
                ],
                [
                    "New Delhi (+5:30)",
                    "New Delhi"
                ],
                [
                    "Sri Jayawardenepura (+5:30)",
                    "Sri Jayawardenepura"
                ],
                [
                    "Kathmandu (+5:45)",
                    "Kathmandu"
                ],
                [
                    "Almaty (+6:00)",
                    "Almaty"
                ],
                [
                    "Astana (+6:00)",
                    "Astana"
                ],
                [
                    "Dhaka (+6:00)",
                    "Dhaka"
                ],
                [
                    "Urumqi (+6:00)",
                    "Urumqi"
                ],
                [
                    "Rangoon (+6:30)",
                    "Rangoon"
                ],
                [
                    "Bangkok (+7:00)",
                    "Bangkok"
                ],
                [
                    "Hanoi (+7:00)",
                    "Hanoi"
                ],
                [
                    "Jakarta (+7:00)",
                    "Jakarta"
                ],
                [
                    "Krasnoyarsk (+7:00)",
                    "Krasnoyarsk"
                ],
                [
                    "Novosibirsk (+7:00)",
                    "Novosibirsk"
                ],
                [
                    "Beijing (+8:00)",
                    "Beijing"
                ],
                [
                    "Chongqing (+8:00)",
                    "Chongqing"
                ],
                [
                    "Hong Kong (+8:00)",
                    "Hong Kong"
                ],
                [
                    "Irkutsk (+8:00)",
                    "Irkutsk"
                ],
                [
                    "Kuala Lumpur (+8:00)",
                    "Kuala Lumpur"
                ],
                [
                    "Perth (+8:00)",
                    "Perth"
                ],
                [
                    "Singapore (+8:00)",
                    "Singapore"
                ],
                [
                    "Taipei (+8:00)",
                    "Taipei"
                ],
                [
                    "Ulaanbaatar (+8:00)",
                    "Ulaanbaatar"
                ],
                [
                    "Osaka (+9:00)",
                    "Osaka"
                ],
                [
                    "Sapporo (+9:00)",
                    "Sapporo"
                ],
                [
                    "Seoul (+9:00)",
                    "Seoul"
                ],
                [
                    "Tokyo (+9:00)",
                    "Tokyo"
                ],
                [
                    "Yakutsk (+9:00)",
                    "Yakutsk"
                ],
                [
                    "Adelaide (+9:30)",
                    "Adelaide"
                ],
                [
                    "Darwin (+9:30)",
                    "Darwin"
                ],
                [
                    "Brisbane (+10:00)",
                    "Brisbane"
                ],
                [
                    "Canberra (+10:00)",
                    "Canberra"
                ],
                [
                    "Guam (+10:00)",
                    "Guam"
                ],
                [
                    "Hobart (+10:00)",
                    "Hobart"
                ],
                [
                    "Melbourne (+10:00)",
                    "Melbourne"
                ],
                [
                    "Port Moresby (+10:00)",
                    "Port Moresby"
                ],
                [
                    "Sydney (+10:00)",
                    "Sydney"
                ],
                [
                    "Vladivostok (+10:00)",
                    "Vladivostok"
                ],
                [
                    "Magadan (+11:00)",
                    "Magadan"
                ],
                [
                    "New Caledonia (+11:00)",
                    "New Caledonia"
                ],
                [
                    "Solomon Is. (+11:00)",
                    "Solomon Is."
                ],
                [
                    "Srednekolymsk (+11:00)",
                    "Srednekolymsk"
                ],
                [
                    "Auckland (+12:00)",
                    "Auckland"
                ],
                [
                    "Fiji (+12:00)",
                    "Fiji"
                ],
                [
                    "Kamchatka (+12:00)",
                    "Kamchatka"
                ],
                [
                    "Marshall Is. (+12:00)",
                    "Marshall Is."
                ],
                [
                    "Wellington (+12:00)",
                    "Wellington"
                ],
                [
                    "Chatham Is. (+12:45)",
                    "Chatham Is."
                ],
                [
                    "Nuku'alofa (+13:00)",
                    "Nuku'alofa"
                ],
                [
                    "Samoa (+13:00)",
                    "Samoa"
                ],
                [
                    "Tokelau Is. (+13:00)",
                    "Tokelau Is."
                ]
            ]
        },
        {
            "name": "ignoreReadOnlyFields",
            "type": "boolean",
            "optional": true,
            "label": "Ignore read-only fields",
            "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.",
            "default": "false"
        },
        {
            "name": "advanced_settings",
            "type": "object",
            "properties": [
              {
                  "name": "consumerKey",
                  "type": "string",
                  "label": "Consumer key"
              },
              {
                  "name": "consumerSecret",
                  "type": "string",
                  "label": "Consumer secret"
              },
            ]
        }
    ]
}
New Relic new_relic
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "api_key",
            "type": "string",
            "optional": false,
            "label": "API Key",
            "hint": "Go to Account settings->API Keys and get API key"
        }
    ]
}
Nimble CRM nimblecrm
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Okta okta
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "subdomain",
            "type": "string",
            "optional": false,
            "label": "Okta domain",
            "hint": "Your Okta domain name as found in your Okta URL for example, mycompany.okta.com, mytest.oktapreview.com"
        },
        {
            "name": "api_key",
            "type": "string",
            "optional": false,
            "label": "API Key",
            "hint": "Logon to the Okta admin console as an administrator and go to Security -> API -> Create Token"
        }
    ]
}
Okta (Secondary) okta_secondary
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "subdomain",
            "type": "string",
            "optional": false,
            "label": "Okta domain",
            "hint": "Your Okta domain name as found in your Okta URL for example, mycompany.okta.com, mytest.oktapreview.com"
        },
        {
            "name": "api_key",
            "type": "string",
            "optional": false,
            "label": "API Key",
            "hint": "Logon to the Okta admin console as an administrator and go to Security -> API -> Create Token"
        }
    ]
}
On-prem command-line scripts onprem_command_line_scripts
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "profile",
            "type": "string",
            "label": "On-prem command-line scripts profile",
            "hint": "Profile name given in the <b>config.yml</b> file"
        }
    ]
}
On-prem files onprem_files
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "profile",
            "type": "string",
            "label": "On-prem connection profile",
            "hint": "Profile name given in the <b>config.yml</b> file"
        }
    ]
}
On-prem files (Secondary) onprem_files_secondary
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "profile",
            "type": "string",
            "label": "On-prem connection profile",
            "hint": "Profile name given in the <b>config.yml</b> file"
        }
    ]
}
OneDrive onedrive
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "account_type",
            "type": "string",
            "optional": false,
            "label": "Account type",
            "hint": "Select your Onedrive account type",
            "pick_list":
            [
                [
                    "Personal",
                    "personal"
                ],
                [
                    "Business",
                    "business"
                ]
            ],
            "default": "personal"
        }
    ]
}
Oracle oracle
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "profile",
            "type": "string",
            "label": "On-prem connection profile"
        },
        {
            "name": "host",
            "type": "string",
            "label": "Database host"
        },
        {
            "name": "port",
            "type": "string",
            "optional": true,
            "label": "Database port",
            "hint": "Port number, default is 1521",
            "default": 1521
        },
        {
            "name": "user",
            "type": "string",
            "label": "User name"
        },
        {
            "name": "password",
            "type": "string",
            "optional": true,
            "label": "Password"
        },
        {
            "name": "dbname",
            "type": "string",
            "label": "Database name"
        }
    ]
}
Oracle (Secondary) oracle_secondary
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "profile",
            "type": "string",
            "label": "On-prem connection profile"
        },
        {
            "name": "host",
            "type": "string",
            "label": "Database host"
        },
        {
            "name": "port",
            "type": "string",
            "optional": true,
            "label": "Database port",
            "hint": "Port number, default is 1521",
            "default": 1521
        },
        {
            "name": "user",
            "type": "string",
            "label": "User name"
        },
        {
            "name": "password",
            "type": "string",
            "optional": true,
            "label": "Password"
        },
        {
            "name": "dbname",
            "type": "string",
            "label": "Database name"
        }
    ]
}
Oracle E-Business Suite oracle_ebs
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "instance_url",
            "type": "string",
            "label": "Instance URL",
            "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"
        },
        {
            "name": "username",
            "type": "string",
            "label": "Username"
        },
        {
            "name": "password",
            "type": "string",
            "label": "Password"
        },
        {
            "name": "user_service_name",
            "type": "string",
            "label": "User service name",
            "hint": "Name of the PL/SQL REST service name used while deployment"
        }
    ]
}
Oracle Fusion oracle_fusion
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "user",
            "type": "string",
            "label": "User"
        },
        {
            "name": "password",
            "type": "string",
            "label": "Password"
        }
    ]
}
Outlook outlook
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "advanced_settings",
            "type": "object",
            "optional": true,
            "label": "Advanced settings",
            "properties":
            [
                {
                    "name": "api_scope",
                    "type": "string",
                    "optional": true,
                    "label": "Requested permissions (Oauth scopes)",
                    "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"
                }
            ]
        }
    ]
}
Outreach outreach
OutSystems out_systems
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "API_key",
            "type": "string",
            "optional": false,
            "label": "API key",
            "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>."
        },
        {
            "name": "EnvironmentURL",
            "type": "string",
            "optional": false,
            "label": "Environment URL",
            "hint": "Your OutSystems environment URL (eg: YOUR_PERSONAL.outsystemscloud.com)."
        }
    ]
}
Pagerduty pagerduty
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "api_key",
            "type": "string",
            "optional": false,
            "label": "API key",
            "hint": "Go to Configuration -> API Access and get API Key"
        }
    ]
}
ParseHub parsehub
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "api_key",
            "type": "string",
            "optional": false,
            "label": "Api key",
            "hint": "Select your ParseHub account name-> Select Account-> Get your api key"
        }
    ]
}
People Task by Workato workflow
Percolate percolate
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "client_id",
            "type": "string",
            "optional": false,
            "label": "Client ID",
            "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."
        },
        {
            "name": "client_secret",
            "type": "string",
            "optional": false,
            "label": "Client secret",
            "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."
        },
        {
            "name": "environment",
            "type": "string",
            "optional": false,
            "label": "Environment",
            "pick_list":
            [
                [
                    "Production",
                    "production"
                ],
                [
                    "Sandbox",
                    "sandbox"
                ],
                [
                    "Internal",
                    "internal"
                ]
            ]
        }
    ]
}
PGP pgp
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "public_key",
            "type": "string",
            "optional": true,
            "label": "Public key (deprecated)",
            "hint": "Provide the public key in Encrypt and Verify action input."
        },
        {
            "name": "private_key",
            "type": "string",
            "optional": true,
            "label": "Private key",
            "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/features/pgp-encryption.html\" target=\"_blank\">here</a>.\n"
        },
        {
            "name": "passphrase",
            "type": "string",
            "optional": true,
            "label": "Passphrase",
            "hint": "Passphrase of the keys you have generated."
        }
    ]
}
Pingdom pingdom
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "app_key",
            "type": "string",
            "optional": false,
            "label": "Application key"
        },
        {
            "name": "username",
            "type": "string",
            "optional": false,
            "label": "Username",
            "hint": "Your username"
        },
        {
            "name": "password",
            "type": "string",
            "optional": false,
            "label": "Password"
        }
    ]
}
Pipedrive pipedrive
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "api_token",
            "type": "string",
            "label": "Api token",
            "hint": "API token is found in the API tab under Personal settings (Settings > Personal > API)"
        }
    ]
}
Pivotal Tracker pivotal_tracker
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "api_key",
            "type": "string",
            "optional": true,
            "label": "API key",
            "hint": "Select your account name -> Profile. Scroll down to end of the page to get API token"
        }
    ]
}
PlanGrid plan_grid
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Podio podio
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
PostgreSQL postgresql
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "profile",
            "type": "string",
            "label": "On-prem connection profile"
        },
        {
            "name": "host",
            "type": "string",
            "label": "Database host"
        },
        {
            "name": "port",
            "type": "string",
            "label": "Database port"
        },
        {
            "name": "user",
            "type": "string",
            "label": "User name"
        },
        {
            "name": "password",
            "type": "string",
            "optional": true,
            "label": "Password"
        },
        {
            "name": "dbname",
            "type": "string",
            "label": "Database name"
        },
        {
            "name": "schema_name",
            "type": "string",
            "optional": true,
            "label": "Schema",
            "hint": "\"public\" schema by default"
        }
    ]
}
PostgreSQL (Secondary) postgresql_secondary
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "profile",
            "type": "string",
            "label": "On-prem connection profile"
        },
        {
            "name": "host",
            "type": "string",
            "label": "Database host"
        },
        {
            "name": "port",
            "type": "string",
            "label": "Database port"
        },
        {
            "name": "user",
            "type": "string",
            "label": "User name"
        },
        {
            "name": "password",
            "type": "string",
            "optional": true,
            "label": "Password"
        },
        {
            "name": "dbname",
            "type": "string",
            "label": "Database name"
        },
        {
            "name": "schema_name",
            "type": "string",
            "optional": true,
            "label": "Schema",
            "hint": "\"public\" schema by default"
        }
    ]
}
Product Hunt product_hunt
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "username",
            "type": "string",
            "optional": false,
            "label": "Username",
            "hint": "Your Product Hunt Username. Remove \"@\" prefix."
        }
    ]
}
Prontoforms prontoforms
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "api_key",
            "type": "string",
            "label": "Api key"
        },
        {
            "name": "api_secret",
            "type": "string",
            "label": "Api secret"
        }
    ]
}
Propel propel
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "sandbox",
            "type": "boolean",
            "optional": true,
            "label": "Sandbox",
            "hint": "Is this connecting to a sandbox account?",
            "default": "false"
        }
    ]
}
PubSub by Workato workato_pub_sub
Quick Base quickbase
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "subdomain",
            "type": "string",
            "label": "Sub-domain",
            "hint": "Your Quick Base subdomain is most often your company name"
        },
        {
            "name": "user_token_auth",
            "type": "boolean",
            "label": "User-token authentication?",
            "hint": "Is authentication based on user tokens? If yes, provide <b>User token</b>. If no, provide <b>Username</b> & <b>Password</b>.",
            "default": "false"
        },
        {
            "name": "usertoken",
            "type": "string",
            "optional": true,
            "label": "User token",
            "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>"
        },
        {
            "name": "username",
            "type": "string",
            "optional": true,
            "label": "Username"
        },
        {
            "name": "password",
            "type": "string",
            "optional": true,
            "label": "Password"
        }
    ]
}
Quick Base (Secondary) quickbase_secondary
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "subdomain",
            "type": "string",
            "label": "Sub-domain",
            "hint": "Your Quick Base subdomain is most often your company name"
        },
        {
            "name": "user_token_auth",
            "type": "boolean",
            "label": "User-token authentication?",
            "hint": "Is authentication based on user tokens? If yes, provide <b>User token</b>. If no, provide <b>Username</b> & <b>Password</b>.",
            "default": "false"
        },
        {
            "name": "usertoken",
            "type": "string",
            "optional": true,
            "label": "User token",
            "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>"
        },
        {
            "name": "username",
            "type": "string",
            "optional": true,
            "label": "Username"
        },
        {
            "name": "password",
            "type": "string",
            "optional": true,
            "label": "Password"
        }
    ]
}
QuickBooks Online quickbooks
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Quip quip
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "api_key",
            "type": "string",
            "label": "Personal API token",
            "hint": "Personal API token. Click <a href=\"https://quip.com/api/personal-token\">here</a> to generate API token"
        }
    ]
}
Raiser's Edge NXT raisers_edge
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
RecipeOps by Workato workato_app
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "connecting_to_account",
            "type": "boolean",
            "label": "Whose account are you managing?",
            "pick_list":
            [
                [
                    "My account",
                    "current"
                ],
                [
                    "Someone else's account",
                    "other"
                ]
            ],
            "default": "nil"
        },
        {
            "name": "email",
            "type": "string",
            "label": "Email",
            "hint": "Managed account窶冱 email"
        },
        {
            "name": "api_key",
            "type": "string",
            "label": "API key",
            "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>"
        }
    ]
}
Redshift redshift
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "url",
            "type": "string",
            "label": "URL",
            "hint": "Redshift JDBC URL."
        },
        {
            "name": "username",
            "type": "string",
            "label": "Username"
        },
        {
            "name": "password",
            "type": "string",
            "label": "Password"
        },
        {
            "name": "schema_name",
            "type": "string",
            "optional": true,
            "label": "Schema",
            "hint": "\"public\" schema by default"
        }
    ]
}
Redshift (Secondary) redshift_secondary
RegOnlineツョ by Lanyon active_reg_online
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "api_token",
            "type": "string",
            "label": "API Token",
            "hint": "API token is found at the bottom of the RegOnline 'Edit User' screen."
        }
    ]
}
Replicon replicon
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "company",
            "type": "string",
            "label": "Company",
            "hint": "The company name associated with your login"
        },
        {
            "name": "user_token_auth",
            "type": "boolean",
            "label": "User-token authentication?",
            "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>.",
            "default": "false"
        },
        {
            "name": "usertoken",
            "type": "string",
            "optional": true,
            "label": "User token",
            "hint": "Use this API https://<b>region</b>.replicon.com/<b>Company name</b>/services/AuthenticationService1.svc/help/test/CreateAccessToken to get user token"
        },
        {
            "name": "username",
            "type": "string",
            "label": "Login name"
        },
        {
            "name": "password",
            "type": "string",
            "optional": true,
            "label": "Password"
        },
        {
            "name": "subdomain",
            "type": "string",
            "optional": true,
            "label": "Subdomain",
            "hint": "Leave to default (global) for production instances",
            "default": "global"
        }
    ]
}
Revel Systems revel_systems
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "subdomain",
            "type": "string",
            "label": "Subdomain",
            "hint": "Your revel systems subdomain, usually a company name; for example, the <b>api-playground</b> part in https://api-playground.revelup.com"
        },
        {
            "name": "api_key",
            "type": "string",
            "label": "Api key"
        },
        {
            "name": "api_secret",
            "type": "string",
            "label": "Api secret"
        }
    ]
}
RingCentral ringcentral
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "development",
            "type": "number",
            "optional": true,
            "label": "Development",
            "hint": "Leave empty to connect production account. Provide <b>true</b> for development account <b>false</b> for production account."
        }
    ]
}
Rollbar rollbar
Ruby workato_custom_code
Sage Intacct intacct
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "login_username",
            "type": "string",
            "label": "Login username"
        },
        {
            "name": "login_password",
            "type": "string",
            "label": "Login password"
        },
        {
            "name": "company_id",
            "type": "string",
            "label": "Company ID"
        },
        {
            "name": "location_id",
            "type": "string",
            "optional": true,
            "label": "Location ID",
            "hint": "If not specified, it takes the top level(all entities)"
        }
    ]
}
Sage Live sagelive
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "sandbox",
            "type": "boolean",
            "optional": true,
            "label": "Sandbox",
            "hint": "Is this connecting to a sandbox account?",
            "default": "false"
        }
    ]
}
Salesforce salesforce
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "sandbox",
            "type": "boolean",
            "optional": true,
            "label": "Sandbox",
            "hint": "Is this connecting to a sandbox account?",
            "default": "false"
        },
        {
            "name": "advanced_settings",
            "type": "object",
            "optional": true,
            "label": "Advanced settings",
            "properties":
            [
                {
                    "name": "custom_login_url",
                    "type": "string",
                    "optional": true,
                    "label": "Salesforce community custom domain URL",
                    "hint": "                   Enter your Salesforce community's custom domain URL, eg. <b>acme-domain.force.com</b>.\n                   <a target='_blank' href='https://docs.workato.com/connectors/salesforce.html#connecting-to-custom-domains'>Learn more</a>\n"
                },
                {
                    "name": "api_scope",
                    "type": "string",
                    "optional": true,
                    "label": "Requested permissions (Oauth scopes)",
                    "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"
                }
            ]
        }
    ]
}
Salesforce (Secondary) salesforce_secondary
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "sandbox",
            "type": "boolean",
            "optional": true,
            "label": "Sandbox",
            "hint": "Is this connecting to a sandbox account?",
            "default": "false"
        },
        {
            "name": "advanced_settings",
            "type": "object",
            "optional": true,
            "label": "Advanced settings",
            "properties":
            [
                {
                    "name": "custom_login_url",
                    "type": "string",
                    "optional": true,
                    "label": "Salesforce community custom domain URL",
                    "hint": "                   Enter your Salesforce community's custom domain URL, eg. <b>acme-domain.force.com</b>.\n                   <a target='_blank' href='https://docs.workato.com/connectors/salesforce.html#connecting-to-custom-domains'>Learn more</a>\n"
                },
                {
                    "name": "api_scope",
                    "type": "string",
                    "optional": true,
                    "label": "Requested permissions (Oauth scopes)",
                    "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"
                }
            ]
        }
    ]
}
Salesforce CPQ steelbrick
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "sandbox",
            "type": "boolean",
            "optional": true,
            "label": "Sandbox",
            "hint": "Is this connecting to a sandbox account?",
            "default": "false"
        }
    ]
}
SalesforceIQ relateiq
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "api_key",
            "type": "string",
            "label": "API Key",
            "hint": "Create in your SalesforceIQ account: Organization > settings > integrations"
        },
        {
            "name": "api_secret",
            "type": "string",
            "label": "API Secret"
        }
    ]
}
Salesforce Marketing Cloud salesforce_marketing_cloud
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "flag",
            "type": "boolean",
            "label": "Are you using a new installed package?",
            "hint": "Legacy packages (created before 1st August 2019) uses a different set of fields to connect.",
            "default": "false"
        },
        {
            "name": "instance",
            "type": "string",
            "label": "Instance",
            "hint": "Select the instance of your account. Eg: Select <b>s7</b>, if the instance URL is <b>https://mc.s7.exacttarget.com</b>.",
            "pick_list":
            [
                [
                    "s1",
                    "s1"
                ],
                [
                    "s4",
                    "s4"
                ],
                [
                    "s6",
                    "s6"
                ],
                [
                    "s7",
                    "s7"
                ],
                [
                    "s10",
                    "s10"
                ],
                [
                    "test",
                    "test"
                ]
            ]
        },
        {
            "name": "instance_name",
            "type": "string",
            "label": "Instance name",
            "hint": "Enter the instance of your account. Eg: Enter <b>s7</b>, if the instance URL is <b>https://mc.s7.exacttarget.com</b>."
        },
        {
            "name": "subdomain",
            "type": "string",
            "label": "Subdomain",
            "hint": "Enter the sub-domain of your account."
        },
        {
            "name": "client_id",
            "type": "string",
            "label": "Client ID",
            "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"
        },
        {
            "name": "client_secret",
            "type": "string",
            "label": "Client secret"
        }
    ]
}
SAP D4C sap_d4c
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "username",
            "type": "string",
            "label": "Username"
        },
        {
            "name": "password",
            "type": "string",
            "label": "Password"
        },
        {
            "name": "endpoint",
            "type": "string",
            "label": "Endpoint",
            "hint": "Eg. 'my123456.vlab.sapbydesign.com'"
        }
    ]
}
SAP OData sap_erp
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "domain",
            "type": "string",
            "label": "Service URL",
            "hint": "Your SAP Service URL to validate authentication. For example, <b>http://sap.intranet.acme.com:7654/sap/opu/odata/sap/ZEMPLOYEE_SRV</b>."
        },
        {
            "name": "username",
            "type": "string",
            "label": "Username"
        },
        {
            "name": "password",
            "type": "string",
            "label": "Password"
        },
        {
            "name": "client",
            "type": "string",
            "optional": true,
            "label": "Client",
            "hint": "SAP client ID. Leave blank to use the default logon client."
        }
    ]
}
SAP On-premise sap
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "profile",
            "type": "string",
            "label": "On-prem agent connection profile",
            "hint": "<a href='https://docs.workato.com/connectors/sap.html' target='_blank'>Click here</a> to learn how to configure SAP connection."
        }
    ]
}
SAP S/4 HANA sap_s4_hana_cloud
Scheduler by Workato clock
Segment segment
SendGrid sendgrid
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "api_key",
            "type": "string",
            "optional": false,
            "label": "API key",
            "hint": "Go to settings -> API keys -> create API key"
        }
    ]
}
ServiceM8 servicem8
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "user",
            "type": "string",
            "label": "User"
        },
        {
            "name": "password",
            "type": "string",
            "label": "Password"
        }
    ]
}
ServiceMax service_max
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "sandbox",
            "type": "boolean",
            "optional": true,
            "label": "Sandbox",
            "hint": "Is this connecting to a sandbox account?",
            "default": "false"
        }
    ]
}
ServiceNow service_now
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "authentication_type",
            "type": "string",
            "label": "Authentication type",
            "hint": "Only Istanbul version or later supports OAuth 2.0. <a href=\"http://docs.workato.com/connectors/servicenow.html\" target=\"_blank\">Learn more</a> about the authentication types.",
            "pick_list":
            [
                [
                    "Username/Password",
                    "basic"
                ],
                [
                    "OAuth 2.0",
                    "oauth"
                ]
            ],
            "default": "basic"
        },
        {
            "name": "subdomain",
            "type": "string",
            "label": "Instance name",
            "hint": "If your ServiceNow url is <b>https://acme.service-now.com</b>, then instance name is <b>'acme'</b>."
        },
        {
            "name": "username",
            "type": "string",
            "label": "Username",
            "hint": "Make sure that you have sufficient access control to all the tables you wish to work with. <a href=\"http://docs.workato.com/connectors/servicenow.html#roles-and-permissions-required-to-connect\" target=\"_blank\">Learn more</a>."
        },
        {
            "name": "password",
            "type": "string",
            "label": "Password"
        },
        {
            "name": "client_id",
            "type": "string",
            "label": "Client ID",
            "hint": "<a href=\"http://docs.workato.com/connectors/servicenow.html#oauth-20\" target=\"_blank\">Learn more</a> about setting up OAuth in your ServiceNow instance."
        },
        {
            "name": "client_secret",
            "type": "string",
            "label": "Client secret"
        }
    ]
}
ServiceNow (Secondary) service_now_secondary
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "authentication_type",
            "type": "string",
            "label": "Authentication type",
            "hint": "Only Istanbul version or later supports OAuth 2.0. <a href=\"http://docs.workato.com/connectors/servicenow.html\" target=\"_blank\">Learn more</a> about the authentication types.",
            "pick_list":
            [
                [
                    "Username/Password",
                    "basic"
                ],
                [
                    "OAuth 2.0",
                    "oauth"
                ]
            ],
            "default": "basic"
        },
        {
            "name": "subdomain",
            "type": "string",
            "label": "Instance name",
            "hint": "If your ServiceNow url is <b>https://acme.service-now.com</b>, then instance name is <b>'acme'</b>."
        },
        {
            "name": "username",
            "type": "string",
            "label": "Username",
            "hint": "Make sure that you have sufficient access control to all the tables you wish to work with. <a href=\"http://docs.workato.com/connectors/servicenow.html#roles-and-permissions-required-to-connect\" target=\"_blank\">Learn more</a>."
        },
        {
            "name": "password",
            "type": "string",
            "label": "Password"
        },
        {
            "name": "client_id",
            "type": "string",
            "label": "Client ID",
            "hint": "<a href=\"http://docs.workato.com/connectors/servicenow.html#oauth-20\" target=\"_blank\">Learn more</a> about setting up OAuth in your ServiceNow instance."
        },
        {
            "name": "client_secret",
            "type": "string",
            "label": "Client secret"
        }
    ]
}
SFTP sftp
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "auth_type",
            "type": "string",
            "label": "Auth type",
            "pick_list":
            [
                [
                    "Username/password",
                    "username_password"
                ],
                [
                    "Public/private key pair",
                    "pubkey"
                ]
            ],
            "default": "username_password"
        },
        {
            "name": "username",
            "type": "string",
            "label": "Username"
        },
        {
            "name": "password",
            "type": "string",
            "label": "Password"
        },
        {
            "name": "private_key",
            "type": "string",
            "label": "Private key",
            "hint": "Please use an OpenSSH private key, without password protection. <a href=\"https://www.ssh.com/ssh/keygen/\" target=\"_blank\">Learn more</a>"
        },
        {
            "name": "hostname",
            "type": "string",
            "label": "Hostname",
            "hint": "Contact your SFTP server administrator to whitelist Workato IP addresses. <a href=\"http://docs.workato.com/security.html\" target=\"_blank\">Learn more</a>"
        },
        {
            "name": "port",
            "type": "integer",
            "label": "Port",
            "hint": "The standard port is 22, contact your SFTP server administrator for the correct port.",
            "default": 22
        },
        {
            "name": "host_key_fingerprint",
            "type": "string",
            "optional": true,
            "label": "Host key fingerprint",
            "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."
        },
        {
            "name": "transfer_buffer_size",
            "type": "integer",
            "optional": true,
            "label": "Transfer buffer size",
            "hint": "Size of the buffer used to transfer files. Default and minimum is 32768.\nLarger sizes, if supported by the SFTP server, generally speed up transfers.\nMaximum is 327680.\n",
            "default": 32768
        },
        {
            "name": "force_close",
            "type": "boolean",
            "optional": true,
            "label": "Force close",
            "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"
        }
    ]
}
SFTP (Secondary) sftp_secondary
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "auth_type",
            "type": "string",
            "label": "Auth type",
            "pick_list":
            [
                [
                    "Username/password",
                    "username_password"
                ],
                [
                    "Public/private key pair",
                    "pubkey"
                ]
            ],
            "default": "username_password"
        },
        {
            "name": "username",
            "type": "string",
            "label": "Username"
        },
        {
            "name": "password",
            "type": "string",
            "label": "Password"
        },
        {
            "name": "private_key",
            "type": "string",
            "label": "Private key",
            "hint": "Please use an OpenSSH private key, without password protection. <a href=\"https://www.ssh.com/ssh/keygen/\" target=\"_blank\">Learn more</a>"
        },
        {
            "name": "hostname",
            "type": "string",
            "label": "Hostname",
            "hint": "Contact your SFTP server administrator to whitelist Workato IP addresses. <a href=\"http://docs.workato.com/security.html\" target=\"_blank\">Learn more</a>"
        },
        {
            "name": "port",
            "type": "integer",
            "label": "Port",
            "hint": "The standard port is 22, contact your SFTP server administrator for the correct port.",
            "default": 22
        },
        {
            "name": "host_key_fingerprint",
            "type": "string",
            "optional": true,
            "label": "Host key fingerprint",
            "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."
        },
        {
            "name": "transfer_buffer_size",
            "type": "integer",
            "optional": true,
            "label": "Transfer buffer size",
            "hint": "Size of the buffer used to transfer files. Default and minimum is 32768.\nLarger sizes, if supported by the SFTP server, generally speed up transfers.\nMaximum is 327680.\n",
            "default": 32768
        },
        {
            "name": "force_close",
            "type": "boolean",
            "optional": true,
            "label": "Force close",
            "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"
        }
    ]
}
Shopify shopify
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "shop_name",
            "type": "string",
            "label": "Shop Name",
            "hint": "Your shop name Eg. <b>shopname</b>.myshopify.com/admin"
        }
    ]
}
Showpad showpad
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "subdomain",
            "type": "string",
            "label": "Subdomain",
            "hint": "Your Showpad subdomain, usually a company name; for example, the <b>acme</b> part in https://acme.showpad.biz"
        }
    ]
}
Slack slack
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Slack (Secondary) slack_secondary
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Smartsheet smartsheet
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "advanced_settings",
            "type": "object",
            "optional": true,
            "label": "Advanced settings",
            "properties":
            [
                {
                    "name": "api_scope",
                    "type": "string",
                    "optional": true,
                    "label": "Requested permissions (Oauth scopes)",
                    "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"
                }
            ]
        }
    ]
}
SMS by Workato sms
Snowflake snowflake
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "host",
            "type": "string",
            "optional": false,
            "label": "Account name",
            "hint": "Account name of your Snowflake instance. This depends on the cloud platform (AWS or Azure)\nand region where your Snowflake instance is hosted.\n<a target=\"_blank\" href=\"https://docs.workato.com/connectors/snowflake.html#how-to-connect-to-snowflake-on-workato\">Learn more</a>."
        },
        {
            "name": "warehouse",
            "type": "string",
            "label": "Warehouse",
            "hint": "Full name of warehouse to perform all operations for this connection.\n<a target=\"_blank\" href=\"https://docs.workato.com/connectors/snowflake.html#considerations-for-warehouse\">Learn more</a>"
        },
        {
            "name": "database",
            "type": "string",
            "label": "Database name"
        },
        {
            "name": "user",
            "type": "string",
            "label": "User name"
        },
        {
            "name": "password",
            "type": "string",
            "optional": false,
            "label": "Password"
        },
        {
            "name": "schema_name",
            "type": "string",
            "optional": true,
            "label": "Schema",
            "hint": "\"public\" schema by default"
        },
        {
            "name": "db_timezone",
            "type": "string",
            "optional": true,
            "label": "Database timezone",
            "hint": "Apply this to all timestamps without timezone.\n<a target=\"_blank\" href=\"https://docs.workato.com/connectors/snowflake.html#database-timezone\">Learn more</a>",
            "pick_list":
            [
                [
                    "American Samoa",
                    "American Samoa"
                ],
                [
                    "International Date Line West",
                    "International Date Line West"
                ],
                [
                    "Midway Island",
                    "Midway Island"
                ],
                [
                    "Hawaii",
                    "Hawaii"
                ],
                [
                    "Alaska",
                    "Alaska"
                ],
                [
                    "Pacific Time (US & Canada)",
                    "Pacific Time (US & Canada)"
                ],
                [
                    "Tijuana",
                    "Tijuana"
                ],
                [
                    "Arizona",
                    "Arizona"
                ],
                [
                    "Chihuahua",
                    "Chihuahua"
                ],
                [
                    "Mazatlan",
                    "Mazatlan"
                ],
                [
                    "Mountain Time (US & Canada)",
                    "Mountain Time (US & Canada)"
                ],
                [
                    "Central America",
                    "Central America"
                ],
                [
                    "Central Time (US & Canada)",
                    "Central Time (US & Canada)"
                ],
                [
                    "Guadalajara",
                    "Guadalajara"
                ],
                [
                    "Mexico City",
                    "Mexico City"
                ],
                [
                    "Monterrey",
                    "Monterrey"
                ],
                [
                    "Saskatchewan",
                    "Saskatchewan"
                ],
                [
                    "Bogota",
                    "Bogota"
                ],
                [
                    "Eastern Time (US & Canada)",
                    "Eastern Time (US & Canada)"
                ],
                [
                    "Indiana (East)",
                    "Indiana (East)"
                ],
                [
                    "Lima",
                    "Lima"
                ],
                [
                    "Quito",
                    "Quito"
                ],
                [
                    "Atlantic Time (Canada)",
                    "Atlantic Time (Canada)"
                ],
                [
                    "Caracas",
                    "Caracas"
                ],
                [
                    "Georgetown",
                    "Georgetown"
                ],
                [
                    "La Paz",
                    "La Paz"
                ],
                [
                    "Santiago",
                    "Santiago"
                ],
                [
                    "Newfoundland",
                    "Newfoundland"
                ],
                [
                    "Brasilia",
                    "Brasilia"
                ],
                [
                    "Buenos Aires",
                    "Buenos Aires"
                ],
                [
                    "Greenland",
                    "Greenland"
                ],
                [
                    "Montevideo",
                    "Montevideo"
                ],
                [
                    "Mid-Atlantic",
                    "Mid-Atlantic"
                ],
                [
                    "Azores",
                    "Azores"
                ],
                [
                    "Cape Verde Is.",
                    "Cape Verde Is."
                ],
                [
                    "Casablanca",
                    "Casablanca"
                ],
                [
                    "Dublin",
                    "Dublin"
                ],
                [
                    "Edinburgh",
                    "Edinburgh"
                ],
                [
                    "Lisbon",
                    "Lisbon"
                ],
                [
                    "London",
                    "London"
                ],
                [
                    "Monrovia",
                    "Monrovia"
                ],
                [
                    "UTC",
                    "UTC"
                ],
                [
                    "Amsterdam",
                    "Amsterdam"
                ],
                [
                    "Belgrade",
                    "Belgrade"
                ],
                [
                    "Berlin",
                    "Berlin"
                ],
                [
                    "Bern",
                    "Bern"
                ],
                [
                    "Bratislava",
                    "Bratislava"
                ],
                [
                    "Brussels",
                    "Brussels"
                ],
                [
                    "Budapest",
                    "Budapest"
                ],
                [
                    "Copenhagen",
                    "Copenhagen"
                ],
                [
                    "Ljubljana",
                    "Ljubljana"
                ],
                [
                    "Madrid",
                    "Madrid"
                ],
                [
                    "Paris",
                    "Paris"
                ],
                [
                    "Prague",
                    "Prague"
                ],
                [
                    "Rome",
                    "Rome"
                ],
                [
                    "Sarajevo",
                    "Sarajevo"
                ],
                [
                    "Skopje",
                    "Skopje"
                ],
                [
                    "Stockholm",
                    "Stockholm"
                ],
                [
                    "Vienna",
                    "Vienna"
                ],
                [
                    "Warsaw",
                    "Warsaw"
                ],
                [
                    "West Central Africa",
                    "West Central Africa"
                ],
                [
                    "Zagreb",
                    "Zagreb"
                ],
                [
                    "Athens",
                    "Athens"
                ],
                [
                    "Bucharest",
                    "Bucharest"
                ],
                [
                    "Cairo",
                    "Cairo"
                ],
                [
                    "Harare",
                    "Harare"
                ],
                [
                    "Helsinki",
                    "Helsinki"
                ],
                [
                    "Jerusalem",
                    "Jerusalem"
                ],
                [
                    "Kaliningrad",
                    "Kaliningrad"
                ],
                [
                    "Kyiv",
                    "Kyiv"
                ],
                [
                    "Pretoria",
                    "Pretoria"
                ],
                [
                    "Riga",
                    "Riga"
                ],
                [
                    "Sofia",
                    "Sofia"
                ],
                [
                    "Tallinn",
                    "Tallinn"
                ],
                [
                    "Vilnius",
                    "Vilnius"
                ],
                [
                    "Baghdad",
                    "Baghdad"
                ],
                [
                    "Istanbul",
                    "Istanbul"
                ],
                [
                    "Kuwait",
                    "Kuwait"
                ],
                [
                    "Minsk",
                    "Minsk"
                ],
                [
                    "Moscow",
                    "Moscow"
                ],
                [
                    "Nairobi",
                    "Nairobi"
                ],
                [
                    "Riyadh",
                    "Riyadh"
                ],
                [
                    "St. Petersburg",
                    "St. Petersburg"
                ],
                [
                    "Tehran",
                    "Tehran"
                ],
                [
                    "Abu Dhabi",
                    "Abu Dhabi"
                ],
                [
                    "Baku",
                    "Baku"
                ],
                [
                    "Muscat",
                    "Muscat"
                ],
                [
                    "Samara",
                    "Samara"
                ],
                [
                    "Tbilisi",
                    "Tbilisi"
                ],
                [
                    "Volgograd",
                    "Volgograd"
                ],
                [
                    "Yerevan",
                    "Yerevan"
                ],
                [
                    "Kabul",
                    "Kabul"
                ],
                [
                    "Ekaterinburg",
                    "Ekaterinburg"
                ],
                [
                    "Islamabad",
                    "Islamabad"
                ],
                [
                    "Karachi",
                    "Karachi"
                ],
                [
                    "Tashkent",
                    "Tashkent"
                ],
                [
                    "Chennai",
                    "Chennai"
                ],
                [
                    "Kolkata",
                    "Kolkata"
                ],
                [
                    "Mumbai",
                    "Mumbai"
                ],
                [
                    "New Delhi",
                    "New Delhi"
                ],
                [
                    "Sri Jayawardenepura",
                    "Sri Jayawardenepura"
                ],
                [
                    "Kathmandu",
                    "Kathmandu"
                ],
                [
                    "Almaty",
                    "Almaty"
                ],
                [
                    "Astana",
                    "Astana"
                ],
                [
                    "Dhaka",
                    "Dhaka"
                ],
                [
                    "Urumqi",
                    "Urumqi"
                ],
                [
                    "Rangoon",
                    "Rangoon"
                ],
                [
                    "Bangkok",
                    "Bangkok"
                ],
                [
                    "Hanoi",
                    "Hanoi"
                ],
                [
                    "Jakarta",
                    "Jakarta"
                ],
                [
                    "Krasnoyarsk",
                    "Krasnoyarsk"
                ],
                [
                    "Novosibirsk",
                    "Novosibirsk"
                ],
                [
                    "Beijing",
                    "Beijing"
                ],
                [
                    "Chongqing",
                    "Chongqing"
                ],
                [
                    "Hong Kong",
                    "Hong Kong"
                ],
                [
                    "Irkutsk",
                    "Irkutsk"
                ],
                [
                    "Kuala Lumpur",
                    "Kuala Lumpur"
                ],
                [
                    "Perth",
                    "Perth"
                ],
                [
                    "Singapore",
                    "Singapore"
                ],
                [
                    "Taipei",
                    "Taipei"
                ],
                [
                    "Ulaanbaatar",
                    "Ulaanbaatar"
                ],
                [
                    "Osaka",
                    "Osaka"
                ],
                [
                    "Sapporo",
                    "Sapporo"
                ],
                [
                    "Seoul",
                    "Seoul"
                ],
                [
                    "Tokyo",
                    "Tokyo"
                ],
                [
                    "Yakutsk",
                    "Yakutsk"
                ],
                [
                    "Adelaide",
                    "Adelaide"
                ],
                [
                    "Darwin",
                    "Darwin"
                ],
                [
                    "Brisbane",
                    "Brisbane"
                ],
                [
                    "Canberra",
                    "Canberra"
                ],
                [
                    "Guam",
                    "Guam"
                ],
                [
                    "Hobart",
                    "Hobart"
                ],
                [
                    "Melbourne",
                    "Melbourne"
                ],
                [
                    "Port Moresby",
                    "Port Moresby"
                ],
                [
                    "Sydney",
                    "Sydney"
                ],
                [
                    "Vladivostok",
                    "Vladivostok"
                ],
                [
                    "Magadan",
                    "Magadan"
                ],
                [
                    "New Caledonia",
                    "New Caledonia"
                ],
                [
                    "Solomon Is.",
                    "Solomon Is."
                ],
                [
                    "Srednekolymsk",
                    "Srednekolymsk"
                ],
                [
                    "Auckland",
                    "Auckland"
                ],
                [
                    "Fiji",
                    "Fiji"
                ],
                [
                    "Kamchatka",
                    "Kamchatka"
                ],
                [
                    "Marshall Is.",
                    "Marshall Is."
                ],
                [
                    "Wellington",
                    "Wellington"
                ],
                [
                    "Chatham Is.",
                    "Chatham Is."
                ],
                [
                    "Nuku'alofa",
                    "Nuku'alofa"
                ],
                [
                    "Samoa",
                    "Samoa"
                ],
                [
                    "Tokelau Is.",
                    "Tokelau Is."
                ]
            ]
        }
    ]
}
Snowflake (Secondary) snowflake_secondary
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "host",
            "type": "string",
            "optional": false,
            "label": "Account name",
            "hint": "Account name of your Snowflake instance. This depends on the cloud platform (AWS or Azure)\nand region where your Snowflake instance is hosted.\n<a target=\"_blank\" href=\"https://docs.workato.com/connectors/snowflake.html#how-to-connect-to-snowflake-on-workato\">Learn more</a>."
        },
        {
            "name": "warehouse",
            "type": "string",
            "label": "Warehouse",
            "hint": "Full name of warehouse to perform all operations for this connection.\n<a target=\"_blank\" href=\"https://docs.workato.com/connectors/snowflake.html#considerations-for-warehouse\">Learn more</a>"
        },
        {
            "name": "database",
            "type": "string",
            "label": "Database name"
        },
        {
            "name": "user",
            "type": "string",
            "label": "User name"
        },
        {
            "name": "password",
            "type": "string",
            "optional": false,
            "label": "Password"
        },
        {
            "name": "schema_name",
            "type": "string",
            "optional": true,
            "label": "Schema",
            "hint": "\"public\" schema by default"
        },
        {
            "name": "db_timezone",
            "type": "string",
            "optional": true,
            "label": "Database timezone",
            "hint": "Apply this to all timestamps without timezone.\n<a target=\"_blank\" href=\"https://docs.workato.com/connectors/snowflake.html#database-timezone\">Learn more</a>",
            "pick_list":
            [
                [
                    "American Samoa",
                    "American Samoa"
                ],
                [
                    "International Date Line West",
                    "International Date Line West"
                ],
                [
                    "Midway Island",
                    "Midway Island"
                ],
                [
                    "Hawaii",
                    "Hawaii"
                ],
                [
                    "Alaska",
                    "Alaska"
                ],
                [
                    "Pacific Time (US & Canada)",
                    "Pacific Time (US & Canada)"
                ],
                [
                    "Tijuana",
                    "Tijuana"
                ],
                [
                    "Arizona",
                    "Arizona"
                ],
                [
                    "Chihuahua",
                    "Chihuahua"
                ],
                [
                    "Mazatlan",
                    "Mazatlan"
                ],
                [
                    "Mountain Time (US & Canada)",
                    "Mountain Time (US & Canada)"
                ],
                [
                    "Central America",
                    "Central America"
                ],
                [
                    "Central Time (US & Canada)",
                    "Central Time (US & Canada)"
                ],
                [
                    "Guadalajara",
                    "Guadalajara"
                ],
                [
                    "Mexico City",
                    "Mexico City"
                ],
                [
                    "Monterrey",
                    "Monterrey"
                ],
                [
                    "Saskatchewan",
                    "Saskatchewan"
                ],
                [
                    "Bogota",
                    "Bogota"
                ],
                [
                    "Eastern Time (US & Canada)",
                    "Eastern Time (US & Canada)"
                ],
                [
                    "Indiana (East)",
                    "Indiana (East)"
                ],
                [
                    "Lima",
                    "Lima"
                ],
                [
                    "Quito",
                    "Quito"
                ],
                [
                    "Atlantic Time (Canada)",
                    "Atlantic Time (Canada)"
                ],
                [
                    "Caracas",
                    "Caracas"
                ],
                [
                    "Georgetown",
                    "Georgetown"
                ],
                [
                    "La Paz",
                    "La Paz"
                ],
                [
                    "Santiago",
                    "Santiago"
                ],
                [
                    "Newfoundland",
                    "Newfoundland"
                ],
                [
                    "Brasilia",
                    "Brasilia"
                ],
                [
                    "Buenos Aires",
                    "Buenos Aires"
                ],
                [
                    "Greenland",
                    "Greenland"
                ],
                [
                    "Montevideo",
                    "Montevideo"
                ],
                [
                    "Mid-Atlantic",
                    "Mid-Atlantic"
                ],
                [
                    "Azores",
                    "Azores"
                ],
                [
                    "Cape Verde Is.",
                    "Cape Verde Is."
                ],
                [
                    "Casablanca",
                    "Casablanca"
                ],
                [
                    "Dublin",
                    "Dublin"
                ],
                [
                    "Edinburgh",
                    "Edinburgh"
                ],
                [
                    "Lisbon",
                    "Lisbon"
                ],
                [
                    "London",
                    "London"
                ],
                [
                    "Monrovia",
                    "Monrovia"
                ],
                [
                    "UTC",
                    "UTC"
                ],
                [
                    "Amsterdam",
                    "Amsterdam"
                ],
                [
                    "Belgrade",
                    "Belgrade"
                ],
                [
                    "Berlin",
                    "Berlin"
                ],
                [
                    "Bern",
                    "Bern"
                ],
                [
                    "Bratislava",
                    "Bratislava"
                ],
                [
                    "Brussels",
                    "Brussels"
                ],
                [
                    "Budapest",
                    "Budapest"
                ],
                [
                    "Copenhagen",
                    "Copenhagen"
                ],
                [
                    "Ljubljana",
                    "Ljubljana"
                ],
                [
                    "Madrid",
                    "Madrid"
                ],
                [
                    "Paris",
                    "Paris"
                ],
                [
                    "Prague",
                    "Prague"
                ],
                [
                    "Rome",
                    "Rome"
                ],
                [
                    "Sarajevo",
                    "Sarajevo"
                ],
                [
                    "Skopje",
                    "Skopje"
                ],
                [
                    "Stockholm",
                    "Stockholm"
                ],
                [
                    "Vienna",
                    "Vienna"
                ],
                [
                    "Warsaw",
                    "Warsaw"
                ],
                [
                    "West Central Africa",
                    "West Central Africa"
                ],
                [
                    "Zagreb",
                    "Zagreb"
                ],
                [
                    "Athens",
                    "Athens"
                ],
                [
                    "Bucharest",
                    "Bucharest"
                ],
                [
                    "Cairo",
                    "Cairo"
                ],
                [
                    "Harare",
                    "Harare"
                ],
                [
                    "Helsinki",
                    "Helsinki"
                ],
                [
                    "Jerusalem",
                    "Jerusalem"
                ],
                [
                    "Kaliningrad",
                    "Kaliningrad"
                ],
                [
                    "Kyiv",
                    "Kyiv"
                ],
                [
                    "Pretoria",
                    "Pretoria"
                ],
                [
                    "Riga",
                    "Riga"
                ],
                [
                    "Sofia",
                    "Sofia"
                ],
                [
                    "Tallinn",
                    "Tallinn"
                ],
                [
                    "Vilnius",
                    "Vilnius"
                ],
                [
                    "Baghdad",
                    "Baghdad"
                ],
                [
                    "Istanbul",
                    "Istanbul"
                ],
                [
                    "Kuwait",
                    "Kuwait"
                ],
                [
                    "Minsk",
                    "Minsk"
                ],
                [
                    "Moscow",
                    "Moscow"
                ],
                [
                    "Nairobi",
                    "Nairobi"
                ],
                [
                    "Riyadh",
                    "Riyadh"
                ],
                [
                    "St. Petersburg",
                    "St. Petersburg"
                ],
                [
                    "Tehran",
                    "Tehran"
                ],
                [
                    "Abu Dhabi",
                    "Abu Dhabi"
                ],
                [
                    "Baku",
                    "Baku"
                ],
                [
                    "Muscat",
                    "Muscat"
                ],
                [
                    "Samara",
                    "Samara"
                ],
                [
                    "Tbilisi",
                    "Tbilisi"
                ],
                [
                    "Volgograd",
                    "Volgograd"
                ],
                [
                    "Yerevan",
                    "Yerevan"
                ],
                [
                    "Kabul",
                    "Kabul"
                ],
                [
                    "Ekaterinburg",
                    "Ekaterinburg"
                ],
                [
                    "Islamabad",
                    "Islamabad"
                ],
                [
                    "Karachi",
                    "Karachi"
                ],
                [
                    "Tashkent",
                    "Tashkent"
                ],
                [
                    "Chennai",
                    "Chennai"
                ],
                [
                    "Kolkata",
                    "Kolkata"
                ],
                [
                    "Mumbai",
                    "Mumbai"
                ],
                [
                    "New Delhi",
                    "New Delhi"
                ],
                [
                    "Sri Jayawardenepura",
                    "Sri Jayawardenepura"
                ],
                [
                    "Kathmandu",
                    "Kathmandu"
                ],
                [
                    "Almaty",
                    "Almaty"
                ],
                [
                    "Astana",
                    "Astana"
                ],
                [
                    "Dhaka",
                    "Dhaka"
                ],
                [
                    "Urumqi",
                    "Urumqi"
                ],
                [
                    "Rangoon",
                    "Rangoon"
                ],
                [
                    "Bangkok",
                    "Bangkok"
                ],
                [
                    "Hanoi",
                    "Hanoi"
                ],
                [
                    "Jakarta",
                    "Jakarta"
                ],
                [
                    "Krasnoyarsk",
                    "Krasnoyarsk"
                ],
                [
                    "Novosibirsk",
                    "Novosibirsk"
                ],
                [
                    "Beijing",
                    "Beijing"
                ],
                [
                    "Chongqing",
                    "Chongqing"
                ],
                [
                    "Hong Kong",
                    "Hong Kong"
                ],
                [
                    "Irkutsk",
                    "Irkutsk"
                ],
                [
                    "Kuala Lumpur",
                    "Kuala Lumpur"
                ],
                [
                    "Perth",
                    "Perth"
                ],
                [
                    "Singapore",
                    "Singapore"
                ],
                [
                    "Taipei",
                    "Taipei"
                ],
                [
                    "Ulaanbaatar",
                    "Ulaanbaatar"
                ],
                [
                    "Osaka",
                    "Osaka"
                ],
                [
                    "Sapporo",
                    "Sapporo"
                ],
                [
                    "Seoul",
                    "Seoul"
                ],
                [
                    "Tokyo",
                    "Tokyo"
                ],
                [
                    "Yakutsk",
                    "Yakutsk"
                ],
                [
                    "Adelaide",
                    "Adelaide"
                ],
                [
                    "Darwin",
                    "Darwin"
                ],
                [
                    "Brisbane",
                    "Brisbane"
                ],
                [
                    "Canberra",
                    "Canberra"
                ],
                [
                    "Guam",
                    "Guam"
                ],
                [
                    "Hobart",
                    "Hobart"
                ],
                [
                    "Melbourne",
                    "Melbourne"
                ],
                [
                    "Port Moresby",
                    "Port Moresby"
                ],
                [
                    "Sydney",
                    "Sydney"
                ],
                [
                    "Vladivostok",
                    "Vladivostok"
                ],
                [
                    "Magadan",
                    "Magadan"
                ],
                [
                    "New Caledonia",
                    "New Caledonia"
                ],
                [
                    "Solomon Is.",
                    "Solomon Is."
                ],
                [
                    "Srednekolymsk",
                    "Srednekolymsk"
                ],
                [
                    "Auckland",
                    "Auckland"
                ],
                [
                    "Fiji",
                    "Fiji"
                ],
                [
                    "Kamchatka",
                    "Kamchatka"
                ],
                [
                    "Marshall Is.",
                    "Marshall Is."
                ],
                [
                    "Wellington",
                    "Wellington"
                ],
                [
                    "Chatham Is.",
                    "Chatham Is."
                ],
                [
                    "Nuku'alofa",
                    "Nuku'alofa"
                ],
                [
                    "Samoa",
                    "Samoa"
                ],
                [
                    "Tokelau Is.",
                    "Tokelau Is."
                ]
            ]
        }
    ]
}
SOAP tools by Workato soap
Splunk splunk
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "server_url",
            "type": "string",
            "label": "Server URL",
            "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'>Workato Add-on for Splunk</a> first.\n"
        },
        {
            "name": "username",
            "type": "string",
            "label": "Username",
            "hint": "The Splunk username (for example, admin)"
        },
        {
            "name": "password",
            "type": "string",
            "label": "Password",
            "hint": "The password for the Splunk username"
        }
    ]
}
SQL Server mssql
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "profile",
            "type": "string",
            "label": "On-prem connection profile"
        },
        {
            "name": "username",
            "type": "string",
            "label": "Username",
            "hint": "For Azure SQL use username@server"
        },
        {
            "name": "password",
            "type": "string",
            "label": "Password"
        },
        {
            "name": "host",
            "type": "string",
            "label": "Host"
        },
        {
            "name": "port",
            "type": "string",
            "optional": true,
            "label": "Port",
            "hint": "Port number, default is 1433",
            "default": 1433
        },
        {
            "name": "database",
            "type": "string",
            "label": "Database"
        },
        {
            "name": "azure",
            "type": "boolean",
            "optional": true,
            "label": "Azure SQL",
            "hint": "Choose 'yes' if connecting to Azure SQL",
            "default": "false"
        }
    ]
}
SQL Server (Secondary) mssql_secondary
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "profile",
            "type": "string",
            "label": "On-prem connection profile"
        },
        {
            "name": "username",
            "type": "string",
            "label": "Username",
            "hint": "For Azure SQL use username@server"
        },
        {
            "name": "password",
            "type": "string",
            "label": "Password"
        },
        {
            "name": "host",
            "type": "string",
            "label": "Host"
        },
        {
            "name": "port",
            "type": "string",
            "optional": true,
            "label": "Port",
            "hint": "Port number, default is 1433",
            "default": 1433
        },
        {
            "name": "database",
            "type": "string",
            "label": "Database"
        },
        {
            "name": "azure",
            "type": "boolean",
            "optional": true,
            "label": "Azure SQL",
            "hint": "Choose 'yes' if connecting to Azure SQL",
            "default": "false"
        }
    ]
}
Stripe stripe
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "demo",
            "type": "boolean",
            "optional": true,
            "label": "Demo",
            "hint": "Is this connecting to a demo account?",
            "default": "false"
        }
    ]
}
SuccessFactors success_factors
SurveyMonkey surveymonkey
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Tango Card tango_card
TaskRay taskray
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "sandbox",
            "type": "boolean",
            "optional": true,
            "label": "Sandbox",
            "hint": "Is this connecting to a sandbox account?",
            "default": "false"
        }
    ]
}
TrackVia trackvia
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "custom_domain",
            "type": "string",
            "optional": "true",
            "label": "TrackVia subdomain",
            "hint": "Enter your TrackVia subdomain. For example, customdomain.trackvia.com. By default, <b>go.trackvia.com</b> will be used."
        }
    ]
}
Tradeshift tradeshift
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "sandbox",
            "type": "boolean",
            "optional": true,
            "label": "Sandbox",
            "hint": "              If <b>yes</b>, click <a target='_blank' href=https://sandbox.tradeshift.com/#/apps/Tradeshift.AppStore/apps/Workato.tradeshiftAdapterProduction>here</a> to activate your sandbox account else click <a target='_blank' href=https://go.tradeshift.com/#/apps/Tradeshift.AppStore/apps/Workato.tradeshiftAdapterProduction>here</a> to activate your production account.\n",
            "default": "false"
        }
    ]
}
Trello trello
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
TSheets tsheets
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Twilio twilio
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "sid",
            "type": "string",
            "label": "Account SID",
            "hint": "See your Twilio <a href=\"https://www.twilio.com/user/account\">account page</a>"
        },
        {
            "name": "token",
            "type": "string",
            "label": "Auth token",
            "hint": "See your Twilio <a href=\"https://www.twilio.com/user/account\">account page</a>"
        }
    ]
}
Twitter twitter
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Twitter Ads twitter_ads
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Unbounce unbounce
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "api_key",
            "type": "string",
            "optional": false,
            "label": "Api key",
            "hint": "Profile (top right) > Manage Account > API Access"
        }
    ]
}
Utilities utility
Variables by Workato workato_variable
Veeva CRM veeva
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "sandbox",
            "type": "boolean",
            "optional": true,
            "label": "Sandbox",
            "hint": "Is this connecting to a sandbox account?",
            "default": "false"
        }
    ]
}
Vend vend
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Vlocity vlocity
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "sandbox",
            "type": "boolean",
            "optional": true,
            "label": "Sandbox",
            "hint": "Is this connecting to a sandbox account?",
            "default": "false"
        }
    ]
}
Watson Tone Analyzer watson_tone_analyzer
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "username",
            "type": "string",
            "optional": false,
            "label": "Username",
            "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>"
        },
        {
            "name": "password",
            "type": "string",
            "optional": false,
            "label": "Password",
            "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>"
        }
    ]
}
Webhooks workato_webhooks
WebMerge webmerge
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "api_key",
            "type": "string",
            "optional": false,
            "label": "API key",
            "hint": "Select your profile icon->Api Access to get the API key"
        },
        {
            "name": "api_secret",
            "type": "string",
            "optional": false,
            "label": "API secret",
            "hint": "Select your profile icon->Api Access to get the API secret"
        }
    ]
}
WooCommerce woocommerce
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "consumer_key",
            "type": "string",
            "label": "Consumer key",
            "hint": "Consumer key is found at API tab of WooCommerce settings"
        },
        {
            "name": "consumer_secret",
            "type": "string",
            "label": "Consumer secret",
            "hint": "Consumer secret is found at API tab of WooCommerce settings"
        },
        {
            "name": "host",
            "type": "string",
            "label": "Host",
            "hint": "If your WooCommerce home page url is https://app.Woocommerce.com, then use app.Woocommerce.com"
        },
        {
            "name": "order_ids",
            "type": "string",
            "optional": true,
            "label": "Example order IDs",
            "hint": "Comma separated order IDs to sample custom fields. Takes up to 3 values"
        }
    ]
}
WordPress.com word_press
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Workato Track workato_track
Workbot for Microsoft Teams teams_bot
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Workbot for Microsoft Teams Old skype_bot
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    []
}
Workbot for Slack slack_bot
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "nlu_provider_shared_account_id",
            "type": "string",
            "optional": true,
            "label": "NLU provider",
            "hint": "Choose a connection for your conversational interface. Supports Google's DialogFlow and Amazon Lex."
        },
        {
            "name": "advanced",
            "type": "object",
            "optional": true,
            "label": "Advanced",
            "hint": "Additional fields that are not needed for most users",
            "properties":
            [
                {
                    "name": "extra_tokens",
                    "type": "string",
                    "optional": true,
                    "label": "Slash commands verification tokens",
                    "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/workbot/legacy-slash-commands.html#configuring-the-workbot-connection' target='_blank'>Learn more.</a>"
                },
                {
                    "name": "custom_help",
                    "type": "string",
                    "optional": true,
                    "label": "Custom help",
                    "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>"
                }
            ]
        }
    ]
}
Workbot for Workplace workplace_bot
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "custom_access_token",
            "type": "string",
            "optional": true,
            "label": "Custom Access Token"
        }
    ]
}
Workday workday
JSON の表示
{
    "oauth": true,
    "personalization": false,
    "input":
    [
        {
            "name": "login",
            "type": "string",
            "label": "Login name"
        },
        {
            "name": "password",
            "type": "string",
            "label": "Password"
        },
        {
            "name": "soap_api_version",
            "type": "string",
            "label": "Workday web services version",
            "pick_list":
            [
                [
                    "29.0",
                    "29.0"
                ],
                [
                    "32.2",
                    "32.2"
                ]
            ],
            "default": "29.0"
        },
        {
            "name": "tenant_id",
            "type": "string",
            "label": "Tenant ID",
            "hint": "Tenant ID can be found in the URL when you are logged into Workday.<br>\n    For example in https://impl.workday.com/sample_company/d/home.htmld, tenant ID is sample_company"
        },
        {
            "name": "base_uri",
            "type": "string",
            "label": "WSDL URL",
            "hint": "You need to provide any wsdl url. <br>\n    The manual how to get it could be found <a href='https://community.workday.com/articles/6120#endpoint' target='_blank'>here</a>",
            "default": "https://wd2-impl-services1.workday.com/ccx/service/"
        },
        {
            "name": "oauth",
            "type": "boolean",
            "label": "use custom objects?",
            "hint": "Working with custom objects in Workday requires additional connection settings."
        },
        {
            "name": "client_id",
            "type": "string",
            "optional": true,
            "label": "Client ID",
            "hint": "Found in API Client settings"
        },
        {
            "name": "client_secret",
            "type": "string",
            "optional": true,
            "label": "Client secret",
            "hint": "Found in API Client settings"
        },
        {
            "name": "refresh_token",
            "type": "string",
            "optional": true,
            "label": "Refresh token",
            "hint": "If API client for Integrations is used"
        },
        {
            "name": "authorization_endpoint",
            "type": "string",
            "optional": true,
            "label": "Authorization endpoint",
            "hint": "Found in API Client settings"
        },
        {
            "name": "token_endpoint",
            "type": "string",
            "optional": true,
            "label": "Token endpoint",
            "hint": "Found in API Client settings"
        }
    ]
}
Workday REST workday_rest
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "rest_api_endpoint",
            "type": "string",
            "label": "REST API endpoint",
            "hint": "                 Found in the API client details page. Learn how to register an API client\n                 <a href='https://docs.workato.com/connectors/workday/connection_setup.html#register-api-client' target=_blank>here</a>.\n",
            "default": "https://wd2-impl-services1.workday.com/ccx/service/acme"
        },
        {
            "name": "authorization_endpoint",
            "type": "string",
            "label": "Authorization endpoint",
            "hint": "Found in the API client details page."
        },
        {
            "name": "token_endpoint",
            "type": "string",
            "label": "Token endpoint",
            "hint": "Found in the API client details page."
        },
        {
            "name": "client_id",
            "type": "string",
            "label": "Client ID",
            "hint": "Found in the API client details page."
        },
        {
            "name": "client_secret",
            "type": "string",
            "label": "Client secret",
            "hint": "Found in the API client details page."
        },
        {
            "name": "refresh_token",
            "type": "string",
            "optional": true,
            "label": "Refresh token",
            "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"
        }
    ]
}
Workday Web Services workday_oauth
Workfront workfront
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "username",
            "type": "string",
            "optional": false,
            "label": "Username",
            "hint": "Your Workfront username."
        },
        {
            "name": "password",
            "type": "string",
            "optional": false,
            "label": "Password",
            "hint": "Your Workfront password."
        },
        {
            "name": "subdomain",
            "type": "string",
            "optional": false,
            "label": "Subdomain",
            "hint": "Your Workfront subdomain name as found in your Workfront URL."
        }
    ]
}
Workfront (Secondary) workfront_secondary
Wrike wrike
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "advanced_settings",
            "type": "object",
            "optional": true,
            "label": "Advanced settings",
            "properties":
            [
                {
                    "name": "api_scope",
                    "type": "string",
                    "optional": true,
                    "label": "Api scope",
                    "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"
                }
            ]
        }
    ]
}
Wrike (Secondary) wrike_secondary
JSON の表示
{
    "oauth": true,
    "personalization": true,
    "input":
    [
        {
            "name": "advanced_settings",
            "type": "object",
            "optional": true,
            "label": "Advanced settings",
            "properties":
            [
                {
                    "name": "api_scope",
                    "type": "string",
                    "optional": true,
                    "label": "Api scope",
                    "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"
                }
            ]
        }
    ]
}
Wufoo wufoo
JSON の表示
{
    "oauth": false,
    "personalization": false,
    "input":
    [
        {
            "name": "api_key",
            "type": "string",
            "label": "API key",
            "hint": "<a href=\"http://www.wufoo.com/docs/api/v3/#key\" target=\"_blank\">How do I find the Wufoo API key?</a>"
        },
        {
            "name": "subdomain",
            "type": "string",
            "label": "Sub-domain",
            "hint": "Enter only the subdomain (located before .wufoo.com)"
        }
    ]
}
Xactly xactly
JSON の表示
{
   "oauth":false,
   "personalization":false,
   "input":[
      {
         "name":"subdomain",
         "type":"string",
         "optional":false,
         "label":"Sub-domain"
      },
      {
         "name":"client_id",
         "type":"string",
         "optional":false,
         "label":"Client ID"
      },
      {
         "name":"consumer",
         "type":"string",
         "optional":false,
         "label":"Consumer"
      },
      {
         "name":"username",
         "type":"string",
         "optional":false,
         "label":"Username"
      },
      {
         "name":"password",
         "type":"string",
         "optional":false,
         "label":"Password"
      }
   ]
}
Xero xero
JSON の表示
{
   "oauth":true,
   "personalization":true,
   "input":[
      {
         "name":"payroll",
         "type":"boolean",
         "optional":true,
         "label":"Payroll",
         "hint":"Select 'Yes' if Xero account is enabled for payroll, note that payroll connectivity is only available in AU and US editions",
         "default":"false"
      }
   ]
}
Xero Practice Manager xero_practice_manager
XML tools by Workato xml_tools
YAML parser by Workato yaml_parser
Zendesk zendesk
JSON の表示
{
   "oauth":true,
   "personalization":true,
   "input":[
      {
         "name":"subdomain",
         "type":"string",
         "label":"Subdomain",
         "hint":"If your Zendesk URL is https://acme.zendesk.com then your subdomain is <b>acme</b>"
      },
      {
         "name":"authentication_type",
         "type":"string",
         "label":"Authentication type",
         "pick_list":[
            [
               "Basic",
               "basic"
            ],
            [
               "OAuth 2.0",
               "oauth"
            ]
         ],
         "default":"oauth"
      },
      {
         "name":"username",
         "type":"string",
         "label":"Username",
         "hint":"When authenticating with tokens, add <b>/token</b> to the end of your username."
      },
      {
         "name":"password",
         "type":"string",
         "label":"Password",
         "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"
      }
   ]
}
Zendesk (Secondary) zendesk_secondary
JSON の表示
{
   "oauth":true,
   "personalization":true,
   "input":[
      {
         "name":"subdomain",
         "type":"string",
         "label":"Subdomain",
         "hint":"If your Zendesk URL is https://acme.zendesk.com then your subdomain is <b>acme</b>"
      },
      {
         "name":"authentication_type",
         "type":"string",
         "label":"Authentication type",
         "pick_list":[
            [
               "Basic",
               "basic"
            ],
            [
               "OAuth 2.0",
               "oauth"
            ]
         ],
         "default":"oauth"
      },
      {
         "name":"username",
         "type":"string",
         "label":"Username",
         "hint":"When authenticating with tokens, add <b>/token</b> to the end of your username."
      },
      {
         "name":"password",
         "type":"string",
         "label":"Password",
         "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"
      }
   ]
}
Zendesk Sunshine zendesk_sunshine
Zenefits zenefits
JSON の表示
{
   "oauth":true,
   "personalization":true,
   "input":[
      
   ]
}
Zoho CRM zohocrm
JSON の表示
{
   "oauth":true,
   "personalization":true,
   "input":[
      {
         "name":"timezone",
         "type":"string",
         "optional":true,
         "label":"Account timezone",
         "hint":"Needed for consistency with Zoho - pick same as your Zoho profile",
         "pick_list":[
            [
               "American Samoa (-11:00)",
               "American Samoa"
            ],
            [
               "International Date Line West (-11:00)",
               "International Date Line West"
            ],
            [
               "Midway Island (-11:00)",
               "Midway Island"
            ],
            [
               "Hawaii (-10:00)",
               "Hawaii"
            ],
            [
               "Alaska (-9:00)",
               "Alaska"
            ],
            [
               "Pacific Time (US & Canada) (-8:00)",
               "Pacific Time (US & Canada)"
            ],
            [
               "Tijuana (-8:00)",
               "Tijuana"
            ],
            [
               "Arizona (-7:00)",
               "Arizona"
            ],
            [
               "Chihuahua (-7:00)",
               "Chihuahua"
            ],
            [
               "Mazatlan (-7:00)",
               "Mazatlan"
            ],
            [
               "Mountain Time (US & Canada) (-7:00)",
               "Mountain Time (US & Canada)"
            ],
            [
               "Central America (-6:00)",
               "Central America"
            ],
            [
               "Central Time (US & Canada) (-6:00)",
               "Central Time (US & Canada)"
            ],
            [
               "Guadalajara (-6:00)",
               "Guadalajara"
            ],
            [
               "Mexico City (-6:00)",
               "Mexico City"
            ],
            [
               "Monterrey (-6:00)",
               "Monterrey"
            ],
            [
               "Saskatchewan (-6:00)",
               "Saskatchewan"
            ],
            [
               "Bogota (-5:00)",
               "Bogota"
            ],
            [
               "Eastern Time (US & Canada) (-5:00)",
               "Eastern Time (US & Canada)"
            ],
            [
               "Indiana (East) (-5:00)",
               "Indiana (East)"
            ],
            [
               "Lima (-5:00)",
               "Lima"
            ],
            [
               "Quito (-5:00)",
               "Quito"
            ],
            [
               "Atlantic Time (Canada) (-4:00)",
               "Atlantic Time (Canada)"
            ],
            [
               "Caracas (-4:00)",
               "Caracas"
            ],
            [
               "Georgetown (-4:00)",
               "Georgetown"
            ],
            [
               "La Paz (-4:00)",
               "La Paz"
            ],
            [
               "Santiago (-4:00)",
               "Santiago"
            ],
            [
               "Newfoundland (-4:30)",
               "Newfoundland"
            ],
            [
               "Brasilia (-3:00)",
               "Brasilia"
            ],
            [
               "Buenos Aires (-3:00)",
               "Buenos Aires"
            ],
            [
               "Greenland (-3:00)",
               "Greenland"
            ],
            [
               "Montevideo (-3:00)",
               "Montevideo"
            ],
            [
               "Mid-Atlantic (-2:00)",
               "Mid-Atlantic"
            ],
            [
               "Azores (-1:00)",
               "Azores"
            ],
            [
               "Cape Verde Is. (-1:00)",
               "Cape Verde Is."
            ],
            [
               "Casablanca (+0:00)",
               "Casablanca"
            ],
            [
               "Dublin (+0:00)",
               "Dublin"
            ],
            [
               "Edinburgh (+0:00)",
               "Edinburgh"
            ],
            [
               "Lisbon (+0:00)",
               "Lisbon"
            ],
            [
               "London (+0:00)",
               "London"
            ],
            [
               "Monrovia (+0:00)",
               "Monrovia"
            ],
            [
               "UTC (+0:00)",
               "UTC"
            ],
            [
               "Amsterdam (+1:00)",
               "Amsterdam"
            ],
            [
               "Belgrade (+1:00)",
               "Belgrade"
            ],
            [
               "Berlin (+1:00)",
               "Berlin"
            ],
            [
               "Bern (+1:00)",
               "Bern"
            ],
            [
               "Bratislava (+1:00)",
               "Bratislava"
            ],
            [
               "Brussels (+1:00)",
               "Brussels"
            ],
            [
               "Budapest (+1:00)",
               "Budapest"
            ],
            [
               "Copenhagen (+1:00)",
               "Copenhagen"
            ],
            [
               "Ljubljana (+1:00)",
               "Ljubljana"
            ],
            [
               "Madrid (+1:00)",
               "Madrid"
            ],
            [
               "Paris (+1:00)",
               "Paris"
            ],
            [
               "Prague (+1:00)",
               "Prague"
            ],
            [
               "Rome (+1:00)",
               "Rome"
            ],
            [
               "Sarajevo (+1:00)",
               "Sarajevo"
            ],
            [
               "Skopje (+1:00)",
               "Skopje"
            ],
            [
               "Stockholm (+1:00)",
               "Stockholm"
            ],
            [
               "Vienna (+1:00)",
               "Vienna"
            ],
            [
               "Warsaw (+1:00)",
               "Warsaw"
            ],
            [
               "West Central Africa (+1:00)",
               "West Central Africa"
            ],
            [
               "Zagreb (+1:00)",
               "Zagreb"
            ],
            [
               "Athens (+2:00)",
               "Athens"
            ],
            [
               "Bucharest (+2:00)",
               "Bucharest"
            ],
            [
               "Cairo (+2:00)",
               "Cairo"
            ],
            [
               "Harare (+2:00)",
               "Harare"
            ],
            [
               "Helsinki (+2:00)",
               "Helsinki"
            ],
            [
               "Jerusalem (+2:00)",
               "Jerusalem"
            ],
            [
               "Kaliningrad (+2:00)",
               "Kaliningrad"
            ],
            [
               "Kyiv (+2:00)",
               "Kyiv"
            ],
            [
               "Pretoria (+2:00)",
               "Pretoria"
            ],
            [
               "Riga (+2:00)",
               "Riga"
            ],
            [
               "Sofia (+2:00)",
               "Sofia"
            ],
            [
               "Tallinn (+2:00)",
               "Tallinn"
            ],
            [
               "Vilnius (+2:00)",
               "Vilnius"
            ],
            [
               "Baghdad (+3:00)",
               "Baghdad"
            ],
            [
               "Istanbul (+3:00)",
               "Istanbul"
            ],
            [
               "Kuwait (+3:00)",
               "Kuwait"
            ],
            [
               "Minsk (+3:00)",
               "Minsk"
            ],
            [
               "Moscow (+3:00)",
               "Moscow"
            ],
            [
               "Nairobi (+3:00)",
               "Nairobi"
            ],
            [
               "Riyadh (+3:00)",
               "Riyadh"
            ],
            [
               "St. Petersburg (+3:00)",
               "St. Petersburg"
            ],
            [
               "Tehran (+3:30)",
               "Tehran"
            ],
            [
               "Abu Dhabi (+4:00)",
               "Abu Dhabi"
            ],
            [
               "Baku (+4:00)",
               "Baku"
            ],
            [
               "Muscat (+4:00)",
               "Muscat"
            ],
            [
               "Samara (+4:00)",
               "Samara"
            ],
            [
               "Tbilisi (+4:00)",
               "Tbilisi"
            ],
            [
               "Volgograd (+4:00)",
               "Volgograd"
            ],
            [
               "Yerevan (+4:00)",
               "Yerevan"
            ],
            [
               "Kabul (+4:30)",
               "Kabul"
            ],
            [
               "Ekaterinburg (+5:00)",
               "Ekaterinburg"
            ],
            [
               "Islamabad (+5:00)",
               "Islamabad"
            ],
            [
               "Karachi (+5:00)",
               "Karachi"
            ],
            [
               "Tashkent (+5:00)",
               "Tashkent"
            ],
            [
               "Chennai (+5:30)",
               "Chennai"
            ],
            [
               "Kolkata (+5:30)",
               "Kolkata"
            ],
            [
               "Mumbai (+5:30)",
               "Mumbai"
            ],
            [
               "New Delhi (+5:30)",
               "New Delhi"
            ],
            [
               "Sri Jayawardenepura (+5:30)",
               "Sri Jayawardenepura"
            ],
            [
               "Kathmandu (+5:45)",
               "Kathmandu"
            ],
            [
               "Almaty (+6:00)",
               "Almaty"
            ],
            [
               "Astana (+6:00)",
               "Astana"
            ],
            [
               "Dhaka (+6:00)",
               "Dhaka"
            ],
            [
               "Urumqi (+6:00)",
               "Urumqi"
            ],
            [
               "Rangoon (+6:30)",
               "Rangoon"
            ],
            [
               "Bangkok (+7:00)",
               "Bangkok"
            ],
            [
               "Hanoi (+7:00)",
               "Hanoi"
            ],
            [
               "Jakarta (+7:00)",
               "Jakarta"
            ],
            [
               "Krasnoyarsk (+7:00)",
               "Krasnoyarsk"
            ],
            [
               "Novosibirsk (+7:00)",
               "Novosibirsk"
            ],
            [
               "Beijing (+8:00)",
               "Beijing"
            ],
            [
               "Chongqing (+8:00)",
               "Chongqing"
            ],
            [
               "Hong Kong (+8:00)",
               "Hong Kong"
            ],
            [
               "Irkutsk (+8:00)",
               "Irkutsk"
            ],
            [
               "Kuala Lumpur (+8:00)",
               "Kuala Lumpur"
            ],
            [
               "Perth (+8:00)",
               "Perth"
            ],
            [
               "Singapore (+8:00)",
               "Singapore"
            ],
            [
               "Taipei (+8:00)",
               "Taipei"
            ],
            [
               "Ulaanbaatar (+8:00)",
               "Ulaanbaatar"
            ],
            [
               "Osaka (+9:00)",
               "Osaka"
            ],
            [
               "Sapporo (+9:00)",
               "Sapporo"
            ],
            [
               "Seoul (+9:00)",
               "Seoul"
            ],
            [
               "Tokyo (+9:00)",
               "Tokyo"
            ],
            [
               "Yakutsk (+9:00)",
               "Yakutsk"
            ],
            [
               "Adelaide (+9:30)",
               "Adelaide"
            ],
            [
               "Darwin (+9:30)",
               "Darwin"
            ],
            [
               "Brisbane (+10:00)",
               "Brisbane"
            ],
            [
               "Canberra (+10:00)",
               "Canberra"
            ],
            [
               "Guam (+10:00)",
               "Guam"
            ],
            [
               "Hobart (+10:00)",
               "Hobart"
            ],
            [
               "Melbourne (+10:00)",
               "Melbourne"
            ],
            [
               "Port Moresby (+10:00)",
               "Port Moresby"
            ],
            [
               "Sydney (+10:00)",
               "Sydney"
            ],
            [
               "Vladivostok (+10:00)",
               "Vladivostok"
            ],
            [
               "Magadan (+11:00)",
               "Magadan"
            ],
            [
               "New Caledonia (+11:00)",
               "New Caledonia"
            ],
            [
               "Solomon Is. (+11:00)",
               "Solomon Is."
            ],
            [
               "Srednekolymsk (+11:00)",
               "Srednekolymsk"
            ],
            [
               "Auckland (+12:00)",
               "Auckland"
            ],
            [
               "Fiji (+12:00)",
               "Fiji"
            ],
            [
               "Kamchatka (+12:00)",
               "Kamchatka"
            ],
            [
               "Marshall Is. (+12:00)",
               "Marshall Is."
            ],
            [
               "Wellington (+12:00)",
               "Wellington"
            ],
            [
               "Chatham Is. (+12:45)",
               "Chatham Is."
            ],
            [
               "Nuku'alofa (+13:00)",
               "Nuku'alofa"
            ],
            [
               "Samoa (+13:00)",
               "Samoa"
            ],
            [
               "Tokelau Is. (+13:00)",
               "Tokelau Is."
            ]
         ]
      },
      {
         "name":"data_center",
         "type":"string",
         "optional":true,
         "label":"Data center",
         "hint":"You can find this at the end of your Zoho URL 'https://accounts.zoho.[Data center]'. Default value: 'Others(com)'",
         "pick_list":[
            [
               "China(cn)",
               "com.cn"
            ],
            [
               "Europe(eu)",
               "eu"
            ],
            [
               "India(in)",
               "in"
            ],
            [
               "Others(com)",
               "com"
            ]
         ],
         "default":"com"
      }
   ]
}
Zoho Invoice zoho_invoice
JSON の表示
{
   "oauth":false,
   "personalization":false,
   "input":[
      {
         "name":"auth_token",
         "type":"string",
         "label":"Authentication token",
         "hint":"Create your Zoho invoice token <a target='_blank' rel='noopener' href=\"https://accounts.zoho.com/apiauthtoken/create?SCOPE=ZohoInvoice/invoiceapi\">here</a>"
      },
      {
         "name":"timezone",
         "type":"string",
         "optional":true,
         "label":"Account timezone",
         "hint":"Needed for consistency with Zoho - pick same as your Zoho profile",
         "pick_list":[
            [
               "American Samoa (-11:00)",
               "American Samoa"
            ],
            [
               "International Date Line West (-11:00)",
               "International Date Line West"
            ],
            [
               "Midway Island (-11:00)",
               "Midway Island"
            ],
            [
               "Hawaii (-10:00)",
               "Hawaii"
            ],
            [
               "Alaska (-9:00)",
               "Alaska"
            ],
            [
               "Pacific Time (US & Canada) (-8:00)",
               "Pacific Time (US & Canada)"
            ],
            [
               "Tijuana (-8:00)",
               "Tijuana"
            ],
            [
               "Arizona (-7:00)",
               "Arizona"
            ],
            [
               "Chihuahua (-7:00)",
               "Chihuahua"
            ],
            [
               "Mazatlan (-7:00)",
               "Mazatlan"
            ],
            [
               "Mountain Time (US & Canada) (-7:00)",
               "Mountain Time (US & Canada)"
            ],
            [
               "Central America (-6:00)",
               "Central America"
            ],
            [
               "Central Time (US & Canada) (-6:00)",
               "Central Time (US & Canada)"
            ],
            [
               "Guadalajara (-6:00)",
               "Guadalajara"
            ],
            [
               "Mexico City (-6:00)",
               "Mexico City"
            ],
            [
               "Monterrey (-6:00)",
               "Monterrey"
            ],
            [
               "Saskatchewan (-6:00)",
               "Saskatchewan"
            ],
            [
               "Bogota (-5:00)",
               "Bogota"
            ],
            [
               "Eastern Time (US & Canada) (-5:00)",
               "Eastern Time (US & Canada)"
            ],
            [
               "Indiana (East) (-5:00)",
               "Indiana (East)"
            ],
            [
               "Lima (-5:00)",
               "Lima"
            ],
            [
               "Quito (-5:00)",
               "Quito"
            ],
            [
               "Atlantic Time (Canada) (-4:00)",
               "Atlantic Time (Canada)"
            ],
            [
               "Caracas (-4:00)",
               "Caracas"
            ],
            [
               "Georgetown (-4:00)",
               "Georgetown"
            ],
            [
               "La Paz (-4:00)",
               "La Paz"
            ],
            [
               "Santiago (-4:00)",
               "Santiago"
            ],
            [
               "Newfoundland (-4:30)",
               "Newfoundland"
            ],
            [
               "Brasilia (-3:00)",
               "Brasilia"
            ],
            [
               "Buenos Aires (-3:00)",
               "Buenos Aires"
            ],
            [
               "Greenland (-3:00)",
               "Greenland"
            ],
            [
               "Montevideo (-3:00)",
               "Montevideo"
            ],
            [
               "Mid-Atlantic (-2:00)",
               "Mid-Atlantic"
            ],
            [
               "Azores (-1:00)",
               "Azores"
            ],
            [
               "Cape Verde Is. (-1:00)",
               "Cape Verde Is."
            ],
            [
               "Casablanca (+0:00)",
               "Casablanca"
            ],
            [
               "Dublin (+0:00)",
               "Dublin"
            ],
            [
               "Edinburgh (+0:00)",
               "Edinburgh"
            ],
            [
               "Lisbon (+0:00)",
               "Lisbon"
            ],
            [
               "London (+0:00)",
               "London"
            ],
            [
               "Monrovia (+0:00)",
               "Monrovia"
            ],
            [
               "UTC (+0:00)",
               "UTC"
            ],
            [
               "Amsterdam (+1:00)",
               "Amsterdam"
            ],
            [
               "Belgrade (+1:00)",
               "Belgrade"
            ],
            [
               "Berlin (+1:00)",
               "Berlin"
            ],
            [
               "Bern (+1:00)",
               "Bern"
            ],
            [
               "Bratislava (+1:00)",
               "Bratislava"
            ],
            [
               "Brussels (+1:00)",
               "Brussels"
            ],
            [
               "Budapest (+1:00)",
               "Budapest"
            ],
            [
               "Copenhagen (+1:00)",
               "Copenhagen"
            ],
            [
               "Ljubljana (+1:00)",
               "Ljubljana"
            ],
            [
               "Madrid (+1:00)",
               "Madrid"
            ],
            [
               "Paris (+1:00)",
               "Paris"
            ],
            [
               "Prague (+1:00)",
               "Prague"
            ],
            [
               "Rome (+1:00)",
               "Rome"
            ],
            [
               "Sarajevo (+1:00)",
               "Sarajevo"
            ],
            [
               "Skopje (+1:00)",
               "Skopje"
            ],
            [
               "Stockholm (+1:00)",
               "Stockholm"
            ],
            [
               "Vienna (+1:00)",
               "Vienna"
            ],
            [
               "Warsaw (+1:00)",
               "Warsaw"
            ],
            [
               "West Central Africa (+1:00)",
               "West Central Africa"
            ],
            [
               "Zagreb (+1:00)",
               "Zagreb"
            ],
            [
               "Athens (+2:00)",
               "Athens"
            ],
            [
               "Bucharest (+2:00)",
               "Bucharest"
            ],
            [
               "Cairo (+2:00)",
               "Cairo"
            ],
            [
               "Harare (+2:00)",
               "Harare"
            ],
            [
               "Helsinki (+2:00)",
               "Helsinki"
            ],
            [
               "Jerusalem (+2:00)",
               "Jerusalem"
            ],
            [
               "Kaliningrad (+2:00)",
               "Kaliningrad"
            ],
            [
               "Kyiv (+2:00)",
               "Kyiv"
            ],
            [
               "Pretoria (+2:00)",
               "Pretoria"
            ],
            [
               "Riga (+2:00)",
               "Riga"
            ],
            [
               "Sofia (+2:00)",
               "Sofia"
            ],
            [
               "Tallinn (+2:00)",
               "Tallinn"
            ],
            [
               "Vilnius (+2:00)",
               "Vilnius"
            ],
            [
               "Baghdad (+3:00)",
               "Baghdad"
            ],
            [
               "Istanbul (+3:00)",
               "Istanbul"
            ],
            [
               "Kuwait (+3:00)",
               "Kuwait"
            ],
            [
               "Minsk (+3:00)",
               "Minsk"
            ],
            [
               "Moscow (+3:00)",
               "Moscow"
            ],
            [
               "Nairobi (+3:00)",
               "Nairobi"
            ],
            [
               "Riyadh (+3:00)",
               "Riyadh"
            ],
            [
               "St. Petersburg (+3:00)",
               "St. Petersburg"
            ],
            [
               "Tehran (+3:30)",
               "Tehran"
            ],
            [
               "Abu Dhabi (+4:00)",
               "Abu Dhabi"
            ],
            [
               "Baku (+4:00)",
               "Baku"
            ],
            [
               "Muscat (+4:00)",
               "Muscat"
            ],
            [
               "Samara (+4:00)",
               "Samara"
            ],
            [
               "Tbilisi (+4:00)",
               "Tbilisi"
            ],
            [
               "Volgograd (+4:00)",
               "Volgograd"
            ],
            [
               "Yerevan (+4:00)",
               "Yerevan"
            ],
            [
               "Kabul (+4:30)",
               "Kabul"
            ],
            [
               "Ekaterinburg (+5:00)",
               "Ekaterinburg"
            ],
            [
               "Islamabad (+5:00)",
               "Islamabad"
            ],
            [
               "Karachi (+5:00)",
               "Karachi"
            ],
            [
               "Tashkent (+5:00)",
               "Tashkent"
            ],
            [
               "Chennai (+5:30)",
               "Chennai"
            ],
            [
               "Kolkata (+5:30)",
               "Kolkata"
            ],
            [
               "Mumbai (+5:30)",
               "Mumbai"
            ],
            [
               "New Delhi (+5:30)",
               "New Delhi"
            ],
            [
               "Sri Jayawardenepura (+5:30)",
               "Sri Jayawardenepura"
            ],
            [
               "Kathmandu (+5:45)",
               "Kathmandu"
            ],
            [
               "Almaty (+6:00)",
               "Almaty"
            ],
            [
               "Astana (+6:00)",
               "Astana"
            ],
            [
               "Dhaka (+6:00)",
               "Dhaka"
            ],
            [
               "Urumqi (+6:00)",
               "Urumqi"
            ],
            [
               "Rangoon (+6:30)",
               "Rangoon"
            ],
            [
               "Bangkok (+7:00)",
               "Bangkok"
            ],
            [
               "Hanoi (+7:00)",
               "Hanoi"
            ],
            [
               "Jakarta (+7:00)",
               "Jakarta"
            ],
            [
               "Krasnoyarsk (+7:00)",
               "Krasnoyarsk"
            ],
            [
               "Novosibirsk (+7:00)",
               "Novosibirsk"
            ],
            [
               "Beijing (+8:00)",
               "Beijing"
            ],
            [
               "Chongqing (+8:00)",
               "Chongqing"
            ],
            [
               "Hong Kong (+8:00)",
               "Hong Kong"
            ],
            [
               "Irkutsk (+8:00)",
               "Irkutsk"
            ],
            [
               "Kuala Lumpur (+8:00)",
               "Kuala Lumpur"
            ],
            [
               "Perth (+8:00)",
               "Perth"
            ],
            [
               "Singapore (+8:00)",
               "Singapore"
            ],
            [
               "Taipei (+8:00)",
               "Taipei"
            ],
            [
               "Ulaanbaatar (+8:00)",
               "Ulaanbaatar"
            ],
            [
               "Osaka (+9:00)",
               "Osaka"
            ],
            [
               "Sapporo (+9:00)",
               "Sapporo"
            ],
            [
               "Seoul (+9:00)",
               "Seoul"
            ],
            [
               "Tokyo (+9:00)",
               "Tokyo"
            ],
            [
               "Yakutsk (+9:00)",
               "Yakutsk"
            ],
            [
               "Adelaide (+9:30)",
               "Adelaide"
            ],
            [
               "Darwin (+9:30)",
               "Darwin"
            ],
            [
               "Brisbane (+10:00)",
               "Brisbane"
            ],
            [
               "Canberra (+10:00)",
               "Canberra"
            ],
            [
               "Guam (+10:00)",
               "Guam"
            ],
            [
               "Hobart (+10:00)",
               "Hobart"
            ],
            [
               "Melbourne (+10:00)",
               "Melbourne"
            ],
            [
               "Port Moresby (+10:00)",
               "Port Moresby"
            ],
            [
               "Sydney (+10:00)",
               "Sydney"
            ],
            [
               "Vladivostok (+10:00)",
               "Vladivostok"
            ],
            [
               "Magadan (+11:00)",
               "Magadan"
            ],
            [
               "New Caledonia (+11:00)",
               "New Caledonia"
            ],
            [
               "Solomon Is. (+11:00)",
               "Solomon Is."
            ],
            [
               "Srednekolymsk (+11:00)",
               "Srednekolymsk"
            ],
            [
               "Auckland (+12:00)",
               "Auckland"
            ],
            [
               "Fiji (+12:00)",
               "Fiji"
            ],
            [
               "Kamchatka (+12:00)",
               "Kamchatka"
            ],
            [
               "Marshall Is. (+12:00)",
               "Marshall Is."
            ],
            [
               "Wellington (+12:00)",
               "Wellington"
            ],
            [
               "Chatham Is. (+12:45)",
               "Chatham Is."
            ],
            [
               "Nuku'alofa (+13:00)",
               "Nuku'alofa"
            ],
            [
               "Samoa (+13:00)",
               "Samoa"
            ],
            [
               "Tokelau Is. (+13:00)",
               "Tokelau Is."
            ]
         ]
      },
      {
         "name":"data_center",
         "type":"string",
         "optional":true,
         "label":"Data center",
         "hint":"You can find this at the end of your Zoho URL 'https://accounts.zoho.[Data center]'. Default value: 'Others(com)'",
         "pick_list":[
            [
               "China(cn)",
               "cn"
            ],
            [
               "Europe(eu)",
               "eu"
            ],
            [
               "Others(com)",
               "com"
            ]
         ],
         "default":"com"
      }
   ]
}
Zoom zoom
ZoomInfo zoom_info
Zuora zuora
JSON の表示
{
   "oauth":false,
   "personalization":false,
   "input":[
      {
         "name":"client_id",
         "type":"string",
         "optional":false,
         "label":"Client ID",
         "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"
      },
      {
         "name":"client_secret",
         "type":"string",
         "optional":false,
         "label":"Client secret",
         "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"
      },
      {
         "name":"environment",
         "type":"string",
         "optional":false,
         "label":"Environment",
         "hint":"Click <a href='https://jp.zuora.com/api-reference/#section/Introduction/Endpoints' target='_blank'>here</a> for environment details",
         "pick_list":[
            [
               "US Production",
               "rest"
            ],
            [
               "US Sandbox",
               "rest.apisandbox"
            ],
            [
               "US Performance Test",
               "rest.pt1"
            ],
            [
               "EU Production",
               "rest.eu"
            ],
            [
               "EU Sandbox",
               "rest.sandbox.eu"
            ]
         ]
      },
      {
         "name":"version",
         "type":"string",
         "optional":false,
         "label":"Zuora SOAP API Version",
         "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>."
      }
   ]
}
Zuora for Salesforce zuora_forcecom
JSON の表示
{
   "oauth":true,
   "personalization":true,
   "input":[
      {
         "name":"sandbox",
         "type":"boolean",
         "optional":true,
         "label":"Sandbox",
         "hint":"Is this connecting to a sandbox account?",
         "default":"false"
      }
   ]
}


Last updated: 2024/3/25 6:43:50