पिक्सल्स
GET https://77qr.io/api/pixels/
curl --request GET \
--url 'https://77qr.io/api/pixels/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://77qr.io/api/pixels/' \
--header 'Authorization: Bearer {api_key}' \
पैरामिटरहरू | विवरण | विवरण |
---|---|---|
page | वैकल्पिक पूर्णांक | तपाईंले परिणामहरू प्राप्त गर्न चाहनुको पृष्ठ संख्या। 1 मूल्य डिफल्ट गरिएको छ। |
results_per_page | वैकल्पिक पूर्णांक | प्रति पृष्ठ कति परिणाम तपाईं चाहनुहुन्छ? अनुमति अंकहरू हुन्छन: 10 , 25 , 50 , 100 , 250 , 500 , 1000 । 25 मूल्य डिफल्ट गरिन्छ। |
{
"data": [
{
"id": 1,
"type": "facebook",
"name": "Fb Ads",
"pixel": "1234567",
"last_datetime": null,
"datetime": "2025-03-12 16:03:23"
},
],
"meta": {
"page": 1,
"results_per_page": 25,
"total": 1,
"total_pages": 1
},
"links": {
"first": "https://77qr.io/api/pixels?&page=1",
"last": "https://77qr.io/api/pixels?&page=1",
"next": null,
"prev": null,
"self": "https://77qr.io/api/pixels?&page=1"
}
}
GET https://77qr.io/api/pixels/{pixel_id}
curl --request GET \
--url 'https://77qr.io/api/pixels/{pixel_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://77qr.io/api/pixels/{pixel_id}' \
--header 'Authorization: Bearer {api_key}' \
{
"data": {
"id": 1,
"type": "facebook",
"name": "Fb Ads",
"pixel": "1234567",
"last_datetime": null,
"datetime": "2025-03-12 16:03:23"
}
}
POST https://77qr.io/api/pixels
पैरामिटरहरू | विवरण | विवरण |
---|---|---|
type | आवश्यक स्ट्रिंग | स्वीकृत मानहरू: facebook , google_analytics , google_tag_manager , linkedin , pinterest , twitter , quora , tiktok , snapchat |
name | आवश्यक स्ट्रिंग | - |
pixel | आवश्यक स्ट्रिंग | - |
curl --request POST \
--url 'https://77qr.io/api/pixels' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'type=facebook' \
--form 'name=Facebook' \
--form 'pixel=12345678' \
--url 'https://77qr.io/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://77qr.io/api/pixels/{pixel_id}
पैरामिटरहरू | विवरण | विवरण |
---|---|---|
type | वैकल्पिक स्ट्रिंग | स्वीकृत मानहरू: facebook , google_analytics , google_tag_manager , linkedin , pinterest , twitter , quora , tiktok , snapchat |
name | वैकल्पिक स्ट्रिंग | - |
pixel | वैकल्पिक स्ट्रिंग | - |
curl --request POST \
--url 'https://77qr.io/api/pixels/{pixel_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Facebook New Name' \
--url 'https://77qr.io/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://77qr.io/api/pixels/{pixel_id}
curl --request DELETE \
--url 'https://77qr.io/api/pixels/{pixel_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://77qr.io/api/pixels/{pixel_id}' \
--header 'Authorization: Bearer {api_key}' \