Method: eventticketclass.list
HTTP 请求
GET https://walletobjects.googleapis.com/walletobjects/v1/eventTicketClass
网址采用 gRPC 转码语法。
查询参数
参数 |
issuerId |
string (int64 format)
已授权列出类的发卡机构的 ID。
|
token |
string
如果已指定 maxResults ,但列表中包含的类数量超过 maxResults ,则用于获取下一组结果。例如,如果您有一个包含 200 个类的列表,maxResults 设置为 20 时,调用的列表将返回前 20 个类和一个令牌。使用设置为 20 的 maxResults 和令牌再次调用列表,将获取下一组的 20 个类。
|
maxResults |
integer
确定列表返回的结果数上限。如果未定义 maxResults ,则返回所有结果。
|
响应正文
字段 |
resources[] |
object (EventTicketClass )
与列表请求对应的资源。
|
pagination |
object (Pagination )
响应的分页。
|
授权范围
需要以下 OAuth 范围:
https://www.googleapis.com/auth/wallet_object.issuer
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2024-11-07。
[null,null,["最后更新时间 (UTC):2024-11-07。"],[[["Retrieves a list of all event ticket classes for a given issuer ID using a GET request to the specified endpoint."],["Allows for pagination using query parameters like `token` and `maxResults` to handle large result sets."],["Requires an empty request body and returns a JSON response containing an array of `EventTicketClass` resources and pagination details."],["Needs authorization with the `https://www.googleapis.com/auth/wallet_object.issuer` OAuth scope for access."]]],["The core action is retrieving a list of event ticket classes using a `GET` request to a specific URL. Key information includes the required `issuerId` query parameter for authorization, `token` for paginated results, and optional `maxResults` to limit the number of classes returned. The request body must be empty. The successful response includes an array of `resources` (event ticket classes) and `pagination` details in JSON format. Authorization requires the `wallet_object.issuer` scope.\n"]]