webhook
チェックイン
Webhook IDを発行したユーザで新規チェックインを行います。
post/webhooks/checkin/{id}
Path parameters
idstring required
Webhook管理ページで発行したID
Request body
Example request
{
"checked_in_at": "2020-07-21T19:19:19+0900",
"tags": [
"Example",
"Example_2"
],
"link": "http://example.com",
"note": "すごく出た"
}Response
チェックイン成功
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"
}
}