Page Summary
-
Lists all PhotoSequences belonging to a user, ordered by creation timestamp in descending order.
-
Allows filtering by various criteria such as imagery type, processing state, location, filename, and capture time.
-
Results are paginated and can be retrieved in batches using page tokens.
-
Each PhotoSequence can be in one of three states: processing, processed with error, or processed successfully.
-
Requires authorization with the
https://www.googleapis.com/auth/streetviewpublishscope.
Lists all the PhotoSequences
that belong to the user, in descending photoSequence.create timestamp order.
HTTP request
GET https://streetviewpublish.googleapis.com/v1/photoSequences
The URL uses gRPC Transcoding syntax.
Query parameters
| Parameters | |
|---|---|
pageSize
|
Optional. The maximum number of photo sequences to return. |
pageToken
|
Optional. The |
filter
|
Optional. The filter expression. For example: The filters supported are: |
Request body
The request body must be empty.
Response body
Response to list all photo sequences that belong to a user.
If successful, the response body contains data with the following structure:
| JSON representation |
|---|
{
"photoSequences"
:
[
{
object (
|
photoSequences[]
object (
Operation
)
List of photo sequences via Operation
interface.
The maximum number of items returned is based on the pageSize
field in the request.
Each item in the list can have three possible states,
-
Operation.done= false, if the processing ofPhotoSequenceis not finished yet. -
Operation.done= true andOperation.erroris populated, if there was an error in processing. -
Operation.done= true andOperation.responsecontains aPhotoSequencemessage, In each sequence, onlyIdis populated.
nextPageToken
string
Token to retrieve the next page of results, or empty if there are no more results in the list.
Authorization scopes
Requires the following OAuth scope:
-
https://www.googleapis.com/auth/streetviewpublish
For more information, see the OAuth 2.0 Overview .


