v31

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-01251650.0 KB
webhook

チェックイン

Webhook IDを発行したユーザで新規チェックインを行います。

post/webhooks/checkin/{id}

Path parameters

idstring required

Webhook管理ページで発行したID

Request body

checked_in_atstring date-time

チェックイン日時

tagsstring[]

タグ

linkstring

オカズリンク (http, https)

notestring

ノート

is_privateboolean

非公開チェックインとして設定

is_too_sensitiveboolean

チェックイン対象のオカズをより過激なオカズとして設定

discard_elapsed_timeboolean

前回チェックインからの経過時間を記録しない

Example request

{
  "checked_in_at": "2020-07-21T19:19:19+0900",
  "tags": [
    "Example",
    "Example_2"
  ],
  "link": "http://example.com",
  "note": "すごく出た"
}

Response

チェックイン成功

statusnumber required

HTTPステータスコードと同じ値

Example response

{
  "status": 200,
  "checkin": {
    "checked_in_at": "2020-07-21T19:19:19+0900",
    "tags": [
      "Example",
      "Example_2"
    ],
    "link": "http://example.com",
    "note": "すごく出た",
    "source": "api"
  }
}