링크
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 |
url | 선택 사항 문자열 | 생성된 링크의 URL 별칭. 무작위로 생성된 것을 위해 비워 두세요. |
domain_id | 선택 사항 정수 | - |
project_id | 선택 사항 정수 | - |
pixels_ids | 선택 사항 배열 정수 | - |
schedule | 선택 사항 부울(Boolean) | - |
start_date | 선택 사항 문자열 | 다음 시간에 이용 가능합니다: schedule = true |
end_date | 선택 사항 문자열 | 다음 시간에 이용 가능합니다: schedule = true |
pageviews_limit | 선택 사항 정수 | - |
expiration_url | 선택 사항 문자열 | - |
password | 선택 사항 문자열 | - |
forward_query_parameters_is_enabled | 선택 사항 부울(Boolean) | - |
utm_source | 선택 사항 missing_translation: api_documentation.strings | - |
utm_medium | 선택 사항 missing_translation: api_documentation.strings | - |
utm_campaign | 선택 사항 missing_translation: api_documentation.strings | - |
sensitive_content | 선택 사항 부울(Boolean) | - |
http_status_code | 선택 사항 정수 | 허용된 값: 301 , 302 , 307 , 308 |
app_linking_is_enabled | 선택 사항 부울(Boolean) | - |
cloaking_is_enabled | 선택 사항 부울(Boolean) | - |
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 |
url | 선택 사항 문자열 | 생성된 링크의 URL 별칭. 무작위로 생성된 것을 위해 비워 두세요. |
domain_id | 선택 사항 정수 | - |
project_id | 선택 사항 정수 | - |
pixels_ids | 선택 사항 배열 정수 | - |
schedule | 선택 사항 부울(Boolean) | - |
start_date | 선택 사항 문자열 | 다음 시간에 이용 가능합니다: schedule = true |
end_date | 선택 사항 문자열 | 다음 시간에 이용 가능합니다: schedule = true |
pageviews_limit | 선택 사항 정수 | - |
expiration_url | 선택 사항 문자열 | - |
password | 선택 사항 문자열 | - |
forward_query_parameters_is_enabled | 선택 사항 부울(Boolean) | - |
utm_source | 선택 사항 missing_translation: api_documentation.strings | - |
utm_medium | 선택 사항 missing_translation: api_documentation.strings | - |
utm_campaign | 선택 사항 missing_translation: api_documentation.strings | - |
sensitive_content | 선택 사항 부울(Boolean) | - |
http_status_code | 선택 사항 정수 | 허용된 값: 301 , 302 , 307 , 308 |
app_linking_is_enabled | 선택 사항 부울(Boolean) | - |
cloaking_is_enabled | 선택 사항 부울(Boolean) | - |
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}' \