GET TourPrice/{tourCode}/{timingCode}/{offerCode}/{priceGroupCode}/{userGuid}

Fetch a price, using Tour Code, Timing Code and Offer Code and Price Group Code

دریافت یک قیمت توسط کد تور و کد تاریخبندی و کد پیشنهاد و کد گروه قیمت گذاری

Request Information

URI Parameters

NameDescriptionTypeAdditional information
tourCode

Code of the desired tour

کد تور مد نظر

integer

Required

timingCode

Code of the desired tour timing

کد تاریخبندی تور مد نظر

integer

Required

offerCode

Code of the desired Offer

کد پیشنهاد مورد نظر

integer

Required

priceGroupCode

Code of the desired Price Group

کد گروه قیمتی مورد نظر

integer

Required

userGuid

GUID of the User

شناسه GUID کاربر

string

Required

Body Parameters

None.

Response Information

Resource Description

TourPriceVm
NameDescriptionTypeAdditional information
TourCode

Tour Code

کد تور

integer

None.

TimingCode

Tour's timing Code

کد تاریخ بندی تور

integer

None.

OfferCode

Offer Code

کد پیشنهاد

integer

None.

PriceGroupCode

Code of the Condition Detail of an Offer

کد جزییات شرایط برای یک پیشنهاد

integer

None.

Price

Price for the offer with Current Condition

قیمت پیشنهاد برای شرایط جاری

decimal number

None.

PriceOnline

Price for the offer with Current Condition which is sold directly on the alaedin website

قیمت پیشنهاد برای شرایط جاری که به طور مستقیم در وب سایت علاالدین به فروش می رسد

decimal number

None.

Response Formats

application/json, text/json

Sample:
{
  "TourCode": 1,
  "TimingCode": 2,
  "OfferCode": 3,
  "PriceGroupCode": 4,
  "Price": 1.0,
  "PriceOnline": 1.0
}

application/xml, text/xml

Sample:
<TourPriceVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AlaedinApi.Models.Tour">
  <OfferCode>3</OfferCode>
  <Price>1</Price>
  <PriceGroupCode>4</PriceGroupCode>
  <PriceOnline>1</PriceOnline>
  <TimingCode>2</TimingCode>
  <TourCode>1</TourCode>
</TourPriceVm>