curl -X GET "https://api.bizmori.com/api/v2/orders/webhooks?page=1&limit=10" \
-H "Authorization: Bearer YOUR_API_TOKEN"{
"data": {
"webhooks": [
{
"id": 123,
"name": "<string>",
"url": "<string>",
"isActive": true,
"lastSentAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z"
}
],
"pagination": {
"page": 123,
"limit": 123,
"total": 123,
"totalPages": 123
}
}
}페이지네이션을 포함한 등록된 웹훅 목록을 조회합니다.
curl -X GET "https://api.bizmori.com/api/v2/orders/webhooks?page=1&limit=10" \
-H "Authorization: Bearer YOUR_API_TOKEN"{
"data": {
"webhooks": [
{
"id": 123,
"name": "<string>",
"url": "<string>",
"isActive": true,
"lastSentAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z"
}
],
"pagination": {
"page": 123,
"limit": 123,
"total": 123,
"totalPages": 123
}
}
}외부 클라이언트 접근을 위한 API 키
페이지 번호
x >= 1페이지당 항목 수
1 <= x <= 100검색 키워드 (웹훅 이름 또는 URL 검색)
성공
Hide child attributes