链接
GET https://linktrle.com/api/links/
curl --request GET \
--url 'https://linktrle.com/api/links/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://linktrle.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
},
"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://linktrle.com/api/links?&page=1",
"last": "https://linktrle.com/api/links?&page=1",
"next": null,
"prev": null,
"self": "https://linktrle.com/api/links?&page=1"
}
}
GET https://linktrle.com/api/links/{link_id}
curl --request GET \
--url 'https://linktrle.com/api/links/{link_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://linktrle.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://linktrle.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 | 可选 布尔值 | - |
http_status_code | 可选 整数 | 允许的值:301 , 302 , 307 , 308 |
app_linking_is_enabled | 可选 布尔值 | - |
cloaking_is_enabled | 可选 布尔值 | - |
cloaking_title | 可选 字符串 | - |
cloaking_favicon | 可选 文件 | - |
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 | - |
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://linktrle.com/api/links' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'url=example' \
--form 'location_url=https://linktrle.com/' \
--url 'https://linktrle.com/api/links' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'url=example' \
--form 'location_url=https://linktrle.com/' \
{
"data": {
"id": 1
}
}
POST https://linktrle.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 | 可选 布尔值 | - |
http_status_code | 可选 整数 | 允许的值:301 , 302 , 307 , 308 |
app_linking_is_enabled | 可选 布尔值 | - |
cloaking_is_enabled | 可选 布尔值 | - |
cloaking_title | 可选 字符串 | - |
cloaking_favicon | 可选 文件 | - |
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 | - |
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://linktrle.com/api/links/{link_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'is_enabled=0' \
--url 'https://linktrle.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://linktrle.com/api/links/{link_id}
curl --request DELETE \
--url 'https://linktrle.com/api/links/{link_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://linktrle.com/api/links/{link_id}' \
--header 'Authorization: Bearer {api_key}' \