GET api/Booking/GetPriceDetail?Roomid={Roomid}&MeetingDate={MeetingDate}&MeetingStart={MeetingStart}&MeetingEnd={MeetingEnd}&Attandance={Attandance}&arrangementId={arrangementId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
Roomid | integer |
Required |
|
MeetingDate | date |
Required |
|
MeetingStart | time interval |
Required |
|
MeetingEnd | time interval |
Required |
|
Attandance | integer |
None. |
|
arrangementId | integer |
None. |
Body Parameters
None.
Response Information
Resource Description
ListPlanPriceDetailName | Description | Type | Additional information |
---|---|---|---|
PriceDetails | Collection of PriceDetail |
None. |
|
Grandtotal | string |
None. |
|
GrandtotalAmount | integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "priceDetails": [ { "planName": "sample string 1", "planTimeBlock": 2.1, "startTime": "00:00:00.1234567", "endTime": "00:00:00.1234567", "ratePrice": 5.0, "rateType": 6, "rateTypeMessage": "sample string 7", "isStarndardPlan": 8 }, { "planName": "sample string 1", "planTimeBlock": 2.1, "startTime": "00:00:00.1234567", "endTime": "00:00:00.1234567", "ratePrice": 5.0, "rateType": 6, "rateTypeMessage": "sample string 7", "isStarndardPlan": 8 } ], "grandtotal": "sample string 1", "grandtotalAmount": 2 }
text/html
Sample:
{"priceDetails":[{"planName":"sample string 1","planTimeBlock":2.1,"startTime":"00:00:00.1234567","endTime":"00:00:00.1234567","ratePrice":5.0,"rateType":6,"rateTypeMessage":"sample string 7","isStarndardPlan":8},{"planName":"sample string 1","planTimeBlock":2.1,"startTime":"00:00:00.1234567","endTime":"00:00:00.1234567","ratePrice":5.0,"rateType":6,"rateTypeMessage":"sample string 7","isStarndardPlan":8}],"grandtotal":"sample string 1","grandtotalAmount":2}
application/xml, text/xml
Sample:
<ListPlanPriceDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EB.Service.Services.Repositories.ModelRepositories"> <Grandtotal>sample string 1</Grandtotal> <GrandtotalAmount>2</GrandtotalAmount> <PriceDetails> <PriceDetail> <EndTime>PT0.1234567S</EndTime> <PlanName>sample string 1</PlanName> <PlanTimeBlock>2.1</PlanTimeBlock> <RatePrice>5</RatePrice> <RateType>6</RateType> <RateTypeMessage>sample string 7</RateTypeMessage> <StartTime>PT0.1234567S</StartTime> <isStarndardPlan>8</isStarndardPlan> </PriceDetail> <PriceDetail> <EndTime>PT0.1234567S</EndTime> <PlanName>sample string 1</PlanName> <PlanTimeBlock>2.1</PlanTimeBlock> <RatePrice>5</RatePrice> <RateType>6</RateType> <RateTypeMessage>sample string 7</RateTypeMessage> <StartTime>PT0.1234567S</StartTime> <isStarndardPlan>8</isStarndardPlan> </PriceDetail> </PriceDetails> </ListPlanPriceDetail>