POST api/v2/MarinaOps/QueryLaunchTickets

Search for launch tickets base on provided criteria.

Request Information

URI Parameters

None.

Body Parameters

LaunchTicketQueryArgs
NameDescriptionTypeAdditional information
Status

string

None.

OperatorId

string

None.

LocationCode

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Status": "sample string 1",
  "OperatorId": "sample string 2",
  "LocationCode": "sample string 3"
}

application/xml, text/xml

Sample:
<LaunchTicketQueryArgs xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/com.dockmaster.lib.models">
  <LocationCode>sample string 3</LocationCode>
  <OperatorId>sample string 2</OperatorId>
  <Status>sample string 1</Status>
</LaunchTicketQueryArgs>

Response Information

Resource Description

Collection of LaunchTicket
NameDescriptionTypeAdditional information
TicketId

string

None.

OperationType

string

None.

CustomerId

string

None.

CustomerName

string

None.

BoatId

string

None.

BoatName

string

None.

Operator

string

None.

Fuel

boolean

None.

PumpOut

boolean

None.

Status

string

None.

LocationCode

string

None.

ScheduledDate

string

None.

ScheduledTime

string

None.

Comments

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "TicketId": "sample string 1",
    "OperationType": "sample string 2",
    "CustomerId": "sample string 3",
    "CustomerName": "sample string 4",
    "BoatId": "sample string 5",
    "BoatName": "sample string 6",
    "Operator": "sample string 7",
    "Fuel": true,
    "PumpOut": true,
    "Status": "sample string 10",
    "LocationCode": "sample string 11",
    "ScheduledDate": "sample string 12",
    "ScheduledTime": "sample string 13",
    "Comments": "sample string 14"
  },
  {
    "TicketId": "sample string 1",
    "OperationType": "sample string 2",
    "CustomerId": "sample string 3",
    "CustomerName": "sample string 4",
    "BoatId": "sample string 5",
    "BoatName": "sample string 6",
    "Operator": "sample string 7",
    "Fuel": true,
    "PumpOut": true,
    "Status": "sample string 10",
    "LocationCode": "sample string 11",
    "ScheduledDate": "sample string 12",
    "ScheduledTime": "sample string 13",
    "Comments": "sample string 14"
  }
]

application/xml, text/xml

Sample:
<ArrayOfLaunchTicket xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/com.dockmaster.lib.models">
  <LaunchTicket>
    <BoatId>sample string 5</BoatId>
    <BoatName>sample string 6</BoatName>
    <Comments>sample string 14</Comments>
    <CustomerId>sample string 3</CustomerId>
    <CustomerName>sample string 4</CustomerName>
    <Fuel>true</Fuel>
    <LocationCode>sample string 11</LocationCode>
    <OperationType>sample string 2</OperationType>
    <Operator>sample string 7</Operator>
    <PumpOut>true</PumpOut>
    <ScheduledDate>sample string 12</ScheduledDate>
    <ScheduledTime>sample string 13</ScheduledTime>
    <Status>sample string 10</Status>
    <TicketId>sample string 1</TicketId>
  </LaunchTicket>
  <LaunchTicket>
    <BoatId>sample string 5</BoatId>
    <BoatName>sample string 6</BoatName>
    <Comments>sample string 14</Comments>
    <CustomerId>sample string 3</CustomerId>
    <CustomerName>sample string 4</CustomerName>
    <Fuel>true</Fuel>
    <LocationCode>sample string 11</LocationCode>
    <OperationType>sample string 2</OperationType>
    <Operator>sample string 7</Operator>
    <PumpOut>true</PumpOut>
    <ScheduledDate>sample string 12</ScheduledDate>
    <ScheduledTime>sample string 13</ScheduledTime>
    <Status>sample string 10</Status>
    <TicketId>sample string 1</TicketId>
  </LaunchTicket>
</ArrayOfLaunchTicket>