### Example Result of Get Current Date Helper Source: https://help.keragon.com/hc/en-us/articles/21002784906770-Get-the-Current-Datetime-Using-the-Get-Current-Date-Helper Shows the typical output format when using the 'Get Current Date' helper. This example illustrates the default ISO8601 format with a UTC timezone. ```text "2024-07-05T14:00:00Z" ``` -------------------------------- ### Example Authentication Header Format Source: https://help.keragon.com/hc/en-us/articles/19894107858578-How-to-use-the-HTTP-Client-action-to-make-custom-API-requests This example illustrates the required format for an authentication header when connecting to a third-party app. It shows how to specify the key name and map the authentication token. ```json { "key name": "X-auth", "value": "Bearer {{authentications.your_app.token}}" } ``` -------------------------------- ### Example Date Formats Source: https://help.keragon.com/hc/en-us/articles/21002784906770-Get-the-Current-Datetime-Using-the-Get-Current-Date-Helper Demonstrates various formats for the 'Transform Value to Format' field when using the Get Current Date helper. These examples show how to represent dates and times in different ways. ```text YYYY-MM-DD → 2024-07-05 ``` ```text LLLL → Friday, July 5, 2024 2:00 PM ``` -------------------------------- ### Example Cron Expressions Source: https://help.keragon.com/hc/en-us/articles/18543951660690-How-to-trigger-workflows-on-a-recurring-schedule These examples demonstrate how to use Cron expressions to define custom schedules for workflow triggers. They specify different time intervals and frequencies. ```text 0 * * * * Every hour at the start of the hour. ``` ```text 0 0 * * * Every day at midnight. ``` ```text 0 0 * * 0 Every Sunday at midnight. ``` ```text 0 0 1 * * The first day of every month at midnight. ``` ```text 0 0 1 1 * Every January 1st at midnight. ``` -------------------------------- ### Example Test Result of Code Step Source: https://help.keragon.com/hc/en-us/articles/20973715582482 This is an example output from the Code Step, showing the result of processing contact numbers. It displays the 'Home' and 'Mobile' numbers in a key-value format. ```json { "Home": "123-456-7890", "Mobile": "987-654-3210" } ``` -------------------------------- ### Example POST Request to Pipedrive API Source: https://help.keragon.com/hc/en-us/articles/19894107858578-How-to-use-the-HTTP-Client-action-to-make-custom-API-requests This demonstrates a POST request to the Pipedrive API for creating a new deal. It includes setting up headers and data payload as required by the Pipedrive API. ```json { "url": "https://api.pipedrive.com/v1/deals", "method": "POST", "headers": [ { "key name": "Authorization", "value": "Bearer {{authentications.pipedrive.token}}" } ], "data": { "title": "New Deal", "value": "1000", "currency": "USD", "status": 0, "person_id": 1, "org_id": 1 } } ``` -------------------------------- ### Add or Subtract Datetimes Example Source: https://help.keragon.com/hc/en-us/articles/21002370077714-Add-or-Subtract-Time-from-a-Date-Using-the-Add-or-Subtract-Datetimes-Date-Helper This example demonstrates how to add or subtract time from a given datetime value. It shows the input, the expression used for manipulation, and the resulting output datetime. ```text Input: "2023-10-25T14:30:45Z" Expression: "+5 days -2 hours" Output: "2023-10-30T12:30:45Z" ``` -------------------------------- ### Prompting AI Copilot for Data Formatting Source: https://help.keragon.com/hc/en-us/articles/19660340143762-Use-the-AI-copilot-for-formatting-suggestions Use this example prompt to ask the AI Copilot for assistance in splitting a full name string into first and last names. Describe your data and the desired outcome clearly. ```text 'I have this data that is a string representing a full name; how can I split it into first and last name?' ``` -------------------------------- ### Create or Update Contacts with Tags in Go High Level Source: https://help.keragon.com/hc/en-us/articles/26571815550226-Go-High-Level Guide for creating or updating contacts in Go High Level and adding tags using Keragon actions. Requires selecting the authenticated Go High Level connection and providing contact details. ```text 1. Go to app.keragon.com. Open your workflow. 2. After your trigger click the "+" icon to add a new action. 3. Click the **Search** bar and enter **"gohighlevel"**. 4. Select the **Go High Level** app. 5. Search for and select **"Create or update contact"**. 6. Choose your authenticated Go High Level connection (OAuth 2.0). 7. Select **all the data from your trigger**. 8. Click **Save** , then perform a **Test Step** to verify the setup. 9. In **Inputs** , provide required data like: `{ "email": "john@acme.com", "firstName": "foo", "lastName": "foo" } ` 10. In **Outputs** , confirm the response structure from Go High Level. To add tags: 10. Click the "+" button to add a new action a**fter the create or update contacts action**. 11. Use the search field again to find **"add tags"**. 12. Select **"Adds specified tags to a contact"**. 13. Choose the contact and tag(s) to associate. 14. Click **Save** , then **Test Step** to validate the tagging process. ``` -------------------------------- ### Example Expressions for Add or Subtract Datetimes Source: https://help.keragon.com/hc/en-us/articles/21002370077714-Add-or-Subtract-Time-from-a-Date-Using-the-Add-or-Subtract-Datetimes-Date-Helper These are examples of natural language expressions you can use in the 'Expression' field to adjust dates and times. They support adding or subtracting days, hours, and months. ```text +3 days ``` ```text -2 hours ``` ```text +1 month -5 days ```