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:

リクエストボディ

無し。

レスポンスボディ

レスポンスボディの例:

{
  "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"
}