Cyclr Community
  • Forums
  • Tutorials
  • Documentation
    • User Documentation
    • Connector Guides
  • Resources
    • New Features
    • Blog
    • Changelog
    • Support Portal
    • Newsletter Archive
    Sign in
    Cyclr Logo
    Cyclr Logo
    • Forums
    • Tutorials
    • Documentation
      • User Documentation
      • Connector Guides
    • Resources
      • New Features
      • Blog
      • Changelog
      • Support Portal
      • Newsletter Archive

    About Cyclr

    6
    • Introduction to Cyclr
    • Minimum requirements
    • Glossary
    • Errors
    • IP Allow List
    • Legal notices

    Cyclr Console

    14
    • Partner Console Dashboard
    • The Builder
    • Reports
    • Console Configuration
    • General Settings
    • Notifications
    • Embedding Customization
    • Security settings
    • Data retention settings
    • Custom Service Domains
    • Handle transaction errors
    • Payload Size Limitations
    • Performance tips
    • GitHub Integration

    Connectors

    33
    • Introduction to Connectors
    • Connectivity Comparison
    • Connector Guides
    • Application Connectors
      • Introduction to Application Connectors
    • Utility Connectors
      • Introduction to Utility Connectors
      • Counter Storage
      • Cross Updating Preventer
      • Data Tools
      • Entity Cross Ref Storage
      • Generic File
      • Generic File Downloader
      • Generic Form
      • Generic Webhook
      • Data Storage
        • Introduction to Data Storage Connectors
        • Global Data Storage
        • Global Object Storage
        • Cycle Data Storage
        • Cycle Object Storage
    • Custom Connectors
      • Introduction to Custom Connectors
      • Methods
      • Triggers
      • Last Successful Run Date
      • Parameters
      • Scripting
      • Data Types
      • Paging
      • Custom Objects
      • Dynamic Custom Fields
      • Automatically Install Webhooks
      • Connector Standards
      • Settings
      • Authentication
      • Rate Limits

    Templates

    17
    • Introduction to Templates
    • Template Settings
    • Create a Template
    • Tools
    • Connectivity Tools
    • Map fields
    • Add Custom Fields
    • Custom Object Method Categories
    • Test Scripts
    • Collection splitting
    • Pass data between two steps
    • Test a template
    • Template versioning
    • Introduction to Cycles
    • Stop a cycle
    • Copy Cycles as Templates
    • Import or Export Templates

    Accounts

    5
    • Introduction to Accounts
    • Account Users
    • Sub Accounts
    • Connector Authentication Link
    • Export or Import Cycles

    Embedding

    17
    • Introduction to Embedding
    • ORBIT
    • Installing a Partner Connector
    • Embed Cyclr in an iFrame
    • Launch
      • Introduction to Launch
      • User Experience
      • Customize Appearance
      • Build Compatible Templates
      • Handle LAUNCH callbacks
      • Deploy LAUNCH
    • Marketplace
      • Introduction to Marketplace
      • Set up a Marketplace
      • Styling Marketplace
      • Deploying a Marketplace
      • Marketplace Callback
      • Marketplace Webhook Callback
      • Marketplace Settings

    API

    19
    • Introduction to the Cyclr API
    • Authentication
    • Authorize Account API calls
    • Install Connectors into an Account
    • Install a Cycle from a Template
    • Step Setup
    • Activate a Cycle
    • Install Connectors
    • Create an Account
    • API Example Walkthrough
    • Connector Authentication
      • Introduction to Connector Authentication
      • API Key Authentication
      • HTTP Basic Authentication
      • OAuth Authentication
    • Data on Demand
      • Introduction to Data on Demand
      • Get Account Connectors
      • Get Connector Methods
      • Call a Connector Method
      • IP Restriction

    Release Notes

    28
    • Introduction to Release Notes
    • 2025
      • 2025-06
      • 2025-05
      • 2025-04
      • 2025-03
      • 2025-02
      • 2025-01
    • 2024
      • 2024-12
      • 2024-11
      • 2024-10
      • 2024-09
      • 2024-08
      • 2024-07
      • 2024-06
      • 2024-05
      • 2024-04
      • 2024-03
      • 2024-02
      • 2024-01
    • 2023
      • 2023-12
      • 2023-11
      • 2023-10
      • 2023-06
      • 2023-05
      • 2023-04
    • Archive
      • Archive
      • 2022
      • 2021
    View Categories
    • Home
    • Documentation
    • API
    • Install Connectors

    Install Connectors

    2 min read

    This section guides you through using the Cyclr API to install a Connector into an Account.

    You must already have a Cyclr API Access Token.

    Get a Connector ID #

    You need the ID of a Connector before you can install it. To show a list of connectors available to the account, call the /v1.0/connectors endpoint. For more information about the endpoint, see the Interactive API reference page.

    Request #

    GET https://{CyclrAPIDomain}/v1.0/connectors
    Authorization: Bearer {access_token}
    X-Cyclr-Account: {AccountID}

    Response items #

    These are the values you need to include in the request when you install the connector into an account:

    ParameterTypeDescription
    IdintegerThe ID of the connector. Use this value as the ConnectorId when you install the connector.
    Authentication.IdstringThe ID of the connector’s authentication type. Use the value of the authentication method you want to use as the AuthenticationId when you install the connector.

    If Parameters.IsAccountConnectorProperty is true, you also need the following values:

    ParameterTypeDescription
    Parameters.TargetNameStringThe name of the account connector property.
    Parameters.Valuesarray[string]The possible values of the account connector property.
    Parameters.IdintegerThe ID of the account connector property.

    Example Response #

    [
      {
        "Id": 12345,
        "Name": "Example",
        "Description": "Connect securely with your Example application",
        "Status": "Approved",
        "Version": "null",
        "Icon": "Base64 image data for the connector icon",
        "AuthDescription": "null",
        "AuthType": "ApiKey", <this says deprecated in swagger, should it be null?>
        "OAuth2Type": "AuthorisationCode",<can we correct the spelling here?>
        "AuthScheme": "Authorization", 
        "Parameters": [
          {
            "IsAccountConnectorProperty": true,
            "TargetType": "Script",
            "TargetName": "isSandbox",
            "IsSensitive": false,
            "Id": 7654321,
            "Name": "Is Sandbox?",
            "Description": "Sandbox oAuth servers will not authenticate production credentials (and vice versa).",
            "IsOptional": false,
            "DataType": "Text",
            "TriggerName": "null",
            "Values": [
              "true",
              "false"
            ],
           ...
           ,
        "Authentication": [
          {
            "Id": "12abc345-1a2b-123a-1ab2-1234ab5c6d7e",
            "AuthName": "OAuth 2.0",
            "AuthDescription": "In sandbox mode, sign in to see the authorization page.",
            "AuthType": "OAuth2",
            "OAuth2Type": "AuthorisationCode",
            "AuthScheme": "null"
          }
          {
            "Id": "12abc345-1a2b-12ab-1abc-a12b3c4e567e",
            "AuthName": "API Key",
            "AuthDescription": null,
            "AuthType": "ApiKey",
            "OAuth2Type": "AuthorisationCode",
            "AuthScheme": "Authorization"
          }
        ]
      }
    ]

    Install the Connector #

    If you have the Connector ID, you can install the connector into an account. To install the connector, call the /v1.0/connectors/{id}/install endpoint. For more information about the endpoint, see the Interactive API reference page.

    Request #

    POST https://{CyclrAPIDomain}/v1.0/connectors/{ConnectorId}/install
    Authorization: Bearer {access_token}
    X-Cyclr-Account: {AccountID}
    
    {
      "Name": "{ConnectorName}",
      "Description": "{ConnectorDescription}",
      "AuthenticationId": "{AuthenticationId}",
      "AuthValue": "{AuthValue}",
      "Properties": [
        {
          "Name": "{PropertyName}",
          "Value": "{PropertyValue}",
          "Id": {PropertyId},
        }
      ]
    }

    Request Parameters #

    Path parameterTypeDescription
    {ConnectorId}integerEnter the ID of the connector you want to install.

    Body parameters TypeDescription
    Name stringName the account connector
    Description string, optionalDescribe the account connector.
    AuthenticationId stringEnter the ID of the authentication method you want to use. See Get connectors for more information.
    AuthValue string, optionalBasic Authentication: enter the base64 encoded value of the username and password.
    Oauth: enter the {access_token}.
    API Key: enter the {ApiKey}.
    Properties Array, optionalIf Parameters.IsAccountConnectorProperty is true in the GET connectors response, include this array of values from the response.
     NamestringEnter the Parameters.TargetName value.
     Valuearray[string]Enter a value from the options in Parameters.Values.
     IdintegerEnter the Pararameters.Id value.

    Example Response #

    {
      "Id": 54321,
      "Name": "Installed Example",
      "Description": "Alex's Example account connector",
      "AuthValue": "access_token",
      "Authenticated": true,
      "Connector": {
        "Id": 12345,
        "Name": "Example",
        "Description": "Connect securely with your Example application",
        "Status": "Approved",
        "Version": "null",
        "Icon": "Base64 image data for the connector icon",
        "AuthDescription": "null",
        "AuthType": "ApiKey", <this says deprecated in swagger, should it be null?>
        "OAuth2Type": "AuthorisationCode",<can we correct the spelling here?>
        "AuthScheme": "Authorization",
        "Parameters": [...],
        ...
        ,
      }
    }

    Authentication #

    Authentication is optional in this call because, if your customer has access to the account, they can authenticate the Connector themselves through Cyclr’s interface.

    For more information on how to authenticate a specific Application Connector, see the Application Connector Guides documentation.

    Alternatively, you can authenticate a Connector using the Cyclr API as described in Account and Connectors Authentication or by sending your customer a Connector Authentication Link.

    Share This Article :
    • Facebook
    • X
    • LinkedIn
    • Pinterest
    Activate a CycleCreate an Account
    Page Contents
    • Get a Connector ID
      • Request
      • Response items
      • Example Response
    • Install the Connector
      • Request
      • Request Parameters
      • Example Response
    • Authentication

    Company

    • Company
    • About Us
    • Security and Compliance
    • Pricing
    • Blog
    • Branding
    • Embedded iPaaS

    Legal

    • Website Terms
    • Privacy Policy
    • Terms and Conditions
    • Data Protection Agreement
    • SLA
    • GDPR

    UK Office

    +44 (0) 3300 102 525

    US Office

    +1 (646) 585-2525


    White labelled API integration framework for creating & managing in-app SaaS integrations.

    © 2025 Cyclr. All rights reserved.