网站

GET https://tongji.miknio.com/api/websites/
curl --request GET \
--url 'https://tongji.miknio.com/api/websites/' \
--header 'Authorization: Bearer {api_key}' \
参数 详细信息 描述
page 可选 整数型 你想要获得结果的页码,默认为1
results_per_page 可选 整数型 每页需要多少结果,允许的值为:10 , 25 , 50 , 100 , 250 , 500 , 1000 默认为25
{ "data": [ { "id": 1, "pixel_key": "1234567890123456", "name": "Localhost", "scheme": "https://", "host": "example.com", "path": "/", "tracking_type": "normal", "excluded_ips": "", "events_children_is_enabled": false, "sessions_replays_is_enabled": false, "email_reports_is_enabled": false, "email_reports_last_date": "2020-06-23 19:01:22", "is_enabled": true, "date": "2019-11-01 12:00:30" }, ], "meta": { "page": 1, "results_per_page": 25, "total": 1, "total_pages": 1 }, "links": { "first": "https://tongji.miknio.com/api/websites?&page=1", "last": "https://tongji.miknio.com/api/websites?&page=1", "next": null, "prev": null, "self": "https://tongji.miknio.com/api/websites?&page=1" } }
GET https://tongji.miknio.com/api/websites/{website_id}
curl --request GET \
--url 'https://tongji.miknio.com/api/websites/{website_id}' \
--header 'Authorization: Bearer {api_key}' \
{ "data": { "id": 1, "pixel_key": "1234567890123456", "name": "Localhost", "scheme": "https://", "host": "example.com", "path": "/", "tracking_type": "normal", "excluded_ips": "", "events_children_is_enabled": false, "sessions_replays_is_enabled": false, "email_reports_is_enabled": false, "email_reports_last_date": "2020-06-23 19:01:22", "is_enabled": true, "date": "2019-11-01 12:00:30" } }
POST https://tongji.miknio.com/api/websites
参数 详细信息 描述
name 必填 字符串 -
scheme 可选 字符串 允许的值:http://, https://
host 必填 字符串 Website Host & Path. Example: https://example.com/path.
tracking_type 可选 字符串 允许的值:lightweight, normal
excluded_ips 可选 字符串 Exclude IPs from tracking. Enter comma separated values.
events_children_is_enabled 可选 布尔型 Track visitor events (mouse clicks, resizes, scrolls, form submissions). Allowed values are: 0 or 1. Only available for normal tracking type.
sessions_replays_is_enabled 可选 布尔型 Session replays. Allowed values are: 0 or 1. Only available for normal tracking type.
email_reports_is_enabled 可选 布尔型 Email reports. Allowed values are: 0 or 1.
curl --request POST \
--url 'https://tongji.miknio.com/api/websites' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'host=website.com' \
--form 'name=Example' \
{ "data": { "id": 1 } }
POST https://tongji.miknio.com/api/websites/{website_id}
参数 详细信息 描述
name 可选 字符串 -
scheme 可选 字符串 允许的值:http://, https://
host 可选 字符串 Website Host & Path. Example: https://example.com/path.
excluded_ips 可选 字符串 Exclude IPs from tracking. Enter comma separated values.
events_children_is_enabled 可选 布尔型 Track visitor events (mouse clicks, resizes, scrolls, form submissions). Allowed values are: 0 or 1. Only available for normal tracking type.
sessions_replays_is_enabled 可选 布尔型 Session replays. Allowed values are: 0 or 1. Only available for normal tracking type.
email_reports_is_enabled 可选 布尔型 Email reports. Allowed values are: 0 or 1.
is_enabled 可选 布尔型 Website tracking status. Allowed values are: 0 or 1.
curl --request POST \
--url 'https://tongji.miknio.com/api/websites/{website_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Example' \
--form 'is_enabled=0' \
{ "data": { "id": 1 } }
DELETE https://tongji.miknio.com/api/websites/{website_id}
curl --request DELETE \
--url 'https://tongji.miknio.com/api/websites/{website_id}' \
--header 'Authorization: Bearer {api_key}' \