API 문서
추적 픽셀
추적 픽셀을 검색하고 관리합니다.
인증
모든 요청은 관리자 API 키와 일치하는 Bearer 토큰을 Authorization 헤더로 보내야 합니다.
API 키 가져오기.
엔드포인트
GET https://rqrcode.com/api/pixels/
예시
curl --request GET \
--url 'https://rqrcode.com/api/pixels/' \
--header 'Authorization: Bearer {api_key}'
매개변수
| 매개변수 | 세부 정보 | 설명 |
|---|---|---|
| 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": "페이스북 광고",
"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": "페이스북 광고",
"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=페이스북' \
--form 'pixel=12345678'
매개변수
| 매개변수 | 세부 정보 | 설명 |
|---|---|---|
| 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
}
}
엔드포인트
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=페이스북 새 이름'
매개변수
| 매개변수 | 세부 정보 | 설명 |
|---|---|---|
| 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}'
매개변수
추가 매개변수가 없습니다.
응답 예시
성공 시 빈 200 응답 본문입니다.