Toggle Side Panel
Cyclr Community
  • Forums
  • Tutorials
  • Documentation
        • User Documentation >>
          • Introduction to Cyclr
          • API Guides
          • How to use Connectors
          • Navigating the Cyclr ConsoleLearn all about your Cyclr Console and configuration
          • Embedding Cyclr in your SaaS
          • Scripting
        • View More...
        • Connector Guides >>
          • Salesforce
          • Microsoft
          • GitHub
          • HubSpot
          • Oracle NetSuite
          • Stripe
        • View More...
  • Resources
    • New Features
    • Cypher
    • DevOps Services
    • Changelog
    • Support Portal
    • Referral Program
    • Blog
    • News Archive
More options
    Sign in
    Cyclr Logo
    Cyclr Logo
    • Forums
    • Tutorials
    • Documentation
          • User Documentation >>
            • Introduction to Cyclr
            • API Guides
            • How to use Connectors
            • Navigating the Cyclr ConsoleLearn all about your Cyclr Console and configuration
            • Embedding Cyclr in your SaaS
            • Scripting
          • View More...
          • Connector Guides >>
            • Salesforce
            • Microsoft
            • GitHub
            • HubSpot
            • Oracle NetSuite
            • Stripe
          • View More...
    • Resources
      • New Features
      • Cypher
      • DevOps Services
      • Changelog
      • Support Portal
      • Referral Program
      • Blog
      • News Archive
    Close search
    Home » User Documentation » API » Install a Cycle from a Template

    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

    36
    • Introduction to Connectors
    • Connector Installation Overview
    • Connector Settings
    • Handling Connector Releases
    • 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
        • 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
      • Custom Connector 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

    Deep Data Ingestion

    3
    • Vector Databases Introduction
    • Preparing and Ingesting Data into Vector Databases
    • Querying & Retrieving Data from Vector Databases

    Real-Time Actions

    6
    • Generic Webhook
    • Introduction to Data on Demand
    • Get Account Connectors
    • Get Connector Methods
    • Call a Connector Method
    • IP Restriction

    Release Notes

    32
    • Introduction to Release Notes
    • 2025
      • 2025-10
      • 2025-09
      • 2025-08
      • 2025-07
      • 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 a Cycle from a Template

    Install a Cycle from a Template

    1 min read

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

    You must already have a Cyclr API Access Token.

    Get a list of available Templates #

    Templates are integrations built by you in your Console’s drag-and-drop builder and are located in your Console’s Template Library.

    They can be installed in your end users’ Accounts.

    Your own application could present a list of your available Templates to your end users by making this call to Cyclr’s API:

    Request:

    GET /v1.0/templates
    Authorization Bearer ********************

    Response:

    [
    	{
    		"Name": "Pipedrive > MailChimp",
    		"Description": null,
    		"Id": "7ad2265e-2ff0-477b-b913-cae1dfde2ea8",
    		"Connectors": [
    			{
    				"Id": 2550,
    				"Name": "Pipedrive",
    				"Version": "1.0",
    				"StepCount": 1,
    				"Icon": null
    			},
    			{
    				"Id": 2582,
    				"Name": "MailChimp",
    				"Version": "v3",
    				"StepCount": 1,
    				"Icon": null
    			}
    		]
    	}
    ]

    Install a Template #

    Request:

    POST /v1.0/templates/{Template ID}/install
    Authorization: Bearer ********************
    X-Cyclr-Account: 00000000-0000-0000-0000-000000000000

    Response:

    {
    	"Id": "cf636e9c-13dd-47ea-b0e8-88a5bf7f7b00",
    	"CreatedOnUtc": "2017-12-06T16:21:46.0499829Z",
    	"TasksUsed": 0,
    	"ErrorCount": 0,
    	"WarningCount": 0,
    	"Connectors": [
    		{
    			"Id": 2550,
    			"AccountConnectorId": 51,
    			"Name": "Pipedrive",
    			"Version": "1.0",
    			"Authenticated": true,
    			"StepCount": 1,
    			"Icon": null
    		},
    		{
    			"Id": 2582,
    			"AccountConnectorId": 52,
    			"Name": "MailChimp",
    			"Version": "v3",
    			"Authenticated": true,
    			"StepCount": 1,
    			"Icon": null
    		}
    	],
    	"Status": "Paused",
    	"LastSuccessfulRunDate": "0001-01-01T00:00:00",
    	"InProgressTransactionCount": 0,
    	"Name": "Pipedrive > MailChimp",
    	"Description": null,
    	"Shareable": false,
    	"ContinueOnStepError": true,
    	"LogStepDataRequests": true,
    	"StepDataSuccessRetentionHours": null,
    	"StepDataErroredRetentionHours": null,
    	"TemplateId": "7ad2265e-2ff0-477b-b913-cae1dfde2ea8"
    }

    Note: If you install a template, Cyclr also installs all of the connectors the cycle needs to run.

    Get Cycle Prerequisites #

    A Cycle installed in an Account from a Template may have prerequisites that need to be provided before the Cycle can be activated.

    The Cyclr API can provide information on the prerequisites for a Cycle to run:

    Request:

    GET /v1.0/cycles/{Cycle Id}/prerequisites
    Authorization Bearer ********************
    X-Cyclr-Account: 00000000-0000-0000-0000-000000000000

    Response

    [
    	{
    		"ReasonCode": 20,
    		"Reason": "Unauthenticated connector",
    		"ObjectType": "AccountConnector",
    		"ObjectId": 36328
    	},
    	{
    		"ReasonCode": 20,
    		"Reason": "Unauthenticated connector",
    		"ObjectType": "AccountConnector",
    		"ObjectId": 36329
    	},
    	{
    		"ReasonCode": 30,
    		"Reason": "Missing mapping",
    		"ObjectType": "Action",
    		"ObjectId": "709b68ba-394e-4339-9550-abd0312e8dd5"
    	}
    ]

    In this example, there are the following pre-requisites:

    • Two Connectors that are unauthenticated
    • A Step with a missing field mapping

    Full list of potential prerequisites #

    ReasonCodeReason
    0Unknown
    10Cycle must have at least two steps
    11All steps must be connected together and only one step can be the trigger
    20Unauthenticated connector
    30Missing mapping
    31Missing decision criteria
    32Missing delay time period
    33Missing date to wait until
    40Missing parameter mapping
    41Missing field mapping
    42Missing collection key mapping
    43Missing webhook key mapping
    50Missing left operand
    51Missing right operand
    60Missing delay unit
    61Missing delay interval
    70Missing wait until date

    What are your Feelings

    • Happy
    • Normal
    • Sad

    Share This Article :

    • Facebook
    • X
    • LinkedIn
    • Pinterest
    Install Connectors into an AccountStep Setup
    Page Contents
    • Get a list of available Templates
    • Install a Template
    • Get Cycle Prerequisites
    • Full list of potential prerequisites

    Company

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

    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

    Cyclr Logo

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

    © 2025 Cyclr. All rights reserved.