12.3. サブスクリプションの一覧取得¶
-
DELETE
/1/
(tenantId)/event/subscriptions
¶ サブスクリプションを一覧を取得する。
Request Headers: - X-Application-Id -- アプリケーションID(必須)
- X-Application-Key -- マスターキー(必須)
- X-Session-Token -- セッショントークン(オプション)
Query Parameters: - skip (int) -- スキップカウント
- limit (int) -- 検索数上限
Status Codes: - 200 OK -- 正常終了
- 401 Unauthorized -- 認証エラー
- 403 Forbidden -- 権限エラー
- 500 Internal Server Error -- その他
リクエストボディ
無し。
レスポンスボディ
レスポンスボディの例:
{ "results": [ { "name": "photo-event", "source": { "type": "fileStorage" }, "filter": { "bucketName": "photos", "action": { "$in": ["file.created", "file.updated"] } }, "handler": { "type": "cloudFunction", "functionName": "makeThumbnail" }, "createdAt": "2018-03-05T18:26:17.000Z", "updatedAt": "2018-03-05T18:26:18.000Z", "etag":"db812a46-319c-4535-92a0-236ce04b2636" }, { "name": "hourly-event", "source": { "type": "scheduler" }, "filter": { "schedule": "hourly" }, "handler": { "type": "cloudFunction", "functionName": "collectGarbage" }, "createdAt": "2018-03-05T18:26:30.000Z", "updatedAt": "2018-03-05T18:26:31.000Z", "etag":"d3b9423f-b786-480c-885a-d466b0816f8a" } ] }