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

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • romulo
    Junior Member
    • Nov 2018
    • 9

    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??
  • yuri
    Member
    • Mar 2014
    • 8440

    #2
    Hi,

    You can create own formula function. You can find information in the developer documentation.
    If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

    Comment

    • romulo
      Junior Member
      • Nov 2018
      • 9

      #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...