GET TourPriceGroup/{userGuid}
Returns list of all defined price groups withing the system
باز گرداندن لیست تمامی گروه قیمتی های ثبت شده درون سیستمRequest Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| userGuid | 
            GUID of the User
             | string | Required | 
Body Parameters
None.
Response Information
Resource Description
Collection of TourPriceGroupVm| Name | Description | Type | Additional information | 
|---|---|---|---|
| Code | Tour Price Type Code کد نوع قیمت گذاری تور | integer | None. | 
| Name | Tour Price Type Name نام نوع قیمت گذاری تور | string | None. | 
| BedDescription | Explanation about bed type توضیحاتی در مورد نوع تخت | string | None. | 
Response Formats
application/json, text/json
            Sample:
        
[
  {
    "Code": 1,
    "Name": "sample string 2",
    "BedDescription": "sample string 3"
  },
  {
    "Code": 1,
    "Name": "sample string 2",
    "BedDescription": "sample string 3"
  }
]
        application/xml, text/xml
            Sample:
<ArrayOfTourPriceGroupVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AlaedinApi.Models.Tour">
  <TourPriceGroupVm>
    <BedDescription>sample string 3</BedDescription>
    <Code>1</Code>
    <Name>sample string 2</Name>
  </TourPriceGroupVm>
  <TourPriceGroupVm>
    <BedDescription>sample string 3</BedDescription>
    <Code>1</Code>
    <Name>sample string 2</Name>
  </TourPriceGroupVm>
</ArrayOfTourPriceGroupVm>