ট্র্যাকিং পিক্সেল
আপনার ট্র্যাকিং পিক্সেল আনুন ও প্রশাসন করুন।
GET https://rqrcode.com/api/pixels/
curl --request GET \
--url 'https://rqrcode.com/api/pixels/' \
--header 'Authorization: Bearer {api_key}'
| Parameter | বিস্তারিত | বিবরণ |
|---|---|---|
| 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 বিজ্ঞাপন",
"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 বিজ্ঞাপন",
"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'
| Parameter | বিস্তারিত | বিবরণ |
|---|---|---|
| type |
Required field
ui.admin.api_docs.common.types.স্ট্রিং
|
অনুমোদিত মান: facebook, google_analytics, google_tag_manager, linkedin, pinterest, twitter, quora, tiktok, snapchat |
| name |
Required field
ui.admin.api_docs.common.types.স্ট্রিং
|
কোনো বর্ণনা নেই |
| pixel |
Required field
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 নতুন নাম'
| Parameter | বিস্তারিত | বিবরণ |
|---|---|---|
| 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.