12.2. サブスクリプションの取得¶
-
GET
/1/
(tenantId)/event/subscriptions/
(name)¶ サブスクリプションを取得する。
Request Headers: - X-Application-Id -- アプリケーションID(必須)
- X-Application-Key -- マスターキー(必須)
- X-Session-Token -- セッショントークン(オプション)
Parameters: - name (string) -- サブスクリプション名
Status Codes: - 200 OK -- 正常終了
- 401 Unauthorized -- 認証エラー
- 403 Forbidden -- 権限エラー
- 404 Not Found -- 存在しないname
- 500 Internal Server Error -- その他
リクエストボディ
無し。
レスポンスボディ
レスポンスボディの例:
{ "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" }