লিঙ্কগুলি
GET https://lifterbrand.com/api/links/
curl --request GET \
--url 'https://lifterbrand.com/api/links/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://lifterbrand.com/api/links/' \
--header 'Authorization: Bearer {api_key}' \
প্যারামিটার | বিবরণ | বিবরণ |
---|---|---|
page | ঐচ্ছিক পূর্ণসংখ্যা | পৃষ্ঠা নম্বর যেটা আপনি ফলাফল চান। ডিফল্ট হিসাবে ১ প্রস্তুত করা হয়েছে। |
results_per_page | ঐচ্ছিক পূর্ণসংখ্যা | প্রতি পৃষ্ঠায় আপনি কতগুলি ফলাফল চান। অনুমোদিত মানগুলি হল: 10 , 25 , 50 , 100 , 250 , 500 । ডিফল্ট হিসাবে 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
},
"clicks": 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://lifterbrand.com/api/links?&page=1",
"last": "https://lifterbrand.com/api/links?&page=1",
"next": null,
"prev": null,
"self": "https://lifterbrand.com/api/links?&page=1"
}
}
GET https://lifterbrand.com/api/links/{link_id}
curl --request GET \
--url 'https://lifterbrand.com/api/links/{link_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://lifterbrand.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
},
"clicks": 10,
"order": 0,
"start_date": null,
"end_date": null,
"date": "2020-11-15 12:00:00"
}
}
POST https://lifterbrand.com/api/links
প্যারামিটার | বিবরণ | বিবরণ |
---|---|---|
type | ঐচ্ছিক স্ট্রিং | link |
location_url | প্রয়োজনীয় স্ট্রিং | গন্তব্যের URL। |
url | ঐচ্ছিক স্ট্রিং | উৎপন্ন লিঙ্কের URL এলিয়াস। একটি যেহেতু একটি এলেয়াস পূর্বনির্ধারিত করা হয়েছে। |
domain_id | ঐচ্ছিক পূর্ণসংখ্যা | - |
project_id | ঐচ্ছিক পূর্ণসংখ্যা | - |
pixels_ids | ঐচ্ছিক অ্যারে পূর্ণসংখ্যা | - |
schedule | ঐচ্ছিক বুলিয়ান | - |
start_date | ঐচ্ছিক স্ট্রিং | (schedule=true) |
end_date | ঐচ্ছিক স্ট্রিং | (schedule=true) |
clicks_limit | ঐচ্ছিক পূর্ণসংখ্যা | - |
expiration_url | ঐচ্ছিক স্ট্রিং | - |
sensitive_content | ঐচ্ছিক বুলিয়ান | - |
passsword | ঐচ্ছিক স্ট্রিং | - |
targeting_type | ঐচ্ছিক স্ট্রিং | country_code , device_type , browser_language , rotation , os_name |
targeting_country_code_key[index] | ঐচ্ছিক পূর্ণসংখ্যা | (targeting_type=country_code) |
targeting_country_code_value[index] | ঐচ্ছিক স্ট্রিং | (targeting_type=country_code) |
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) |
curl --request POST \
--url 'https://lifterbrand.com/api/links' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'url=example' \
--form 'location_url=https://lifterbrand.com/' \
--url 'https://lifterbrand.com/api/links' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'url=example' \
--form 'location_url=https://lifterbrand.com/' \
{
"data": {
"id": 1
}
}
POST https://lifterbrand.com/api/links/{link_id}
প্যারামিটার | বিবরণ | বিবরণ |
---|---|---|
location_url | ঐচ্ছিক স্ট্রিং | গন্তব্যের URL। |
url | ঐচ্ছিক স্ট্রিং | উৎপন্ন লিঙ্কের URL এলিয়াস। একটি যেহেতু একটি এলেয়াস পূর্বনির্ধারিত করা হয়েছে। |
domain_id | ঐচ্ছিক পূর্ণসংখ্যা | - |
project_id | ঐচ্ছিক পূর্ণসংখ্যা | - |
pixels_ids | ঐচ্ছিক অ্যারে পূর্ণসংখ্যা | - |
schedule | ঐচ্ছিক বুলিয়ান | - |
start_date | ঐচ্ছিক স্ট্রিং | (schedule=true) |
end_date | ঐচ্ছিক স্ট্রিং | (schedule=true) |
clicks_limit | ঐচ্ছিক পূর্ণসংখ্যা | - |
expiration_url | ঐচ্ছিক স্ট্রিং | - |
sensitive_content | ঐচ্ছিক বুলিয়ান | - |
passsword | ঐচ্ছিক স্ট্রিং | - |
targeting_type | ঐচ্ছিক স্ট্রিং | country_code , device_type , browser_language , rotation , os_name |
targeting_country_code_key[index] | ঐচ্ছিক পূর্ণসংখ্যা | (targeting_type=country_code) |
targeting_country_code_value[index] | ঐচ্ছিক স্ট্রিং | (targeting_type=country_code) |
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) |
curl --request POST \
--url 'https://lifterbrand.com/api/links/{link_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'is_enabled=0' \
--url 'https://lifterbrand.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://lifterbrand.com/api/links/{link_id}
curl --request DELETE \
--url 'https://lifterbrand.com/api/links/{link_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://lifterbrand.com/api/links/{link_id}' \
--header 'Authorization: Bearer {api_key}' \