ٹریکنگ پکسلز
اپنے ٹریکنگ پکسلز حاصل کریں اور منظم کریں۔
GET https://rqrcode.com/api/pixels/
curl --request GET \
--url 'https://rqrcode.com/api/pixels/' \
--header 'Authorization: Bearer {api_key}'
| پیرامیٹرز | تفصیلات | تفصیل |
|---|---|---|
| page |
اختیاری
ui.admin.api_docs.common.types.صحیح عدد
|
وہ صفحہ نمبر جس کے لیے آپ نتائج حاصل کرنا چاہتے ہیں۔ ڈیفالٹ 1 ہے۔ |
| results_per_page |
اختیاری
ui.admin.api_docs.common.types.صحیح عدد
|
فی صفحہ کتنے نتائج چاہئیں۔ اجازت یافتہ قدریں: 10، 25، 50، 100، 250، 500، 1000۔ ڈیفالٹ 25 ہے۔ |
{
"data": [
{
"id": 1,
"type": "facebook",
"name": "Facebook Ads",
"pixel": "1234567",
"last_datetime": null,
"datetime": "2026-04-20 07:54:26"
}
],
"meta": {
"page": 1,
"results_per_page": 25,
"total": 1,
"total_pages": 1
},
"links": {
"first": "https://rqrcode.com/api/pixels?page=1",
"last": "https://rqrcode.com/api/pixels?page=1",
"next": null,
"prev": null,
"self": "https://rqrcode.com/api/pixels?page=1"
}
}
GET https://rqrcode.com/api/pixels/{pixel_id}
curl --request GET \
--url 'https://rqrcode.com/api/pixels/{pixel_id}' \
--header 'Authorization: Bearer {api_key}'
{
"data": {
"id": 1,
"type": "facebook",
"name": "Facebook Ads",
"pixel": "1234567",
"last_datetime": null,
"datetime": "2026-04-20 07:54:26"
}
}
POST https://rqrcode.com/api/pixels
curl --request POST \
--url 'https://rqrcode.com/api/pixels' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'type=facebook' \
--form 'name=Facebook' \
--form 'pixel=12345678'
| پیرامیٹرز | تفصیلات | تفصیل |
|---|---|---|
| type |
ضروری
ui.admin.api_docs.common.types.اسٹرنگ
|
اجازت یافتہ قدریں: facebook, google_analytics, google_tag_manager, linkedin, pinterest, twitter, quora, tiktok, snapchat |
| name |
ضروری
ui.admin.api_docs.common.types.اسٹرنگ
|
- |
| pixel |
ضروری
ui.admin.api_docs.common.types.اسٹرنگ
|
- |
{
"data": {
"id": 1
}
}
POST https://rqrcode.com/api/pixels/{pixel_id}
curl --request POST \
--url 'https://rqrcode.com/api/pixels/{pixel_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Facebook نیا نام'
| پیرامیٹرز | تفصیلات | تفصیل |
|---|---|---|
| type |
اختیاری
ui.admin.api_docs.common.types.اسٹرنگ
|
اجازت یافتہ قدریں: facebook, google_analytics, google_tag_manager, linkedin, pinterest, twitter, quora, tiktok, snapchat |
| name |
اختیاری
ui.admin.api_docs.common.types.اسٹرنگ
|
- |
| pixel |
اختیاری
ui.admin.api_docs.common.types.اسٹرنگ
|
- |
{
"data": {
"id": 1
}
}
DELETE https://rqrcode.com/api/pixels/{pixel_id}
curl --request DELETE \
--url 'https://rqrcode.com/api/pixels/{pixel_id}' \
--header 'Authorization: Bearer {api_key}'
Success پر empty 200 response body۔