Websites
GET https://simplifyanalytics.app/api/websites/
curl --request GET \
--url 'https://simplifyanalytics.app/api/websites/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://simplifyanalytics.app/api/websites/' \
--header 'Authorization: Bearer {api_key}' \
Parameter | Details | Beschreibung |
---|---|---|
page | Optional (Optional) Ganzzahl | Die Seitenzahl, von der Sie Ergebnisse erhalten möchten. Standardmäßig ist sie 1 . |
results_per_page | Optional (Optional) Ganzzahl | Wie viele Ergebnisse möchten Sie pro Seite? Erlaubte Werte sind: 10 , 25 , 50 , 100 , 250 , 500 , 1000 . Standardmäßig ist es 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://simplifyanalytics.app/api/websites?&page=1",
"last": "https://simplifyanalytics.app/api/websites?&page=1",
"next": null,
"prev": null,
"self": "https://simplifyanalytics.app/api/websites?&page=1"
}
}
GET https://simplifyanalytics.app/api/websites/{website_id}
curl --request GET \
--url 'https://simplifyanalytics.app/api/websites/{website_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://simplifyanalytics.app/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://simplifyanalytics.app/api/websites
Parameter | Details | Beschreibung |
---|---|---|
name | Erforderlich Zeichenkette | - |
scheme | Optional (Optional) Zeichenkette | Erlaubte Werte: http:// , https:// |
host | Erforderlich Zeichenkette | Website-Host & Pfad. Beispiel: https://example.com/path . |
tracking_type | Optional (Optional) Zeichenkette | Erlaubte Werte: lightweight , normal |
excluded_ips | Optional (Optional) Zeichenkette | IPs vom Tracking ausschließen. Geben Sie kommagetrennte Werte ein. |
events_children_is_enabled | Optional (Optional) Boolean | Verfolgen Sie Besucherereignisse (Mausklicks, Größenänderungen, Bildläufe, Formularübermittlungen). Erlaubte Werte sind: 0 oder 1 . Nur für den Tracking-Typ normal verfügbar. |
sessions_replays_is_enabled | Optional (Optional) Boolean | Sitzungswiederholungen. Erlaubte Werte sind: 0 oder 1 . Nur verfügbar für den Tracking-Typ normal . |
email_reports_is_enabled | Optional (Optional) Boolean | E-Mail-Berichte. Erlaubte Werte sind: 0 oder 1 . |
curl --request POST \
--url 'https://simplifyanalytics.app/api/websites' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'host=website.com' \
--form 'name=Example' \
--url 'https://simplifyanalytics.app/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://simplifyanalytics.app/api/websites/{website_id}
Parameter | Details | Beschreibung |
---|---|---|
name | Optional (Optional) Zeichenkette | - |
scheme | Optional (Optional) Zeichenkette | Erlaubte Werte: http:// , https:// |
host | Optional (Optional) Zeichenkette | Website-Host & Pfad. Beispiel: https://example.com/path . |
excluded_ips | Optional (Optional) Zeichenkette | IPs vom Tracking ausschließen. Geben Sie kommagetrennte Werte ein. |
events_children_is_enabled | Optional (Optional) Boolean | Verfolgen Sie Besucherereignisse (Mausklicks, Größenänderungen, Bildläufe, Formularübermittlungen). Erlaubte Werte sind: 0 oder 1 . Nur für den Tracking-Typ normal verfügbar. |
sessions_replays_is_enabled | Optional (Optional) Boolean | Sitzungswiederholungen. Erlaubte Werte sind: 0 oder 1 . Nur verfügbar für den Tracking-Typ normal . |
email_reports_is_enabled | Optional (Optional) Boolean | E-Mail-Berichte. Erlaubte Werte sind: 0 oder 1 . |
is_enabled | Optional (Optional) Boolean | Website-Tracking-Status. Erlaubte Werte sind: 0 oder 1 . |
curl --request POST \
--url 'https://simplifyanalytics.app/api/websites/{website_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Example' \
--form 'is_enabled=0' \
--url 'https://simplifyanalytics.app/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://simplifyanalytics.app/api/websites/{website_id}
curl --request DELETE \
--url 'https://simplifyanalytics.app/api/websites/{website_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://simplifyanalytics.app/api/websites/{website_id}' \
--header 'Authorization: Bearer {api_key}' \