Websites
                                GET https://weblytics.es/api/websites/
                            
                        
                                curl --request GET \
--url 'https://weblytics.es/api/websites/' \
--header 'Authorization: Bearer {api_key}' \
                        --url 'https://weblytics.es/api/websites/' \
--header 'Authorization: Bearer {api_key}' \
| Parameters | Details | Description | 
|---|---|---|
| page | Optional Integer | The page number that you want results from. Defaults to 1. | 
| results_per_page | Optional Integer | How many results you want per page. Allowed values are: 10,25,50,100,250,500,1000. Defaults to25. | 
{
    "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",
            "bot_exclusion_is_enabled": true,
            "query_parameters_tracking_is_enabled": true,
            "ip_storage_is_enabled": false,
            "public_statistics_is_enabled": false,
            "public_statistics_password": false,
            "is_enabled": true,
            "datetime": "2019-11-01 12:00:30"
            "last_datetime": null
        },
    ],
    "meta": {
        "page": 1,
        "results_per_page": 25,
        "total": 1,
        "total_pages": 1
    },
    "links": {
        "first": "https://weblytics.es/api/websites?&page=1",
        "last": "https://weblytics.es/api/websites?&page=1",
        "next": null,
        "prev": null,
        "self": "https://weblytics.es/api/websites?&page=1"
    }
}
                        
                    
                                GET https://weblytics.es/api/websites/{website_id}
                            
                        
                                curl --request GET \
--url 'https://weblytics.es/api/websites/{website_id}' \
--header 'Authorization: Bearer {api_key}' \
                        --url 'https://weblytics.es/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",
        "bot_exclusion_is_enabled": true,
        "query_parameters_tracking_is_enabled": true,
        "ip_storage_is_enabled": false,
        "public_statistics_is_enabled": false,
        "public_statistics_password": false,
        "is_enabled": true,
        "datetime": "2019-11-01 12:00:30"
        "last_datetime": null
    }
}
                        
                    
                                POST https://weblytics.es/api/websites
                            
                        | Parameters | Details | Description | 
|---|---|---|
| name | Required String | - | 
| scheme | Optional String | Allowed values: http://,https:// | 
| host | Required String | Website Host & Path. Example: https://example.com/path. | 
| tracking_type | Optional String | Allowed values: lightweight,normal | 
| excluded_ips | Optional String | Exclude IPs from tracking. Enter comma separated values. | 
| events_children_is_enabled | Optional Boolean | Track visitor events (mouse clicks, resizes, scrolls, form submissions). Allowed values are: 0or1. Only available fornormaltracking type. | 
| sessions_replays_is_enabled | Optional Boolean | Session replays. Allowed values are: 0or1. Only available fornormaltracking type. | 
| email_reports_is_enabled | Optional Boolean | Email reports. Allowed values are: 0or1. | 
| query_parameters_tracking_is_enabled | Optional Boolean | - | 
| bot_exclusion_is_enabled | Optional Boolean | - | 
| public_statistics_is_enabled | Optional Boolean | - | 
| public_statistics_password | Optional String | - | 
| is_enabled | Optional Boolean | Website tracking status. Allowed values are: 0or1. | 
                                curl --request POST \
--url 'https://weblytics.es/api/websites' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'host=website.com' \
--form 'name=Example' \
                            
                        --url 'https://weblytics.es/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://weblytics.es/api/websites/{website_id}
                            
                        | Parameters | Details | Description | 
|---|---|---|
| name | Optional String | - | 
| scheme | Optional String | Allowed values: http://,https:// | 
| host | Optional String | Website Host & Path. Example: https://example.com/path. | 
| excluded_ips | Optional String | Exclude IPs from tracking. Enter comma separated values. | 
| events_children_is_enabled | Optional Boolean | Track visitor events (mouse clicks, resizes, scrolls, form submissions). Allowed values are: 0or1. Only available fornormaltracking type. | 
| sessions_replays_is_enabled | Optional Boolean | Session replays. Allowed values are: 0or1. Only available fornormaltracking type. | 
| email_reports_is_enabled | Optional Boolean | Email reports. Allowed values are: 0or1. | 
| query_parameters_tracking_is_enabled | Optional Boolean | - | 
| bot_exclusion_is_enabled | Optional Boolean | - | 
| public_statistics_is_enabled | Optional Boolean | - | 
| public_statistics_password | Optional String | - | 
| is_enabled | Optional Boolean | Website tracking status. Allowed values are: 0or1. | 
                                curl --request POST \
--url 'https://weblytics.es/api/websites/{website_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Example' \
--form 'is_enabled=0' \
                            
                        --url 'https://weblytics.es/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://weblytics.es/api/websites/{website_id}
                            
                        
                                curl --request DELETE \
--url 'https://weblytics.es/api/websites/{website_id}' \
--header 'Authorization: Bearer {api_key}' \
                            
                        --url 'https://weblytics.es/api/websites/{website_id}' \
--header 'Authorization: Bearer {api_key}' \