list

HTTP Request

GET /api/v1/tables/:tableReference/uploads

Path parameters

Parameter

tableReference

A qualified reference to the table. See referencing resources for more information.

Query parameters

Parameter

maxResults

Default 100. Must be less than 1000.

pageToken

For paginating through results, provide the value returned from the previous upload.list call

This endpoint extends the general API structure.

Authorization

Edit access to the table's dataset is required. Your access token must have one of the following scopes:

  • data.edit

Learn more about authorization.

Request body

The request body must be empty.

Response body

Returns a JSON representation of a list of upload resources.

{
    "kind": "tableList",
    "nextPageToken": integer,
    "results": [
        object(upload.list)
    ]
}

Examples

Last updated