Creatio Support: Difference between revisions

From Data Islands
No edit summary
No edit summary
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
COMING IN FEB 2025
 
* Note that this requires a specific license. Contact us for details.
 
Syntax:
 
>addserver creatio "<ALIAS>" "<URL>" "<USERNAME>" "<PASSWORD>"
 
EG
 
>addserver creatio "live2026" "https://live2026.creatio.com" "Supervisor" "********"
 
 
----
 
Filter strings and comparrison commands
 
eq - equals/=
 
ne - not equals/!=/<>
 
ge - greater than or equals/=
 
le - less than or equals/=
 
contains - a string contains a value
 
----Strings
 
contains(Name,'a')
----
 
Dates
 
Date values must be in ISO format
 
filter=StartDate ge ${from} and StartDate le ${to}
 
----
 
Id fields (typically defined as GUID types) expect the Id value of the lookup table if used in a comparison
 
EG
 
$filter=Owner/Id eq 410006e1-ca4e-4502-a9ec-e54d922d2c00 and
stage/id ne a9aafdfe-2242-4f42-8cd5-2ae3b9556d79

Revision as of 15:22, 9 April 2025

  • Note that this requires a specific license. Contact us for details.

Syntax:

>addserver creatio "<ALIAS>" "<URL>" "<USERNAME>" "<PASSWORD>"

EG

>addserver creatio "live2026" "https://live2026.creatio.com" "Supervisor" "********"



Filter strings and comparrison commands

eq - equals/=

ne - not equals/!=/<>

ge - greater than or equals/=

le - less than or equals/=

contains - a string contains a value


Strings

contains(Name,'a')


Dates

Date values must be in ISO format

filter=StartDate ge ${from} and StartDate le ${to}


Id fields (typically defined as GUID types) expect the Id value of the lookup table if used in a comparison

EG

$filter=Owner/Id eq 410006e1-ca4e-4502-a9ec-e54d922d2c00 and stage/id ne a9aafdfe-2242-4f42-8cd5-2ae3b9556d79