Endpoint
Authentication
Bearer token for authentication
Path Parameters
The share name to query. Case-insensitive.
Query Parameters
The maximum number of results per page that should be returned. If the number of available results is larger than
maxResults, the response will provide a nextPageToken that can be used to get the next page of results in subsequent list requests.The server may return fewer than maxResults items even if there are more available. The client should check nextPageToken in the response to determine if there are more available.Must be non-negative. 0 will return no results but nextPageToken may be populated.Specifies a page token to use. Set
pageToken to the nextPageToken returned by a previous list request to get the next page of results.nextPageToken will not be returned in a response if there are no more results available.Response
Success Response (200)
Array of table objects. May be an empty array or missing when no results are found.
Token for retrieving the next page of results. May be an empty string or missing when there are no additional results. The client must handle both cases.
Example Response
Error Responses
400 - Bad Request
400 - Bad Request
The request is malformed.
401 - Unauthorized
401 - Unauthorized
403 - Forbidden
403 - Forbidden
The request is forbidden from being fulfilled.
404 - Not Found
404 - Not Found
The requested resource does not exist.
500 - Internal Server Error
500 - Internal Server Error
The request is not handled correctly due to a server error.
Usage Example
Notes
The
items field may be an empty array or missing when no results are found. The client must handle both cases.This endpoint is a convenience method that combines listing schemas and listing tables within each schema. For large shares with many tables, consider using pagination with the
maxResults and pageToken parameters.