POST v1/Quotation/GetClientQuotation?userId={userId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ClientQuotationRS| Name | Description | Type | Additional information |
|---|---|---|---|
| clientQuotationModels | Collection of ClientQuotationModel |
None. |
|
| IsSuccess | boolean |
None. |
|
| Message | string |
None. |
|
| guid | string |
None. |
|
| PNR | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"clientQuotationModels": [
{
"ClientName": "sample string 1",
"NumberOfQuotations": 2,
"LastUpdatedDate": "2025-12-15T22:16:56.0193797+00:00",
"QuotationIDs": "sample string 4"
},
{
"ClientName": "sample string 1",
"NumberOfQuotations": 2,
"LastUpdatedDate": "2025-12-15T22:16:56.0193797+00:00",
"QuotationIDs": "sample string 4"
}
],
"IsSuccess": true,
"Message": "sample string 2",
"guid": "sample string 3",
"PNR": "sample string 4"
}
application/xml, text/xml
Sample:
<ClientQuotationRS xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GT.AzrTravelApi.Model.Quotation">
<IsSuccess xmlns="http://schemas.datacontract.org/2004/07/GT.AzrTravelApi.Model">true</IsSuccess>
<Message xmlns="http://schemas.datacontract.org/2004/07/GT.AzrTravelApi.Model">sample string 2</Message>
<PNR xmlns="http://schemas.datacontract.org/2004/07/GT.AzrTravelApi.Model">sample string 4</PNR>
<guid xmlns="http://schemas.datacontract.org/2004/07/GT.AzrTravelApi.Model">sample string 3</guid>
<clientQuotationModels>
<ClientQuotationModel>
<ClientName>sample string 1</ClientName>
<LastUpdatedDate>2025-12-15T22:16:56.0193797+00:00</LastUpdatedDate>
<NumberOfQuotations>2</NumberOfQuotations>
<QuotationIDs>sample string 4</QuotationIDs>
</ClientQuotationModel>
<ClientQuotationModel>
<ClientName>sample string 1</ClientName>
<LastUpdatedDate>2025-12-15T22:16:56.0193797+00:00</LastUpdatedDate>
<NumberOfQuotations>2</NumberOfQuotations>
<QuotationIDs>sample string 4</QuotationIDs>
</ClientQuotationModel>
</clientQuotationModels>
</ClientQuotationRS>