보고서

노트
Expert level
API 키는 요청의 권한 부여 헤더에서 베어러 토큰으로 보내야 합니다. API 키 받기.
목록

API 종점:

GET
https://makeron.tech/api/v1/reports

요청 예제:

curl --location --request GET 'https://makeron.tech/api/v1/reports' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
매개 변수
타입
디스크립션
search
선택적 string
검색 쿼리.
search_by
선택적 string
검색. 가능한 값은 :value입니다. 기본값: url입니다.
project
선택적 string
프로젝트 이름.
result
선택적 string
The report result. 가능한 값은 :value입니다.
sort_by
선택적 string
정렬. 가능한 값은 :value입니다. 기본값: id입니다.
sort
선택적 string
정렬하다. 가능한 값은 :value입니다. 기본값: desc입니다.
per_page
선택적 integer
페이지당 결과. 가능한 값은 :value입니다. 기본값: 10입니다.
보이다

API 종점:

GET
https://makeron.tech/api/v1/reports/{id}

요청 예제:

curl --location --request GET 'https://makeron.tech/api/v1/reports/{id}' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
저장하다

API 종점:

POST
https://makeron.tech/api/v1/reports

요청 예제:

curl --location --request POST 'https://makeron.tech/api/v1/reports' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}' \
--data-urlencode 'url={url}'
매개 변수
타입
디스크립션
url
필수적 string
The webpage's URL.
privacy
선택적 integer
Report page privacy. 가능한 값은 :value입니다. 기본값: 0입니다.
password
선택적 string
The password for the report page. Only works with privacy set to 2.
업데이트

API 종점:

PUT PATCH
https://makeron.tech/api/v1/reports/{id}

요청 예제:

curl --location --request PUT 'https://makeron.tech/api/v1/reports/{id}' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}'
매개 변수
타입
디스크립션
privacy
선택적 integer
Report page privacy. 가능한 값은 :value입니다.
password
선택적 string
The password for the report page. Only works with privacy set to 2.
results
선택적 integer
Update the report results. 가능한 값은 :value입니다. 기본값: 0입니다.
삭제하다

API 종점:

DELETE
https://makeron.tech/api/v1/reports/{id}

요청 예제:

curl --location --request DELETE 'https://makeron.tech/api/v1/reports/{id}' \
--header 'Authorization: Bearer {api_key}'