Skip to main content
POST
/
v1
/
quote
/
delete-quote
    {
        "Id": 123,
        "OrgId": 10, 
        "Name": "John & Jane Doe: 5 Days Tanzania",
        "CreatedDate": "2024-04-01T00:00:00.000Z", 
        "UpdatedDate": "2024-04-01T00:00:00.000Z", 
        "Status": "Qualified", 
        "Notes": "Referral from past client", 
        "Travellers": [
          {
            "Id": 6, 
            "Name": "John Doe", 
            "Channel": "Referral", 
            "CitizenshipType": "Foreigner",
            "Email": "johndoe@gmail.com", 
            "Notes": "", 
            "OrgId": 10
          },
          // Jane Doe
        ], 
        "Customers": [
          {
            "Id": 6, 
            "Name": "John Doe", 
            "Channel": "Referral", 
            "CitizenshipType": "Foreigner",
            "Email": "johndoe@gmail.com", 
            "Notes": "", 
            "OrgId": 123
          }
        ]
    }
{
    "success": true
}

Header Parameters

CloudSafaris-API-Version
string
default:"v1"
Currently the only acceptable value is v1.

Request Body Parameters

Id
number
required
The quote’s CloudSafaris ID.
Name
string
required
The name of the quote.
OrgId
number
required
Your CloudSafaris organization ID
CreatedDate
string
required
The date (isoString) that the quote was created.
UpdatedDate
string
required
The date (isoString) that the quote was last updated.
Status
string
required
An enum string describing the status of the quote lifecycle. Availble options are: [“Lead”, “Qualified”, “Proposal”, “Closed”, “Lost”, “Revisit”]
Notes
string
required
Any notes created for this quote.
Travellers
object[]
required
Customers
object[]
required
The individual, or persons, responsible for confirmation and payment of the trip.
    {
        "Id": 123,
        "OrgId": 10, 
        "Name": "John & Jane Doe: 5 Days Tanzania",
        "CreatedDate": "2024-04-01T00:00:00.000Z", 
        "UpdatedDate": "2024-04-01T00:00:00.000Z", 
        "Status": "Qualified", 
        "Notes": "Referral from past client", 
        "Travellers": [
          {
            "Id": 6, 
            "Name": "John Doe", 
            "Channel": "Referral", 
            "CitizenshipType": "Foreigner",
            "Email": "johndoe@gmail.com", 
            "Notes": "", 
            "OrgId": 10
          },
          // Jane Doe
        ], 
        "Customers": [
          {
            "Id": 6, 
            "Name": "John Doe", 
            "Channel": "Referral", 
            "CitizenshipType": "Foreigner",
            "Email": "johndoe@gmail.com", 
            "Notes": "", 
            "OrgId": 123
          }
        ]
    }

Response Body Parameters

success
boolean
Boolean field confirming the quote was successfully created.
{
    "success": true
}
I