روابط
GET https://rqrcode.com/api/links/
curl --request GET \
--url 'https://rqrcode.com/api/links/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://rqrcode.com/api/links/' \
--header 'Authorization: Bearer {api_key}' \
المعلمات | تفاصيل | الوصف |
---|---|---|
page | اختياري عدد صحيح | رقم الصفحة التي ترغب في الحصول على النتائج منها. يتم تعيين القيمة الافتراضية إلى 1 |
results_per_page | اختياري عدد صحيح | كم عدد النتائج التي تريد في كل صفحة. القيم المسموح بها هي: 10 , 25 , 50 , 100 , 250 , 500 , 1000 . القيمة الافتراضية هي 25 . |
{
"data": [
{
"id": 1,
"project_id": null,
"domain_id": 0,
"type": "link",
"url": "example",
"location_url": "https://example.com/",
"settings": {
"password": null,
"sensitive_content": false
},
"pageviews": 10,
"order": 0,
"start_date": null,
"end_date": null,
"date": "2020-11-15 12:00:00"
}
],
"meta": {
"page": 1,
"results_per_page": 25,
"total": 1,
"total_pages": 1
},
"links": {
"first": "https://rqrcode.com/api/links?&page=1",
"last": "https://rqrcode.com/api/links?&page=1",
"next": null,
"prev": null,
"self": "https://rqrcode.com/api/links?&page=1"
}
}
GET https://rqrcode.com/api/links/{link_id}
curl --request GET \
--url 'https://rqrcode.com/api/links/{link_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://rqrcode.com/api/links/{link_id}' \
--header 'Authorization: Bearer {api_key}' \
{
"data": {
"id": 1,
"project_id": null,
"domain_id": 0,
"type": "link",
"url": "example",
"location_url": "https://example.com/",
"settings": {
"password": null,
"sensitive_content": false
},
"pageviews": 10,
"order": 0,
"start_date": null,
"end_date": null,
"date": "2020-11-15 12:00:00"
}
}
POST https://rqrcode.com/api/links
المعلمات | تفاصيل | الوصف |
---|---|---|
location_url | مطلوب سلسلة | عنوان الرابط الهدف |
url | اختياري سلسلة | الاسم المستعار لعنوان الرابط المولد. اتركه فارغًا لتوليده عشوائيًا. |
domain_id | اختياري عدد صحيح | - |
project_id | اختياري عدد صحيح | - |
pixels_ids | اختياري مصفوفة عدد صحيح | - |
schedule | اختياري قيمة منطقية | - |
start_date | اختياري سلسلة | متوفر عندما: schedule = true |
end_date | اختياري سلسلة | متوفر عندما: schedule = true |
pageviews_limit | اختياري عدد صحيح | - |
expiration_url | اختياري سلسلة | - |
password | اختياري سلسلة | - |
forward_query_parameters_is_enabled | اختياري قيمة منطقية | - |
utm_source | اختياري missing_translation: api_documentation.strings | - |
utm_medium | اختياري missing_translation: api_documentation.strings | - |
utm_campaign | اختياري missing_translation: api_documentation.strings | - |
sensitive_content | اختياري قيمة منطقية | - |
http_status_code | اختياري عدد صحيح | القيم المسموح بها: 301 , 302 , 307 , 308 |
app_linking_is_enabled | اختياري قيمة منطقية | - |
cloaking_is_enabled | اختياري قيمة منطقية | - |
cloaking_title | اختياري سلسلة | - |
cloaking_favicon | اختياري ملف | - |
cloaking_opengraph | اختياري ملف | - |
targeting_type | اختياري سلسلة | continent_code , country_code , city_name , device_type , browser_language , rotation , os_name , browser_name |
targeting_continent_code_key[index] | اختياري سلسلة | (targeting_type=continent_code) |
targeting_continent_code_value[index] | اختياري سلسلة | (targeting_type=continent_code) |
targeting_country_code_key[index] | اختياري سلسلة | (targeting_type=country_code) |
targeting_country_code_value[index] | اختياري سلسلة | (targeting_type=country_code) |
targeting_city_name_key[index] | اختياري سلسلة | (targeting_type=city_name) |
targeting_city_name_value[index] | اختياري سلسلة | (targeting_type=city_name) |
targeting_device_type_key[index] | اختياري سلسلة | (targeting_type=device_type) |
targeting_device_type_value[index] | اختياري سلسلة | (targeting_type=device_type) |
targeting_browser_language_key[index] | اختياري سلسلة | (targeting_type=browser_language) |
targeting_browser_language_value[index] | اختياري سلسلة | (targeting_type=browser_language) |
targeting_rotation_key[index] | اختياري سلسلة | (targeting_type=rotation) |
targeting_rotation_value[index] | اختياري سلسلة | (targeting_type=rotation) |
targeting_os_name_key[index] | اختياري سلسلة | (targeting_type=os_name) |
targeting_os_name_value[index] | اختياري سلسلة | (targeting_type=os_name) |
targeting_browser_name_key[index] | اختياري سلسلة | (targeting_type=browser_name) |
targeting_browser_name_value[index] | اختياري سلسلة | (targeting_type=browser_name) |
curl --request POST \
--url 'https://rqrcode.com/api/links' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'url=example' \
--form 'location_url=https://rqrcode.com/' \
--url 'https://rqrcode.com/api/links' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'url=example' \
--form 'location_url=https://rqrcode.com/' \
{
"data": {
"id": 1
}
}
POST https://rqrcode.com/api/links/{link_id}
المعلمات | تفاصيل | الوصف |
---|---|---|
location_url | اختياري سلسلة | عنوان الرابط الهدف |
url | اختياري سلسلة | الاسم المستعار لعنوان الرابط المولد. اتركه فارغًا لتوليده عشوائيًا. |
domain_id | اختياري عدد صحيح | - |
project_id | اختياري عدد صحيح | - |
pixels_ids | اختياري مصفوفة عدد صحيح | - |
schedule | اختياري قيمة منطقية | - |
start_date | اختياري سلسلة | متوفر عندما: schedule = true |
end_date | اختياري سلسلة | متوفر عندما: schedule = true |
pageviews_limit | اختياري عدد صحيح | - |
expiration_url | اختياري سلسلة | - |
password | اختياري سلسلة | - |
forward_query_parameters_is_enabled | اختياري قيمة منطقية | - |
utm_source | اختياري missing_translation: api_documentation.strings | - |
utm_medium | اختياري missing_translation: api_documentation.strings | - |
utm_campaign | اختياري missing_translation: api_documentation.strings | - |
sensitive_content | اختياري قيمة منطقية | - |
http_status_code | اختياري عدد صحيح | القيم المسموح بها: 301 , 302 , 307 , 308 |
app_linking_is_enabled | اختياري قيمة منطقية | - |
cloaking_is_enabled | اختياري قيمة منطقية | - |
cloaking_title | اختياري سلسلة | - |
cloaking_favicon | اختياري ملف | - |
cloaking_opengraph | اختياري ملف | - |
targeting_type | اختياري سلسلة | continent_code , country_code , city_name , device_type , browser_language , rotation , os_name , browser_name |
targeting_continent_code_key[index] | اختياري سلسلة | (targeting_type=continent_code) |
targeting_continent_code_value[index] | اختياري سلسلة | (targeting_type=continent_code) |
targeting_country_code_key[index] | اختياري سلسلة | (targeting_type=country_code) |
targeting_country_code_value[index] | اختياري سلسلة | (targeting_type=country_code) |
targeting_city_name_key[index] | اختياري سلسلة | (targeting_type=city_name) |
targeting_city_name_value[index] | اختياري سلسلة | (targeting_type=city_name) |
targeting_device_type_key[index] | اختياري سلسلة | (targeting_type=device_type) |
targeting_device_type_value[index] | اختياري سلسلة | (targeting_type=device_type) |
targeting_browser_language_key[index] | اختياري سلسلة | (targeting_type=browser_language) |
targeting_browser_language_value[index] | اختياري سلسلة | (targeting_type=browser_language) |
targeting_rotation_key[index] | اختياري سلسلة | (targeting_type=rotation) |
targeting_rotation_value[index] | اختياري سلسلة | (targeting_type=rotation) |
targeting_os_name_key[index] | اختياري سلسلة | (targeting_type=os_name) |
targeting_os_name_value[index] | اختياري سلسلة | (targeting_type=os_name) |
targeting_browser_name_key[index] | اختياري سلسلة | (targeting_type=browser_name) |
targeting_browser_name_value[index] | اختياري سلسلة | (targeting_type=browser_name) |
curl --request POST \
--url 'https://rqrcode.com/api/links/{link_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'is_enabled=0' \
--url 'https://rqrcode.com/api/links/{link_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'is_enabled=0' \
{
"data": {
"id": 1
}
}
DELETE https://rqrcode.com/api/links/{link_id}
curl --request DELETE \
--url 'https://rqrcode.com/api/links/{link_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://rqrcode.com/api/links/{link_id}' \
--header 'Authorization: Bearer {api_key}' \