링크페이

링크페이 목록

발행한 링크를 목록으로 모아 수납 진행 상황을 추적해요.

생성된 링크페이 목록을 조건에 맞게 검색하고 조회해요. 생성일, 결제 상태, 고객 정보 등 다양한 조건으로 필터링이 가능해요.

API 엔드포인트

GEThttps://api.bootapi.com/v1/invoicesBasic Auth

요청 파라미터

파라미터 타입 필수 설명
keyword String 선택 검색 키워드 (invoice_id 검색)
page Integer 선택 페이지 번호 (기본값: 1)
limit Integer 선택 페이지당 데이터 수 (기본값: 20)

코드 예제

const { BootpayCommerce } = require('@bootpay/backend-js');

const commerce = new BootpayCommerce({
    client_key: '{client_key}',
    secret_key: '{secret_key}'
});

const response = await commerce.invoice.list({
    page: 1,
    limit: 20
});
console.log(response);javascript

응답

성공 응답

{
  "count": 45,
  "list": [
    {
      "id": "687a1b2c3d4e5f6789012345",
      "invoice_id": "INV_20250711_001",
      "name": "프리미엄 서비스 결제",
      "price": 50000,
      "status": 1,
      "created_at": "2025-07-11T02:52:09Z"
    }
  ]
}json