Skip to end of metadata
Go to start of metadata

You are viewing an old version of this content. View the current version.

Compare with Current View Version History

« Previous Version 26 Next »


1. Get Price

1) Purpose

  • 채널에 등록된 상품의 최신 가격 정보를 조회 합니다.

  • 가장 최근에 조회한 가격일 수록 최신의 가격 정보입니다.

2) Detail

  • 가격 정보는 자주 주기적으로 조회해야 최신의 가격을 취득할 수 있습니다.

  • 여행자가 결제할 시기에 가까울 수록 최신 가격 정보 입니다.

  • 유효한 API Key 를 Request Header에 정해진 형식으로 입력해야만 호출 가능합니다.

2. API Spec

1) Request

Endpoint

product environment: https://prod.ax-cloud.com/v1/channel/price/tour/{product_code}

test environment: https://test.ax-cloud.com/v1/channel/price/tour/{product_code}

Method

GET

Description

상품의 최신 가격 정보 조회

Content-Type

application/json

Headers > Authorization

Token {api_key}

2) Path Parameter

Name

Required

Type

Description

product_code

O

UUID

Product ID(UUID)

3) Response

Name

Type

Description

status_code

Integer

정상 처리 시 200

prices

List

option_code

UUID

상품의 옵션에 해당하는 식별자

unit_selling_price_usd

Float

유닛당 판매 가격 USD

selling_price_per_person_usd

Float

인당 판매 가격 USD

unit_selling_price_krw

Float

유닛당 판매 가격 KRW

selling_price_per_person_krw

Float

인당 판매 가격 KRW

4) Response Example

 Status Code: 200 Cause: 정상 처리 시
{
  "status_code": 200,
  "prices": [
    {
      "option_code": "d96b2ed4-12c5-4fb5-ae94-4f39b11ee980",
      "unit_selling_price_usd": 80.00,
      "selling_price_per_person_usd": 75.00,
      "unit_selling_price_krw": 88000.00,
      "selling_price_per_person_krw": 82500.00,
    }
  ]
}

5) Error Spec

 Status Code : 404 Cause: 유효하지 않은 요청 값
{'message': '찾을 수 없습니다.'}
 Status Code : 403 Cause: 유효하지 않은 API Key 혹은 Channel Code
{'detail': ErrorDetail(string='이 작업을 수행할 권한(permission)이 없습니다.', code='permission_denied')}

3. Request Example

1) CURL

curl --location --request GET\
 'https://prod.ax-cloud.com/v1/channel/price/tour/e99f822f-42a8-4d3f-890e-77c5a9bc9cf3 \
--header 'Authorization: Token <access_key>' \
--header 'Content-Type: application/json' \

  • No labels