Announcement

Collapse
No announcement yet.

Formula - It possible get value field in json received ??

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Formula - It possible get value field in json received ??

    Hello guys.

    I have a doubt about formula,

    I have following scenario.

    I send to espo api a json with data account and i testing get a value taht json received

    ex:
    ifThen(

    entity\isNew(),

    ipte= array/json get(value = token);

    );

    some lilke this, it's possible??

  • #2
    Hi,

    You can create own formula function. You can find information in the developer documentation.

    Comment


    • #3
      Hi yuri
      i figure out using just

      ifThen(
      entity\isNew(),

      id=token;

      );

      But is interesting this feature of the functions

      Thanks, for your attention

      Comment

      Working...
      X