Advertisement
rnddev

Untitled

Jan 16th, 2018
390
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. curl -vsH "Content-Type: application/json" \
  2. -X GET 'https://firestore.googleapis.com/v1beta1/projects/projectIDhere/databases/(default)/documents/collectionName'
  3.  
  4.  
  5. {
  6. "documents": [
  7. {
  8. "name": "projects/projectIDhere/databases/(default)/documents/collectionName/documentID01",
  9. "fields": {
  10. "name": {
  11. "stringValue": "test1"
  12. },
  13. "name2": {
  14. "stringValue": "test2"
  15. }
  16. },
  17. "createTime": "2018-01-16T05:50:16.345709Z",
  18. "updateTime": "2018-01-16T05:50:16.345709Z"
  19. },
  20. {
  21. "name": "projects/projectIDhere/databases/(default)/documents/collectionName/documentID02",
  22. "fields": {
  23. "name": {
  24. "stringValue": "test3"
  25. }
  26. },
  27. "createTime": "2018-01-16T05:59:36.023982Z",
  28. "updateTime": "2018-01-16T05:59:36.023982Z"
  29. }
  30. ]
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement