This is what I can do:
- Insert data into FireBase with Postman
- Query data From FireBase with Postman
- Query Data from FireStore with Postman
Example:
Get From FireStore:
https://firestore.googleapis.com/v1beta1/projects/myProjectID/databases/(default)/documents/alerts (this works)
Post to FireBase: https://myProjectID.firebaseio.com/alerts.json (plus the raw json) - this works on firebase but not firestore
What I cannot do is create a new record in FireStore from Postman. This is what I found..
https://firestore.googleapis.com/v1beta1/{database=projects//databases/}/documents:write
This does not work for me. I would like to do it from Postman. My database is called Alerts. Any help will be greatly appreciated.