Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Name

Required

Type

Description

Example

product_code

O

UUIDString

Product ID(UUID)

  • “c1f891f7-3f22-4b2c-a4a9-e7754c20be23”

3) Response

Name

Type

Description

Example

status_code

Integer

정상 처리 시 200

prices

List

option_code

UUIDString

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

“c1f891f7-3f22-4b2c-a4a9-e7754c20be23“

unit_selling_price_usd

Float

유닛당 판매 가격 USD

“100.0“

selling_price_per_person_usd

Float

인당 판매 가격 USD

“100.0“

unit_selling_price_krw

Float

유닛당 판매 가격 KRW

“100.0“

selling_price_per_person_krw

Float

인당 판매 가격 KRW

“100.0“

4) Response Example

Expand
titleStatus Code: 200 Cause: 정상 처리 시
Code Block
languagenone
{
  "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,
    }
  ]
}

...

3. Request Example

1) CURL

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