Object Validation node returns Unsupported type: timestamp error
Hi, trying to create firestore doc via api call based on this video https://www.youtube.com/watch?v=9-RCaOhz_eE. the main workflow works. but i want to add "created_at" field. In validation part i have
{ field: 'created_at', required: false, type: 'timestamp' },
and my body json is like
"created_at": "2024-07-05T02:08:55.000Z",
even if i change it into actual timestamp like this - still not working
"created_at": 1720122473,
Whit such config, the object validation node returns an error: Unsupported type: timestamp
Any idea how i can put actual timestamp to my firestore doc?
{ field: 'created_at', required: false, type: 'timestamp' },
and my body json is like
"created_at": "2024-07-05T02:08:55.000Z",
even if i change it into actual timestamp like this - still not working
"created_at": 1720122473,
Whit such config, the object validation node returns an error: Unsupported type: timestamp
Any idea how i can put actual timestamp to my firestore doc?
YouTubeBuildShip
Get started at https://buildship.com
This video shows how you can use BuildShip's built in Firestore. If you want to use your own Firestore then simply follow these short steps to connect to your Firebase https://docs.buildship.com/tutorials/firebase-project
Then you can build workflows with Firestore CRUD with ease no code style.
Chat: htt...
This video shows how you can use BuildShip's built in Firestore. If you want to use your own Firestore then simply follow these short steps to connect to your Firebase https://docs.buildship.com/tutorials/firebase-project
Then you can build workflows with Firestore CRUD with ease no code style.

