POST v1/Quotation/AddQuote

Request Information

URI Parameters

None.

Body Parameters

QuotationRequest
NameDescriptionTypeAdditional information
Id

integer

None.

QuotationName

string

None.

CreatedBy

integer

None.

CreatedDate

string

None.

Attachment

string

None.

UpdatedBy

integer

None.

UpdatedDate

string

None.

IsActive

boolean

None.

IsDeleted

boolean

None.

ClientName

string

None.

Notes

string

None.

ArrangementDetails

Collection of ArrangementRequest

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "QuotationName": "sample string 2",
  "CreatedBy": 3,
  "CreatedDate": "sample string 4",
  "Attachment": "sample string 5",
  "UpdatedBy": 6,
  "UpdatedDate": "sample string 7",
  "IsActive": true,
  "IsDeleted": true,
  "ClientName": "sample string 10",
  "Notes": "sample string 11",
  "ArrangementDetails": [
    {
      "Id": 1,
      "QuotationId": 2,
      "ItemName": "sample string 3",
      "Currency": "sample string 4",
      "NetRate": 5.0,
      "ROE": 6.0,
      "MarkUpPercentage": 7.0,
      "MarkUpDollar": 8.0,
      "TotalAmount": 9.0,
      "CreatedBy": 10,
      "CreatedDate": "2025-12-15T22:16:21.7475619+00:00",
      "IsActive": true,
      "IsDeleted": true,
      "UpdatedBy": 14,
      "UpdatedDate": "2025-12-15T22:16:21.7475619+00:00",
      "Unit": 16
    },
    {
      "Id": 1,
      "QuotationId": 2,
      "ItemName": "sample string 3",
      "Currency": "sample string 4",
      "NetRate": 5.0,
      "ROE": 6.0,
      "MarkUpPercentage": 7.0,
      "MarkUpDollar": 8.0,
      "TotalAmount": 9.0,
      "CreatedBy": 10,
      "CreatedDate": "2025-12-15T22:16:21.7475619+00:00",
      "IsActive": true,
      "IsDeleted": true,
      "UpdatedBy": 14,
      "UpdatedDate": "2025-12-15T22:16:21.7475619+00:00",
      "Unit": 16
    }
  ]
}

application/xml, text/xml

Sample:
<QuotationRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GT.AzrTravelApi.Model.Quotation">
  <ArrangementDetails>
    <ArrangementRequest>
      <CreatedBy>10</CreatedBy>
      <CreatedDate>2025-12-15T22:16:21.7475619+00:00</CreatedDate>
      <Currency>sample string 4</Currency>
      <Id>1</Id>
      <IsActive>true</IsActive>
      <IsDeleted>true</IsDeleted>
      <ItemName>sample string 3</ItemName>
      <MarkUpDollar>8</MarkUpDollar>
      <MarkUpPercentage>7</MarkUpPercentage>
      <NetRate>5</NetRate>
      <QuotationId>2</QuotationId>
      <ROE>6</ROE>
      <TotalAmount>9</TotalAmount>
      <Unit>16</Unit>
      <UpdatedBy>14</UpdatedBy>
      <UpdatedDate>2025-12-15T22:16:21.7475619+00:00</UpdatedDate>
    </ArrangementRequest>
    <ArrangementRequest>
      <CreatedBy>10</CreatedBy>
      <CreatedDate>2025-12-15T22:16:21.7475619+00:00</CreatedDate>
      <Currency>sample string 4</Currency>
      <Id>1</Id>
      <IsActive>true</IsActive>
      <IsDeleted>true</IsDeleted>
      <ItemName>sample string 3</ItemName>
      <MarkUpDollar>8</MarkUpDollar>
      <MarkUpPercentage>7</MarkUpPercentage>
      <NetRate>5</NetRate>
      <QuotationId>2</QuotationId>
      <ROE>6</ROE>
      <TotalAmount>9</TotalAmount>
      <Unit>16</Unit>
      <UpdatedBy>14</UpdatedBy>
      <UpdatedDate>2025-12-15T22:16:21.7475619+00:00</UpdatedDate>
    </ArrangementRequest>
  </ArrangementDetails>
  <Attachment>sample string 5</Attachment>
  <ClientName>sample string 10</ClientName>
  <CreatedBy>3</CreatedBy>
  <CreatedDate>sample string 4</CreatedDate>
  <Id>1</Id>
  <IsActive>true</IsActive>
  <IsDeleted>true</IsDeleted>
  <Notes>sample string 11</Notes>
  <QuotationName>sample string 2</QuotationName>
  <UpdatedBy>6</UpdatedBy>
  <UpdatedDate>sample string 7</UpdatedDate>
</QuotationRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Response
NameDescriptionTypeAdditional information
IsSuccess

boolean

None.

Message

string

None.

guid

string

None.

PNR

string

None.

Response Formats

application/json, text/json

Sample:
{
  "IsSuccess": true,
  "Message": "sample string 2",
  "guid": "sample string 3",
  "PNR": "sample string 4"
}

application/xml, text/xml

Sample:
<Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GT.AzrTravelApi.Model">
  <IsSuccess>true</IsSuccess>
  <Message>sample string 2</Message>
  <PNR>sample string 4</PNR>
  <guid>sample string 3</guid>
</Response>