Discussions

 View Only
  • 1.  Are fields/markers and user tokens the only items available to webhooks?

    Posted 12-19-2016 18:56
    I'm wanting to send through the webhook the current date/time, updating a date/time field for multiple records that were modified in Grid Edit.  Want to know if there is any date/time available or do I need to create a formula date/time field to use instead?  



    <qdbapi>

      <usertoken>_my_user_token_here</usertoken>

      <records_csv>

    <![CDATA[

    %repeatOn%

    [Record ID#], %current_datetime%

    %repeatOff%

    ]]>

      </records_csv>

      <clist>3.135</clist> 

    </qdbapi>


  • 2.  RE: Are fields/markers and user tokens the only items available to webhooks?

    Posted 12-19-2016 20:34
    I would just create a field called [now] which has a formula of now().  I don't know if there is another way to do it without creating a field, but that should work.


  • 3.  RE: Are fields/markers and user tokens the only items available to webhooks?

    Posted 03-10-2017 17:26
    They just added a new marker %curdate% which you can use. Alternatively, so long as the record isn't deleted, you can use [Last Modified Date]. (Since they just edited it, it will be the current time.)


  • 4.  RE: Are fields/markers and user tokens the only items available to webhooks?

    Posted 05-09-2017 21:09
    is there a %curdatetime% available?


  • 5.  RE: Are fields/markers and user tokens the only items available to webhooks?

    Posted 05-09-2017 21:12
    If you create a date/time field called, for example [Now] with a formula of now(), that would be the current date/time with you could use as a field.