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
    • Connectors
    • Custom Connectors
    • Parameters

    Parameters

    2 min read

    Purpose #

    Parameters can be used to define a number of different properties to be used in an HTTP Request or Response, e.g. HTTP headers, mergefields and querystring values.

    You can define Parameters at the Connector level or Method level.

    If a Parameter is defined at the Connector level, it will be available to all the Methods.

    Parameter Definition #

    PropertyDescription
    TargetTypeHttpHeader, MergeField, QueryString, FilterField, ResponseField, Script, Index
    TargetNameThe name for the parameter.
    DisplayNameDisplay name for the parameter.
    DescriptionDescription for the parameter.
    TriggerTrigger name for the parameter. If you want to dynamically show a list of parameter values for the user to choose from, set TriggerName as the trigger you want Cyclr to call. Please see the Triggers section for details.
    HiddenHide the parameter from the user interface. You can use this to hide internal parameters you want to send to an endpoint.
    OptionalSet the parameter to be optional or required. The default is required (false).

    Connector level Parameters have these additional properties:

    PropertyDescription
    SensitiveThe Parameter is treated as a password by masking the value in the interface. Use for sensitive values.
    Account Connector PropertyThe Parameter is shown to the user when installing or setting up the Connector.
    Partner Connector PropertyThe Parameter is available in the Cyclr Console’s Application Connector Library entry, allowing it to be set once for use across all Account Connectors.
    MultilineThe Parameter is displayed as a textbox allowing multiple lines to be entered, rather than a single line textbox.

    Warning: A parameter cannot be both an Account Connector Property and a Partner Connector Property. If both are selected, your connector may behave unpredictably.

    Types of Parameters #

    HttpHeader #

    This will be added to the HTTP header.

    MergeField #

    The value of the Parameter will be merged into the HTTP call. For example, Parameters can be merged into a URL endpoint to allow for a specific object to be requested.

    A Mergefield is identifed by the double opening and closing curly braces, e.g. {{MailingListId}}.

    Example of Method’s Endpoint property containing a Mergefield:
    https://ApplicationName/api/v2/customers/{{CustomerNo}}

    “CustomerNo” is then specified as a Mergefield Parameter (without the braces) and the value provided will be merged into the URL when the call is executed.

    The specification could look like this:

    Target TypeTarget NameDisplay NameDescriptionTriggerOptionalHiddenValue
    MergeFieldCustomerNoCustomer NumberProvide a customer number.OptionalfalsefalseNA

    URL Encoding

    Note: Cyclr will always URL encode Mergefield values when inserting them into a Method’s Endpoint.

    If you wish to create a Connector Method where the entire Endpoint property is provided as a single Mergefield, allowing you to specify exactly where a Request will be sent when calling it, you can use Script to prevent its value from being URL encoded twice which could result in the URL being invalid.

    In this example, there would be a Mergefield with a Target Name of “FileUrl” which appears in the Method’s Endpoint as "{{FileUrl}}". This Script could be set on the Method to URL decode its value before the Request is sent, and before Cyclr URL encodes the Mergefield value itself and inserts it into the Endpoint:

    function before_action() {
        method_request_mergefields.FileUrl = decodeURIComponent(method_request_mergefields.FileUrl);
        return true;
    }

    QueryString #

    This Parameter allows you to add values into the QueryString of the HTTP request. It can allow for optional filtering criteria to be added to the call. For example, if filtering was required for a specific customer on a ‘List Orders’ Method.

    “Endpoint”: “https://ApplicationName/API/V2/orders”

    The specification would look like this:

    Target TypeTarget NameDisplay NameDescriptionTriggerOptionalHiddenValue
    QueryStringCustomerCustomer NumberProvide a customer number.OptionalfalsefalseNA

    The resulting call would look like this:

    “Endpoint”: “https://ApplicationName/API/V2/orders?Customer=8394995

    FilterField #

    Cyclr filter field (can set a date field as FilterField to filter new objects)

    Share This Article :
    • Facebook
    • X
    • LinkedIn
    • Pinterest
    Last Successful Run DateScripting
    Page Contents
    • Purpose
    • Parameter Definition
    • Types of Parameters
      • HttpHeader
      • MergeField
      • QueryString
      • FilterField

    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.