You can try the below liquid code in your callout and use "{{year}}-{{month}}-{{day}}" wherever you need to define date: {% assign year = Data.Workflow.ExecutionDate | date: '%Y-%m-%d' | slice: 0,4 %} {% assign year = year | plus: 0 %} {% assign month = Data.Workflow.ExecutionDate | date: '%Y-%m-%d' | slice: 5,2 %} {% assign month = month | plus: 0 %} {% assign day = Data.Workflow.ExecutionDate | date: '%Y-%m-%d' | slice: 8,2 %} {% assign day = day | plus: 0 %} {% if month >= 1 and month <= 11 %} {% assign month = month | plus: 1 %}{% assign day = 1 %} {% elsif month == 12 %} {% assign year = year | plus: 1 %}{% assign month = 1 %}{% assign day = 1 %} {% endif %}
... View more