Please Help Me Can Any One Create Example For Me

When Submit clicked:

  • Generate request ID → Clock.Now
  • Call Firebase.StoreValue with:
    • Tag = "requests/" + requestID
    • Value = dictionary {customer, product, discount, reason, status=“Pending”}
      Showing This Can Any One Create Example For Me

Hi Guntur,

Welcome to the Kodular community!

Would you like a procedure to which the value of Clock.Now is passed, or to directly execute storeValue?

If I understood correctly, the exact request you made is this.

But you need to format the Clock.Now instant, because without formatting it’s a very long text containing every detail of the instant and if you don’t use the requestID variable more than once, you could do it like this.

Then it will be like

{
“customer”: “John Doe”,
“product”: “Laptop”,
“discount”: “10%”,
“reason”: “Promo”,
“status”: “Pending”
}
:green_heart: