Gets multiple documents.
Documents returned by this method are not guaranteed to be returned in the same order that they were requested.
HTTP request
POST https://firestore.googleapis.com/v1beta1/{database=projects/*/databases/*}/documents:batchGet
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
database |
Required. The database name. In the format: |
Request body
The request body contains data with the following structure:
JSON representation |
---|
{ "documents": [ string ], "mask": { object ( |
Fields | |
---|---|
documents[] |
The names of the documents to retrieve. In the format: |
mask |
The fields to return. If not set, returns all fields. If a document has a field that is not present in this mask, that field will not be returned in the response. |
Union field consistency_selector . The consistency mode for this transaction. If not set, defaults to strong consistency. consistency_selector can be only one of the following: |
|
transaction |
Reads documents in a transaction. A base64-encoded string. |
newTransaction |
Starts a new transaction and reads the documents. Defaults to a read-only transaction. The new transaction ID will be returned as the first response in the stream. |
readTime |
Reads documents as they were at the given time. This must be a microsecond precision timestamp within the past one hour, or if Point-in-Time Recovery is enabled, can additionally be a whole minute timestamp within the past 7 days. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
Response body
The streamed response for Firestore.BatchGetDocuments
.
If successful, the response body contains data with the following structure:
JSON representation |
---|
{ "transaction": string, "readTime": string, // Union field |
Fields | |
---|---|
transaction |
The transaction that was started as part of this request. Will only be set in the first response, and only if A base64-encoded string. |
readTime |
The time at which the document was read. This may be monotically increasing, in this case the previous documents in the result stream are guaranteed not to have changed between their readTime and this one. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
Union field result . A single result. This can be empty if the server is just returning a transaction. result can be only one of the following: |
|
found |
A document that was requested. |
missing |
A document name that was requested but does not exist. In the format: |
Authorization scopes
Requires one of the following OAuth scopes:
https://www.googleapis.com/auth/datastore
https://www.googleapis.com/auth/cloud-platform
For more information, see the Authentication Overview.