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
    • Methods

    Methods

    5 min read

    Settings #

    This tab is where you setup the general operation of the Method:

    PropertyDescriptionStandards
    Name The name of the method to appear in the Cyclr UI for the user to see.Should be short and snappy and have initial caps for nouns/verbs, lowercase for minor words (like “a” or “to”), e.g. “Delete Emails”, “Get All Contacts”, “Send to List”. See below for suggested naming conventions.
    Description This is the description of the method to appear in the Cyclr UI for the user to understand what the method does and be informed of any special/interesting values to pass.Can be quite lengthy if appropriate. Can also include links to helpful API documentation if useful.
    Warning  
    Status  
    Comments  
    Category Used to group methods in the Cyclr UI.Try to keep simple and pluralized, e.g. “Contacts” or “Mailing Lists“.
    Subcategory  
    MethodType This defines where the method will appear in the Cyclr UI: Action, Webhook or Script. 
    HttpMethod This is the action to be performed on the API method. Supported methods are GET, POST, PATCH, PUT, DELETE. 
    Endpoint This is the URI to the API method. Not used if this Method Type is a webhook. 
    Hide This will hide the method in the Cyclr UI if set to true. 
    DataType This is the data type used by the API, either Json, Xml, or Form. For GET, this is the Accept header. For POST, this is the request data. JSON is our recommended data type. Read more about data types 
    Xml Root Element If using XML, this it the single root element for the XML document. 
    Ignore Authentication?Whether the Method should prevent the Connector’s authentication values/HTTP Headers from being included in its Requests.

    Useful when a Method is built to send Requests to an endpoint which is publicly accessible so doesn’t require any authentication to be provided. Some APIs return an error if the standard authentication details set at the Connector-level are included in those Requests.

    Some suggested Connector Method naming conventions which we use in our Library Connectors:

    NamePurpose
    Get (ObjectNameSingular)Used when the method retrieves a single object.
    List (ObjectNamePlural)Used when the method retrieves multiple objects.
    Create (ObjectNameSingular)Used when the method creates an object.
    Create (ObjectNamePlural)Used when the method creates multiple objects from a single call.
    Delete (ObjectNameSingular)Used when the method deletes an object.
    Update (ObjectNameSingular)Used when the method updates an object.

    Rate Limits #

    You can specify any Rate Limits that apply to this Method, to restrict how quickly Cyclr can make calls to the Method when running Cycles that use it.

    For more detailed information of what’s possible and how Rate Limits set at both the Connector-level and Method-level work together, see this Rate Limits article.

    Request Format / Response Format #

    These 2 tabs allow you to specify the Request and the Response formats according to the API endpoint the Method is implementing.

    You define any Fields Cyclr should use for both, as well as other configuration options that affect how the Request Cyclr builds is structured, and how the Response it recevies when making a call is handled.

    Fields #

    Note: if you use the Generate Fields button on this tab to generate the Fields from a sample payload, you will first need to set the Format’s Data Type (so JSON, XML etc).

    PropertyDescriptionStandards
    Connector Field The name of the field as used by the remote application’s API. Use Cyclr notation to locate the value, e.g. [records].EmailAddress when receiving an array and retrieving the EmailAddress attribute from an element within that array. 
    System Field The name to use internally within Cyclr. Use the field as capitalized by the API and remove any spaces. Apps that have the same SystemField name can auto match values in the builder, saving time and making life easier. 
    Display Name The name of the field to be displayed in the Cyclr UI to the user. 
    Description This is the description of the Field to appear in the Cyclr UI for the user to understand how the Field is used.Always include this and keep fairly short (no more than 100 characters).
    OptionalSet to true if the Field doesn’t have to be given a value. Leave out if it’s a required Field. 
    Data TypeOptions are: Text, Integer, Float, Boolean, DateTime, File, Decimal. If the type is DateTime then a Format can be entered to specify the format. Read more about data types 
    Default Value  

    Data Type #

    Defines the structure of the data for the Request and the Response.

    Options are:

    • Xml
    • Json
    • Form
    • File
    • PainText
    • SimpleFile
    • MultipartRelated
    • CSV

    Custom Fields Lookup Method #

    Enables Cyclr to automatically retrieve the structure of the Request or Response data from the remote API, to create Fields in the Request or the Response from.

    More on this can be found on the Dynamic Custom Fields page.

    Time Filter Field #

    Only found on the Response Format tab.

    Some APIs provide endpoints that return only “new” or “changed” data by having a date/time parameter you can pass to them, allowing you to create “List New” and “List Updated” Methods. The date/time value to pass in would be Cyclr’s Last Successful Run Date value to get data that’s new or changed since the last time a Cycle Step ran.

    If the API doesn’t provide those endpoints, you can instead use an endpoint that returns all of the data, and have Cyclr filter out any items that were either created or updated (depending on your use-case) since the last time a Step ran.

    For this to be possible, the the API must include a property such as “lastModifiedDate” or “createdTimestamp” so that Cyclr can filter it. If you set the property as the Time Filter Field, Cyclr will automatically remove any items it gets back that are before the Cycle Step’s Last Successful Run Date.

    Is ZIP file returned? #

    Only found on the Response Format tab.

    Enabing this option tells Cyclr that the Response data will contain a compressed file so should be decompressed to obtain its actual contents.

    Cyclr supports the following file formats:

    • zip
    • gzip

    Parameters #

    You can specify Parameters specific to this method. Read more about parameters

    Script #

    You can add script to the connector to handle special situations. Read more about scripting

    Script Method Type

    The “Script” method type can be used for methods that do not make an external API call (e.g. static data), or where requests will need to be handled entirely by the script engine.

    Note: Methods using the “Script” Type only count towards your Monthly Task Usage if they use the http_request() function.

    Mergefields #

    Mergefields are placeholders that will be substituted at runtime.

    • LastSuccessfulRunDate – is the last time a Step successfully ran. This is useful to find newly created or updated records in an app. A format string needs to be provided. For example, {{LastSuccessfulRunDate format=yyyy-MM-ddTHH:mm:ssZ}}.
    Share This Article :
    • Facebook
    • X
    • LinkedIn
    • Pinterest
    Introduction to Custom ConnectorsTriggers
    Page Contents
    • Settings
    • Rate Limits
    • Request Format / Response Format
      • Fields
      • Data Type
      • Custom Fields Lookup Method
      • Time Filter Field
      • Is ZIP file returned?
    • Parameters
    • Script
    • Mergefields

    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.