GET TourPrice/{tourCode}/{timingCode}/{userGuid}
Fetch all prices, using Tour Code and Timing Code
دریافت قیمت ها، توسط کد تور و کد تاریخبندی
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
tourCode |
Code of the desired tour کد تور مد نظر |
integer |
Required |
timingCode |
Code of the desired tour timing کد تاریخبندی تور مد نظر |
integer |
Required |
userGuid |
GUID of the User شناسه GUID کاربر |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of TourPriceVmName | Description | Type | Additional 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
[ { "TourCode": 1, "TimingCode": 2, "OfferCode": 3, "PriceGroupCode": 4, "Price": 1.0, "PriceOnline": 1.0 }, { "TourCode": 1, "TimingCode": 2, "OfferCode": 3, "PriceGroupCode": 4, "Price": 1.0, "PriceOnline": 1.0 } ]
application/xml, text/xml
<ArrayOfTourPriceVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AlaedinApi.Models.Tour"> <TourPriceVm> <OfferCode>3</OfferCode> <Price>1</Price> <PriceGroupCode>4</PriceGroupCode> <PriceOnline>1</PriceOnline> <TimingCode>2</TimingCode> <TourCode>1</TourCode> </TourPriceVm> <TourPriceVm> <OfferCode>3</OfferCode> <Price>1</Price> <PriceGroupCode>4</PriceGroupCode> <PriceOnline>1</PriceOnline> <TimingCode>2</TimingCode> <TourCode>1</TourCode> </TourPriceVm> </ArrayOfTourPriceVm>