Ivan Is Writing An Api Query, And From The Api’s Documentation He Finds Out That The Response Can Be Filtered To Only Show Data Created Since A Defined Date (Using The “Created_since” Parameter). Ivan Wants To Filter The Data That Was Created Since The Beginning Of The Month, And The Input Format Of The “Create_since” Parameter Should Be “Yy MMM Dd”. What Is The Date/Time Function Ivan Should Pass To The “Created_since” Paramter In His Query?

Certification Answers
Ivan Is Writing An Api Query, And From The Api’s Documentation He Finds Out That The Response Can Be Filtered To Only Show Data Created Since A Defined Date (Using The “Created_since” Parameter). Ivan Wants To Filter The Data That Was Created Since The Beginning Of The Month, And The Input Format Of The “Create_since” Parameter Should Be “Yy MMM Dd”. What Is The Date/Time Function Ivan Should Pass To The “Created_since” Paramter In His Query?
  • date.startOfYear.format(“yyyyMMdd”)
  • date.addMonths(-1).format()
  • date.startOfMonth.format(“yy MMM dd”)
  • date.add(-5).format(“yy MMM dd”)
  • date.addMonths(-1).endOfMonth.format()