Sporingspixels
                                GET https://digily.link/api/pixels/
                            
                        
                                curl --request GET \
--url 'https://digily.link/api/pixels/' \
--header 'Authorization: Bearer {api_key}' \
                        --url 'https://digily.link/api/pixels/' \
--header 'Authorization: Bearer {api_key}' \
| Parametre | Detaljer | Beskrivelse | 
|---|---|---|
| page | Valgfri Heltal | Sidetal, som du ønsker resultater fra. Standard er 1. | 
                            
| results_per_page | Valgfri Heltal | Hvor mange resultater vil du have pr. side. Tilladte værdier er: 10 , 25 , 50 , 100 , 250 , 500 , 1000. Standard er 25. | 
                            
{
    "data": [
        {
            "id": 1,
            "type": "facebook",
            "name": "Fb Ads",
            "pixel": "1234567",
            "last_datetime": null,
            "datetime": "2025-11-04 12:37:06",
        },
    ],
    "meta": {
        "page": 1,
        "results_per_page": 25,
        "total": 1,
        "total_pages": 1
    },
    "links": {
        "first": "https://digily.link/api/pixels?page=1",
        "last": "https://digily.link/api/pixels?page=1",
        "next": null,
        "prev": null,
        "self": "https://digily.link/api/pixels?page=1"
    }
}
                        
                                GET https://digily.link/api/pixels/{pixel_id}
                            
                        
                                curl --request GET \
--url 'https://digily.link/api/pixels/{pixel_id}' \
--header 'Authorization: Bearer {api_key}' \
                        --url 'https://digily.link/api/pixels/{pixel_id}' \
--header 'Authorization: Bearer {api_key}' \
{
    "data": {
        "id": 1,
        "type": "facebook",
        "name": "Fb Ads",
        "pixel": "1234567",
        "last_datetime": null,
        "datetime": "2025-11-04 12:37:06",
    }
}
                        
                                POST https://digily.link/api/pixels
                            
                        | Parametre | Detaljer | Beskrivelse | 
|---|---|---|
| type | Påkrævet Streng | Tilladte værdier: facebook , google_analytics , google_tag_manager , linkedin , pinterest , twitter , quora , tiktok , snapchat | 
                            
| name | Påkrævet Streng | - | 
| pixel | Påkrævet Streng | - | 
                                curl --request POST \
--url 'https://digily.link/api/pixels' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'type=facebook' \
--form 'name=Facebook' \
--form 'pixel=12345678' \
                            
                        --url 'https://digily.link/api/pixels' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'type=facebook' \
--form 'name=Facebook' \
--form 'pixel=12345678' \
{
    "data": {
        "id": 1
    }
}
                        
                                POST https://digily.link/api/pixels/{pixel_id}
                            
                        | Parametre | Detaljer | Beskrivelse | 
|---|---|---|
| type | Valgfri Streng | Tilladte værdier: facebook , google_analytics , google_tag_manager , linkedin , pinterest , twitter , quora , tiktok , snapchat | 
                            
| name | Valgfri Streng | - | 
| pixel | Valgfri Streng | - | 
                                curl --request POST \
--url 'https://digily.link/api/pixels/{pixel_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Facebook New Name' \
                            
                        --url 'https://digily.link/api/pixels/{pixel_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Facebook New Name' \
{
    "data": {
        "id": 1
    }
}
                        
                                DELETE https://digily.link/api/pixels/{pixel_id}
                            
                        
                                curl --request DELETE \
--url 'https://digily.link/api/pixels/{pixel_id}' \
--header 'Authorization: Bearer {api_key}' \
                            
                        --url 'https://digily.link/api/pixels/{pixel_id}' \
--header 'Authorization: Bearer {api_key}' \