GET TourOffer/{tourCode}/{timingCode}/{offerCode}/{userGuid}
Fetch a Offer, using Tour Code, Timing Code and Offer 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 |
offerCode |
Code of the desired Offer کد پیشنهاد مورد نظر |
integer |
Required |
userGuid |
GUID of the User شناسه GUID کاربر |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
TourOfferVmName | Description | Type | Additional information |
---|---|---|---|
OfferCode |
Offer Code کد پیشنهاد |
integer |
None. |
TourCode |
Tour Code کد تور |
integer |
None. |
TimingCode |
Tour's timing Code کد تاریخ بندی تور |
integer |
None. |
Description |
Offer Description توضیحات پیشنهاد |
string |
None. |
Response Formats
application/json, text/json
{ "OfferCode": 1, "TourCode": 2, "TimingCode": 3, "Description": "sample string 4" }
application/xml, text/xml
<TourOfferVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AlaedinApi.Models.Tour"> <Description>sample string 4</Description> <OfferCode>1</OfferCode> <TimingCode>3</TimingCode> <TourCode>2</TourCode> </TourOfferVm>