⌨️프로모션 적용금액 획득 API

할인이 적용된 최종 결제금액을 획득할수 있는 API 입니다.

현재 진행되고 있는 프로모션 할인금액정보를 획득합니다.

해당 API 를 이용하여 할인금액이 적용된 결제 금액정보를 획득할 수 있습니다. 해당 정보를 이용하여 가맹점 주문페이지에서 최종 결제전에 결제예정 금액과 할인금액 및 할인율 정보를 표시할 수 있습니다.

현재 가능한 프로모션 및 할인 금액 계산을 가져옵니다

GET https://api.iamport.kr/promotion/current

할인이 적용된 최종 결제금액을 획득할 수 있습니다.

Query Parameters

{
    // Response
}

Response Model Schema

HTTP status 200
{
  "code": 0,
  "message": "string",
  "response": [
    {
      "issuer": "string",
      "amount": "string",
      "discount": {
        "amount": "string",
        "percent": "string",
        "max_discount": "string",
        "min_amount": "string"
      },
      "start": "string",
      "end": "string",
      "promotion_id": "string"
    }
  ]
}

Last updated