You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: List rows from a reference table using cursor-based pagination. Use the returned continuation_token in the next request to fetch the following page. Returns a 400 error for tables with more than 10,000,000 rows.
126685
+
operationId: ListReferenceTableRows
126686
+
parameters:
126687
+
- description: Unique identifier of the reference table to list rows from.
126688
+
example: "00000000-0000-0000-0000-000000000000"
126689
+
in: path
126690
+
name: id
126691
+
required: true
126692
+
schema:
126693
+
type: string
126694
+
- description: Number of rows to return per page. Defaults to 100, maximum is 1000.
126695
+
example: 100
126696
+
in: query
126697
+
name: page[limit]
126698
+
required: false
126699
+
schema:
126700
+
default: 100
126701
+
format: int64
126702
+
maximum: 1000
126703
+
minimum: 1
126704
+
type: integer
126705
+
- description: Opaque cursor returned in the previous response links.next. Pass this value to retrieve the next page of results on the same consistent snapshot.
# List rows from a reference table using cursor-based pagination. Use the returned continuation_token in the next request to fetch the following page. Returns a 400 error for tables with more than 10,000,000 rows.
516
+
#
517
+
# @param id [String] Unique identifier of the reference table to list rows from.
518
+
# @param opts [Hash] the optional parameters
519
+
# @option opts [Integer] :page_limit Number of rows to return per page. Defaults to 100, maximum is 1000.
520
+
# @option opts [String] :page_continuation_token Opaque cursor returned in the previous response links.next. Pass this value to retrieve the next page of results on the same consistent snapshot.
521
+
# @return [Array<(ListRowsResponse, Integer, Hash)>] ListRowsResponse data, response status code and response headers
failArgumentError,'invalid value for "opts[:"page_limit"]" when calling ReferenceTablesAPI.list_reference_table_rows, must be smaller than or equal to 1000.'
failArgumentError,'invalid value for "opts[:"page_limit"]" when calling ReferenceTablesAPI.list_reference_table_rows, must be greater than or equal to 1.'
0 commit comments